Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • Hi Ismael,

    Thank you so much for your help. I’ve found out how to implement the hooks. This enabled me to implement the additional content, an image, before the main content of the WooCommerce Shop page.

    However, unfortunately, my image is now bound to the container of the shop. I’d like to have my image use the full screen width.

    The example I’m trying to recreate is here: Example page
    My version of the page is here: my version

    Unfortunately, I’m ending up with white spaces on both sides of the image.

    Please advise.

    Hi Ismael,

    Thank you for your answer. Is there another way to achieve a similar effect?
    Or, perhaps, could I add different banners for different categorie-pages? and add text blocks below the category templates as well?

    Or is there a filter plugin that might create a similar effect to the Enfold theme?

    Best,
    Richard

    Hi Enfold Team,

    Perhaps I should explain the desired situation a bit more thorough:

    I want to create multiple pages to showcase the products of a certain category. I want to provide the customers with the possibility to filter the products they are viewing, based on attributes such as price range, color, material etc.
    Example page: metal clothes hangers without filters – I want to display filters options in the sidebar on the left.

    I have seen a similar presentation in the enfold shop demo, although this is made with the standard WooCommerce shop page and I specifically want to use the Enfold Product Grid.

    Hope to hear from you soon!

    in reply to: Move product price above the image in product grid #1076401

    Never mind, I’ve got it solved by using:

    // custom script
    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script>
    (function($){
    	function h() {
    	$('#top .product').each(function() {
    		var price = $(this).find('.price'),
    			thumb = $(this).find('.thumbnail_container');
    
    		price.appendTo(thumb);
    	});
    	}
    
    	h();
    })(jQuery);
    </script>
    <?php
    }
Viewing 4 posts - 1 through 4 (of 4 total)