Hi there,
First of all I love this theme! But I am having an issue with WooCommerce Pages displaying the Transparent Glassy Header. The following link is to my dev site shop page: http://www.butlerdevsites.com/mft/shop/. All other pages look perfect, except for the WooCommerce pages. Any help with this would be greatly appreciated. Thanks in advance!
Hey ButlerWeb!
Thank you for using Enfold.
Please remove the current shop page as Shop Page on Woocommerce > Settings > Product > Product Archive / Shop Page settings. Edit the shop page, switch to advance layout builder then add the Product Grid element under Plugin Additions panel.
Cheers!
Ismael
Thanks Ismael!
One more thing. Because I am setting the page up this way what do you suggest doing with any buttons that are meant to return to shop? Without an actual shop page defined it loops back to the same page the Return to Shop button is on.
For example: I add a product to the cart, go to the cart and then remove it. My cart is empty and there is a button that says return to shop, I click it and it keeps loading the cart page. How can I fix this issue?
Hey!
Please try deactivating all active plugins and check if that helps. If not, please go to Appearance > Editor and add following code to Functions.php file
function add_custom_link(){
?>
<script>
jQuery(window).load(function(){
jQuery('p.return-to-shop > a').attr('href','http://www.butlerdevsites.com/mft/mft-shop/');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_link');
Regards,
Yigit
That worked perfectly, thanks for all your help!!
EDIT: I ran into one more issue, when I go to a product category page I can’t set the header to be transparent:
http://www.butlerdevsites.com/mft/product-category/women/dresses/
Is there a way I can make all woocommerce pages have the transparent glassy header by default? Or all even all pages?