Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1158351
    JP
    Participant

    hi – is it possible to have category specific text show up on top of results for that category.

    I know how to add text above results by editing child functions.php but can i create custom text for each catageory?

    myeternalbeauty.com

    Thanks very much!

    #1158590
    Rahul
    Moderator

    Hey There,

    Thanks for writing in!

    Are you talking about the Category Archive Text?

    Thanks.

    #1161354
    JP
    Participant

    possibly – i added the below code to functions.php in child theme and the the text shows up

    on the shop page: http://myeternalbeauty.com/shop/

    but also on any category page, such as: http://myeternalbeauty.com/product-category/acne/

    I was wondering if I could customise the text per category. If so could you show me an example code?


    // add text to top of shop results

    function add_shop_extra(){
    echo ‘<h5 class=”man”>Maecenas consectetur quam a lacinia efficitur. Proin placerat felis id ipsum consectetur, eu venenatis mi consectetur. Vivamus luctus sollicitudin leo vitae condimentum.</h5><br><br>’;
    }
    add_action(‘woocommerce_before_shop_loop’, ‘add_shop_extra’);

    Thanks!

    #1161385
    Christopher
    Moderator

    Hi there,

    Yes, it’s possible.

    Please try this code :

    function add_shop_extra(){
      if (is_product_category('acne')){
     echo '<h5 class="man">Maecenas consectetur quam a lacinia efficitur. Proin placerat felis id ipsum consectetur, eu venenatis mi consectetur. Vivamus luctus sollicitudin leo vitae condimentum.</h5><br><br>'; 
    }
    }
    add_action('woocommerce_before_shop_loop', 'add_shop_extra');

    Instead of acne put archive name.

    Hope it helps.

  • <script> jQuery(function($){ $("#no-reply-1158351 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>