-
AuthorPosts
-
February 21, 2024 at 3:28 pm #1435038
Hello,
Greetings from Germany, sorry for my bad English.
How can I remove subcategory/image display above products?
how can you remove the two buttons above the products “sort by” and “show”?
WordPress current
Woocommerce currently
GermanMarket currently
Woocommerce Booking and Appointment from PluginHive currently
WP Optimize currentlyGruß Holger
February 22, 2024 at 6:16 am #1435081Hey holstchristoph,
Thank you for the inquiry.
You can add this css code to hide the sorting buttons.
.product-sorting { display: none; }
And to remove the category thumbnails, add this code.
.tax-product_cat .page-thumb { display: none; }
Best regards,
IsmaelFebruary 22, 2024 at 10:30 am #1435108Good morning,
Great, thank you very much, it worked.Best regards
HolgerFebruary 22, 2024 at 10:42 am #1435111Hello,
I have one more question,
where can you change the size of the category image, because you can also click on it to be a category banner, but I can’t find anywhere where I can insert the banner image?Greetings Holger
February 23, 2024 at 10:33 am #1435177Hi,
Thank you for the update.
You can upload the image for the banner in the Products > Categories panel. Edit a category, then look for the Thumbnail section.
Best regards,
IsmaelFebruary 26, 2024 at 4:47 pm #1435460Hi Ishmael,
Thanks for the info, the word thumbnail is nowhere when I edit the category.
Ask:
Editing is deactivated for categories and products
1.) How can I still add an extra heading to the products? …I deactivated the category image with your help (thanks)
2.) How can I still add an extra heading for the respective products in the category? …I deactivated the category image with your help (thanks)
3.)
Enfold’s advanced layout editor is deactivated on the SHOP page. Can this be activated (how?) or is this critical for the shop to function properly?
Greetings HolgerFebruary 27, 2024 at 8:47 am #1435545Hi,
1-2.) You can display the product category title and breadcrumb by adjusting the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings. However, if you prefer to customize the template yourself, you can create a copy of the wp-content/plugins/woocommerce/templates/taxonomy-product-cat.php file, or you can use the following hook in the functions.php file:
add_action('woocommerce_before_main_content', function() { if(is_product_category()) { echo "<h3>" . woocommerce_page_title(false) . "</h3>"; } }, 30);
3.) The builder is deactivated for the default shop page by default, but you can enable it by adding the following filter in the functions.php file. However, please note that there are limitations when using the ALB, and other shop or product features may not work when the layout builder is active.
add_theme_support( 'avia_custom_shop_page' );
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.