• Resolved mikedev

    (@ingematic)


    Hello,
    By default the brand description is shown at the top, before the product loop.
    I want to move the brand description down after the product loop.

    To achieve this with the description of the categories, I use the following code:

    remove_action( ‘woocommerce_archive_description’, ‘woocommerce_taxonomy_archive_description’, 10 );
    add_action( ‘woocommerce_after_shop_loop’, ‘woocommerce_taxonomy_archive_description’, 100 );

    However this doesn’t work with the brand description.
    Which hook should I use?

    Thanks in advance for the help.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter mikedev

    (@ingematic)

    Hi, any news for me?

    rayongravel

    (@rayongravel)

    Hi,

    Did you find any solution. I’d like to do just the same.

    Thank for your help

    Thread Starter mikedev

    (@ingematic)

    Hi,
    I’m still looking for a solution that uses woocommerce hooks, I would like to avoid intervening on the css.
    I was hoping for developer support for this plugin but they don’t seem to be giving assistance.

    rayongravel

    (@rayongravel)

    Hi,

    Thank you for your answer.
    I’ve added this code to my function.php

    remove_action( “woocommerce_archive_description”, “woocommerce_taxonomy_archive_description”, 10 );
    add_action( “woocommerce_after_shop_loop”, “woocommerce_taxonomy_archive_description”, 99 );

    It works just fine with my theme.
    Hopefully it’ll solve your probleme as well as mine.

    Thread Starter mikedev

    (@ingematic)

    Hi,
    thanks for the shared code.
    I’ve tried this code before but, probably due to my theme, it shows the brand description twice: before and after the product loop.
    I will look for other solutions.

    Plugin Author quadlayers

    (@quadlayers)

    hello guys
    you can use this hook

    woocommerce_archive_description

    you can check this code line

    add_action( 'woocommerce_archive_description', array( $this, 'print_brand_banner_and_desc' ), 15 );

    best regards

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

The topic ‘Problem with Brand Description’ is closed to new replies.