Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #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 currently

    Gruß Holger

    #1435081

    Hey 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,
    Ismael

    #1435108

    Good morning,
    Great, thank you very much, it worked.

    Best regards
    Holger

    #1435111

    Hello,

    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

    #1435177

    Hi,

    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,
    Ismael

    #1435460

    Hi 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 Holger

    #1435545

    Hi,

    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

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.