Home Forums WoodMart support forum Home Page Header and Slider is not working.

Home Page Header and Slider is not working.

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #493585

    Hello, Hope you are doing well.
    My website home page header and slider are not working. Please help me to solve the issue. Maybe it javascript error.

    Attachments:
    You must be logged in to view attached files.
    #493666

    Hello,

    Your issue has been resolved. I have activated the parent theme on your site and everything is working fine.
    Check back your site after completely clearing the browser cache.

    Best Regards.

    #493683

    Thanks for your quick help.
    May I know how I can remove only the add-to-cart button and price from the entire website? but I want the variation swatches and quote button (I have added this).

    How can I change the cart icon in the product loop now we don’t have a cart option only have to read more.

    I want the solution in PHP code not in CSS.

    Thanks

    NOTE: I have applied this add_filter( ‘woocommerce_is_purchasable’, ‘__return_false’ ); and now cart is hide for simple product but not for variation.

    Attachments:
    You must be logged in to view attached files.
    #493800

    Hello,

    Try to add following custom css code in Theme settings > Custom CSS:

    This code hide the add to cart button in the product grid.

    .product-grid-item .wd-add-btn {
        display: none;
    }

    This code hide the price.

    span.woocommerce-Price-amount {
    	display: none !important;
    }

    Try to add the following code to change the add to cart icon.

    .product-grid-item .wd-add-cart-icon>a:before {
        content: "\f120";
        font-family: woodmart-font;
    }

    Best Regards.

    #493817

    Sorry to say, I want the solution in PHP code (WordPress hook or overwrite file ). I mention that

    Also, Not only product grids every where example: product loop. single product.

    #493834

    Because I don’t want that anyone know the CSS and can make visible the add-to-cart button.

    #494004

    Hello,

    You can enable the catalog mode from Theme Settings > Shop > catalog mode.

    We would like to inform you that the customization you are seeking requires a level of modification that goes beyond the scope of our standard support policy.

    Best Regards.

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