Home Forums WoodMart support forum WooCommerce Core Product Brands

WooCommerce Core Product Brands

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #699312

    selqs
    Participant

    I want to use WooCommerce’s new core product brands feature. Is there any update or improvement on this?
    From my tests, it looks like Woodmart layouts and Elementor brand widgets cannot display these new core brand taxonomy values. The brand field does not appear inside product extra information or product page widgets either.

    If it is possible to display them, can you explain how?
    My goal is to replace Woodmart’s custom brand system entirely and use WooCommerce’s native brand taxonomy, including:

    Brand archive pages

    Selecting brands inside the product editor

    Showing brand logos or brand names on product pages

    I want all classic Woodmart brand features to work with WooCommerce core brands.

    #699402

    Artem Temos
    Keymaster

    Hello,

    Yes, our theme fully supports core WooCommerce brand functionality. To use it, you need to disable the custom brand attribute in the Theme Settings. Once you do this, WooCommerce brand taxonomy will be used instead.

    Kind Regards

    #700299

    selqs
    Participant

    Hello,
    as you mentioned, everything is fine now. I selected the WooCommerce core brand section instead of the attribute brand in the theme settings. The problem seems to be gone, however, on the single product pages, in the attributes section (such as size, color, etc.), there is no option for the core brand and it cannot be added. How can I add it?
    It is also not visible in the data source section.

    • This reply was modified 2 weeks, 2 days ago by selqs.
    #700338

    Artem Temos
    Keymaster

    Hello,

    WooCommerce’s core brand is not an attribute and can’t be displayed there. You can create a custom layout with the page builder plugin and show the brand using an appropriate element for this.

    Kind Regards

    #700353

    selqs
    Participant

    Hello, I can enable the Woo brands section using the product meta widget. I also added this widget manually, but the border line and similar design elements under the Product Additional Information table widget do not match. I hope I explained it clearly. Is it possible to make it the same type, same separator, and same alignment as the other attributes?

    #700361

    selqs
    Participant

    Hello, I would also like to mention this: In the Woodmart brands carousel or grid widget, the brand ordering does not work correctly. It does not follow my custom ordering. I tested all possible settings such as ascending, descending, and menu order, but none of them worked. Could you please provide a solution? It also does not allow manual adjustment.

    In the Woodmart attribute-brand feature, the ordering works correctly.

    #700453

    Artem Temos
    Keymaster

    Hello,

    You can’t display it as a part of the attributes table. But instead, you can add it to the product meta as shown on the screenshots:
    https://gyazo.com/9980db8e9325e24da9d32abf4d4ee79e
    https://gyazo.com/60adcca6997c2abbda52b2571fa95cf0

    We have just double-checked the brands order option and it works correctly on our end. Could you please send us your admin access so we can check what is wrong?

    Kind Regards

    #700513

    selqs
    Participant

    Hello, thank you — I had already added it as meta.
    The other issue was that the ordering in the admin panel was not working correctly on the frontend.
    WooCommerce’s documentation provides a code snippet that fixes this issue.
    I would appreciate it if you could integrate it as well, as the sorting works correctly with this solution.
    The link and code are below.

    add_filter( 'woocommerce_sortable_taxonomies','wt_sort_brands' );
    function wt_sort_brands( $sortable ) {
    	$sortable[] = 'product_brand';
    	return $sortable;
    }

    https://woocommerce.com/document/woocommerce-brands/#how-do-i-order-the-brands-on-the-front-end-as-showcased-on-the-admin-panel

    #700566

    Artem Temos
    Keymaster

    Thank you. We will review this code and consider implementing this in our future updates.

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