Tagged: enfold, woo commerce
hi there,
I have a website locally (enfold + woo commerce) using your demo content. I made two products and my VERY VERY DEMO ALPHA shop looks like
What i want to do is to remove breadcrub (highlighted) and above the filters, to add a map and a text.
Advanced Layout doesnt work.
So how can i do that?
Unfortunately website is locally so i cant give you credentials. I hope you can see my printscreen.
Hi georgesociel!
Thank you for using Enfold.
Please use this to remove the title container:
.woocommerce-page .title_container {
display: none !important;
}
And use the “ava_after_main_container” action hook to add a google map or text above the shop overview page:
add_action( 'ava_after_main_container', 'ava_after_main_container_mod', 10);
function ava_after_main_container_mod() {
if( !is_shop() ) return;
$output .='<div class="avia-section main_color avia-section-large avia-no-border-styling container_wrap fullsize"><div class="container">';
$output .= 'ADDITIONAL CONTENT HERE';
$output .='</div></div>';
echo $output;
}
Best regards,
Ismael