Home Forums WoodMart support forum Issue with no price on single product

Issue with no price on single product

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #652486

    vynil
    Participant

    Hey guys,

    I’m having an issue with my single product here. There’s no price showing and only add to cart button is there. Can you please fix this?

    Thank you.

    #652527

    Hello,

    Could you please check how it works with some default WordPress themes like TwentyTwenty or WooCommerce Storefront to understand it is our theme issue or not?

    Best Regards,

    #652624

    vynil
    Participant

    Hi, yes, it’s working when I change the theme, please check the screenshot attached.

    I think you could test this since you have access to the website and we could safe some time…

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

    Hello,

    The login link details you provided are not working. Please share the correct login details so I can check the issue and give you a possible solution.

    Best Regards,

    #652735

    vynil
    Participant

    Can you please try again? I can see the link it’s working on my end, in a private tab.

    #652788

    Hello,

    Please deactivate all the third-party plugins and activate only theme-required plugins on the site and then check the issue. I am sure your issue will be solved. Then, activate the third-party plugins one by one and check which plugin is creating the issue for you.

    Otherwise, if the issue still exists, then keep the third-party plugins deactivated and let me know I will check and give you a possible solution.

    Best Regards,

    #652795

    vynil
    Participant

    The issue is still there. I have deactivated all plugins except WooCommerce, Elementor, gift card and your plugins. Please check the issue. When I change the theme, the issue is resolved.

    #652837

    Bogdan Donovan
    Keymaster

    The price is being hidden due to the following CSS rule applied on your site (screenshot https://monosnap.com/file/nJ7vVmV88fRhz7LhoehpwCxSFLOnFr):

    .product-type-gift-card .summary .price {
      display: none;
    }

    This CSS comes from the YITH WooCommerce Gift Cards plugin, specifically from the file:

    wp-content/plugins/yith-woocommerce-gift-cards/assets/css/ywgc-frontend.css

    The only reason the price appears in the Twenty Twenty-Five theme is because it’s built with Gutenberg blocks and doesn’t include a wrapper with the class .summary, which the plugin’s CSS targets. Based on this, it seems that the theme is not officially supported by the plugin.

    We also tested your site with the official WooCommerce theme “Storefront”, and the price was not displayed there either (screenshot https://monosnap.com/file/a86iJFX6gC1jdt2RO5RzW9Nvd5vnbF)

    This confirms that the price is intentionally hidden by the plugin’s styles, and this behavior is intended by the plugin developers. For clarification on why it’s designed this way, please consult the plugin’s documentation or support team.

    If you prefer to override the plugin’s styles and force the price to display, you can do so by adding the following custom CSS in the Custom CSS Area within Theme Settings:

    .product-type-gift-card .summary .price {
      display: block !important;
    }

    Kind Regards

    #652900

    vynil
    Participant

    You are simply the best! Thank you!

    #652981

    Hello,

    You’re very welcome! I’m glad I could help. If you need anything else, feel free to reach out!

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards,

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

The topic ‘Issue with no price on single product’ is closed to new replies.