New Landing How can we help? Atelier Text on the main shop page

Viewing 9 posts - 1 through 9 (of 9 total)
  • Posted in: Atelier
  • #293175
    tutorlgb
    Member
    Post count: 5

    Maybe I am missing this in the forum but is there a way I can add text to the Shop page (named Books and Products on this site) before the list of products if I am using the Swift Page Builder? I tried adding a text block but it would not give me the ability to add text to the block. It allowed me to add it but not edit it. Any help would be appreciated. Thank you.

    #293339
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Where do you want to add text exactly? Just provide me marked screenshot to indicate the text position at page.
    Thanks
    Mohammad

    #293356
    tutorlgb
    Member
    Post count: 5
    This reply has been marked as private.
    #293361
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    You cant edit the content to shop like this. Just paste the code at functions.php of child theme.

    function woa_content_before_shop() {
    	echo "<p>Insert your Content here...</p>";
    }
    add_action( 'woocommerce_before_shop_loop', 'woa_content_before_shop');

    Thanks
    Mohammad

    #316131
    lhadaj
    Member
    Post count: 13

    Hi there,

    I would also like to add text to our Shop page: http://blackwoodflorist.com.au/shop/. I attached a screenshot of where we would like it.

    #316422
    David Martin – Support
    Moderator
    Post count: 20834

    Please install and activate the supplied child theme, inside the child theme functions.php file paste this:

    function sf_after_shop_content() {
    	echo "<p>Insert your Content here...</p>";
    }
    add_action( 'woocommerce_after_shop_loop', 'sf_after_shop_content');
    #316495
    lhadaj
    Member
    Post count: 13

    Thanks for your help David! Works well!

    #316499
    lhadaj
    Member
    Post count: 13

    Hi again David, I tested this out on my staging site and noticed that the text shows up on all of the category pages: http://blackwoodflorist.lukehadaj.com.au/product-category/hampers-gift-baskets-2/.

    I need to add text to the shop page only: http://blackwoodflorist.lukehadaj.com.au/shop/

    #316504
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Can you try this code instead.

    function sf_after_shop_content() {
            if (  is_shop() ) {
    	    echo "<p>Insert your Content here...</p>";
            }
    }
    add_action( 'woocommerce_after_shop_loop', 'sf_after_shop_content');

    -Rui

Viewing 9 posts - 1 through 9 (of 9 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register