• So I have the WooCommerce set up as “shop” and the blog as the home page and I’m wondering if I can add some code (without Elementor, etc.) under the last blog post just under the pagination and above the footer on the home page. I have the home page set as the blog page/latest post, not the store because I like how everything looks. Are there any code snippets I can use that would allow just 3 or 4 featured product image links to the store to be added without changing anything else?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @mfghost,

    Here is simple example of PHP snippet to add your custom content before footer area. Add to your child theme’s functions.

    function my_custom_content_before_footer() {    
        echo '<div class="custom-footer-content">This is custom content before the footer.</div>';}
    add_action('botiga_footer_before', 'my_custom_content_before_footer');
Viewing 1 replies (of 1 total)
  • The topic ‘Add a Few Products To Home Page of Blog’ is closed to new replies.