Attribute archive page is not as same as shop archive page in crafty

I’m having difficulty finding a solution for this issue.

my shop page is https://mawrble.com/shop

(problem here) my attribute archive page is https://mawrble.com/product-att/collection/barcelona/

how can i make it same as my shop archive page?

I have chosen right settings in theme options and even changed them to see the effect but no luck!

Hi Kian,

Thanks for writing to us.

Set the number of column from Pro -> Theme Options -> Woocommerce -> Shop Layout -> Choose the column no here.

If it doesn’t work, send your details in a secure note. Please provide the following details

  • WordPress Login URL
  • Admin level username and password

You can find the Secure Note button at the bottom of your posts

Hope it helps you.
Thanks

Please at least read before responding. I told you I went through theme options settings it’s all fine.
can’t share admin access. tell me what is wrong.

Hello Kian,

Your shop page: https://mawrble.com/shop/ is using Sidebar Left, Content Right layout. While your archive page is using the Fullwidth layout. Kindly go to Pro > Theme Options > Layout and Design > Content Layout and make sure that you have set it to “Sidebar Left, Content Right” layout as well.

If you are referring to your homepage layout, please be informed that your homepage is a custom static page built in the Pro Editor. You cannot use this layout for archive pages. If you wait a little longer for our next release, the Layout Builder should be able to help you in changing the layout of your product archive pages. You can check out the status update of our next release from here:

Best Regards.

I’m sorry I mentioned my homepage above. now I have edited it to my shop page url. if you compare 2 pages you will understand what is the issue.

Shop page uses ul class=“products cols-4” while attribute archive page is using ul class=“products”

Can you tell me how can I make the attribute archives ul class=“products cols-4” ?

Hi Kian,

It seems that the Attribute page is coming from a custom taxonomy, to modify the specific taxonomy page please find the details in this article: https://developer.wordpress.org/themes/basics/template-hierarchy/#custom-taxonomies
Alternatively, you can try by adding the following custom JavaScript code into the Theme Options > JS.

jQuery(document).ready(function($)
{
    if(!jQuery('ul.products').hasClass('cols-4'))
    {
        jQuery('ul.products').addClass('cols-4');
    }
});

Remember that the above code will work if copied as it is and don’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.

Thanks

1 Like

Thank you @tristup ! problem solved!

Hi Kian,

Great that it resolved.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.