Mjolnir_68
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Athena] Homepage Widget C font colorLike a charm 😉
Forum: Themes and Templates
In reply to: [Athena] Homepage Widget C font colorThanks!
Forum: Themes and Templates
In reply to: [Athena] How to change font color on slider?I cannot find a way to change the font color for the text overlay of Homepage Widget C ?
Will it always be the same as the background (very hard to see with my images).
Link to sandbox page (Currently configuring): http://sandkasse1.leonbergerdanmark.dk/ Look for the section with title: “Nyeste artikler og tips”
Using Athena Pro!
Hi,
I’m trying to do the same thing, but also struggling with my edits. I’d like the delivery notes to include a custom field that I’ve called “afhentning_dag”.
I’ve added to /wp-content/plugins/woocommerce-delivery-notes/woocommerce-delivery-notes.php the following:
/**
* Show custom field for pickup-time.
*/
if ( !function_exists( ‘wcdn_get_order_afhentning_dag’ ) ) {
function wcdn_afhentning_dag() {
global $wcdn;
echo $wcdn->print->get_order()->afhentning_dag;
}
}I’ve added to /wp-content/themes/MyTheme/woocommerce/print/print-delivery-note.php:
<h3><?php echo wcdn_get_order_custom_field(‘afhentning_dag’);?></h3>
Nothing apears in the print – any suggestions as to where I’m getting this wrong?