• Resolved Ryendel Rocha

    (@ryendel)


    Hello, I would like to add a banner below the store products, but every time I put an image on Visual Composer or directly on HTML code the image appears on the top of the products.

    • This topic was modified 8 years, 3 months ago by Ryendel Rocha.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Caleb Burks

    (@icaleb)

    Automattic Happiness Engineer

    The page content on the store page shows before the products. Adding content underneath will require some custom code.

    Your code will look something like this:

    add_action( 'woocommerce_after_main_content', 'my_banner_code', 20 );
    function my_banner_code() {
      print '<div>My Banner</div>';
    }

    Your code goes in functions.php for your child theme or you can use the “My Custom Functions” plugin.

    Sorry, unable to test using your theme, so some PHP skills will be needed to get it working.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Banner below store frontpage’ is closed to new replies.