This topic has 8 replies, 3 voices, and was last updated 6 months, 3 weeks ago ago by Luca Rossi
My shop interface now only displays subcategories, not main categories. How should I make the shop interface only display the subject category?
Hello, Jet,
Thank you for reaching out to us with your query.
Could you please provide temporary wp-admin access? We need to check your current settings first.
To grant WP-Admin access, please proceed to create a new user account with an administrator role through your WordPress Dashboard. Once the account is established, you may securely transmit the username and password to us via the Private Content section designated for this purpose.
Best Regards,
8Theme’s Team
Hello, I have filled it out. My requirement is that the left filter bar on the shop interface only displays the main categories. Thank you.
Dear Jet,
We hope this message finds you well. Unfortunately, there are no hooks available to customize the category filter widget directly through settings or options.
To achieve the desired customization, you will need to modify a specific file within the plugin directory. Please follow the instructions below:
1. Navigate to the file located at:
/wp-content/plugins/et-core-plugin/app/models/widgets/categories-filter.php
2. Locate the code between lines 124 and 129, which currently reads:
$categories = get_terms(array(
'taxonomy' => 'product_cat',
'hide_empty' => $hide_empty,
'operator' => 'IN',
'include_children' => false,
));
3. Replace the above code with the following:
$categories = get_terms(array(
'taxonomy' => 'product_cat',
'hide_empty' => $hide_empty,
'operator' => 'IN',
'include_children' => false,
'parent' => 0
));
We hope these instructions are helpful to you. Should you require any further assistance, please do not hesitate to contact us.
Best regards,
The 8Theme Team
Hello, what should I do in the first step? I can’t find the editing interface.
Hi @Jet,
Are you using SiteGround? Please take a look at this article: https://www.siteground.com/kb/manage-files-file-manager/.
Hope it helps!
Thanks, I tried it, but the category filter is gone. Is there any other way? The shop interface only shows the main category.
Dear Jet,
We hope this message finds you well. We would like to inform you that your main categories currently do not contain any products. As a result, they will not be displayed in the Product Categories Filter.
To address this, please assign products to these main categories. Once this has been done, kindly proceed to edit the plugin file accordingly.
Should you require any further assistance, please do not hesitate to contact us.
Best Regards,
The 8Theme Team
You must be logged in to reply to this topic.Log in/Sign up