Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #872207

    After speaking with my SEO team this is the advice they gave me on my homepage optimization:

    It’s worth considering adding some written copy on to the homepage as we usually advise that >20%-25% of the web page’s code should be actual text that a search engine can understand. This recommendation can help the page potentially achieve higher rankings on search.

    Since you have an e-commerce site with a lot of products being syndicated onto the shop page, and you don’t want to drown your viewer in written copy, we might want to put the written copy at the bottom of the page to avoid any issues.

    It does not appear there is a good method to inject a homepage description into the Enfold theme at the base of the page. Any suggestions on how this can be accomplished?

    #873090

    Hey pcmichiana,

    I’ve seen this many times, this could be a way to go.
    You can get more ideas here

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #873178

    I don’t understand. We can write up the description, that is not the problem. We also have Yoast but right now there is no place on the Enfold theme for us to actually put our description on the shop page. If I write it into the Frontpage’s content then it just pushes the entire shopping cart down. Is it possible to add a shop page description to the bottom of the shop Frontpage?

    #873995

    Hi,

    Do you have a product section on your front page? We would like to check the shop page. Did you set this page as the “base shop page” in the Woocommerce settings?

    Best regards,
    Ismael

    #874263

    Yes, sorry, I should’ve linked our site.

    https://www.precision-elec.com

    We setup a frontpage as the Woocommerce shop page. If I add any text to the frontpage it puts it at the top of the page, we’d prefer it at the bottom.

    #874491

    Hi,

    Thank you for the info.

    You can use the “woocommerce_after_shop_loop” hook to add text underneath the products.

    // http://hookr.io/actions/woocommerce_after_shop_loop/

    Example:

    // define the woocommerce_after_shop_loop callback 
    function action_woocommerce_after_shop_loop( $woocommerce_pagination, $int ) { 
        // ADD SOME TEXT OR HTML HERE
    }; 
    
    // add the action 
    add_action( 'woocommerce_after_shop_loop', 'action_woocommerce_after_shop_loop', 10, 2 ); 

    Best regards,
    Ismael

    #874804

    Perfect, just what I needed – thank you!

    #875040

    Hi,

    Great! Let us know if you need anything else. :)

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Add Shop Description To Bottom Of Enfold Shop Page To Fix Text / HTML Ratio’ is closed to new replies.