Tagged: footer, header, promo box, woocommerce
Hi,
Before I start adding (and maybe destroying) stuff to the woocommerce shoppage, I wanted to drop in here first. ;-)
If I want to add something like a promo box as a header or footer to the shop page, what would be the best way to do that?
It’s more of a note thing, to alert customers to certain restrictions, notes or additional links like S&H and shopping rules.
thanks for any tips, as I couldn’t find something useful while googling. It’s the combination of woocommerce and Enfold here that I’m not sure about ;-)
thanks!!
rob
Hey RobWu!
You can add this to the bottom of your functions.php file to add stuff before the woocommerce pages.
add_action( 'woocommerce_before_main_content', 'enfold_customization_shop_before' );
function enfold_customization_shop_before(){
echo 'content';
}
Cheers!
Elliott