Muhibul Haque
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Critical ErrorHi there,
Thank you for the update! I’m glad to hear that emails are sending again using the WP Mail SMTP plugin with Gmail. Setting up SMTP is always the most reliable solution for resolving email issues on WordPress sites.
Forum: Plugins
In reply to: [Gutenberg] Navigation block doesn’t work on mobileHi there!
Thanks for posting! I just checked both from mobile and desktop, I can see mobile menu expand option is working fine. When I click on hamburger icon, it expand the mobile menu.
Do you fixed it anyway or still having the issue?
Thanks
Forum: Plugins
In reply to: [WooCommerce] Where is “Please select a rating” alert coming from?Hi there!
Thank you for reaching out! Editing the core plugin files is not recommended, as it can lead to issues with updates and compatibility. Instead, you can customize the plugin’s functionality based on your requirements.
Could you clarify what you’re aiming to achieve with this text? Are you looking to make it optional or modify it?
You can make it optional from WooCommerce > Settings > Products > Reviews.
Forum: Plugins
In reply to: [WooCommerce] Critical ErrorHi there!
Thanks for reaching out!
It sounds like the issue you’re experiencing is directly related to the Check & Log Email – Easy Email Testing & Mail logging, rather than WooCommerce itself. Please note that this support scope focuses on helping with core WooCommerce functionality.
I would recommend you to reach out to the Check & Log Email Support Team. They’ll be best equipped to assist with resolving these types of issues.
Thank you
Forum: Plugins
In reply to: [WooCommerce] Order Received With 0.00 Amount With out redirecting to PG@cureherbal, that’s great! Thanks for the updated.
Forum: Plugins
In reply to: [WooCommerce] EAN Code Not Displaying on Single Product PageHi @huzaifa0300,
I can see a detailed discussion on similar topic here: https://www.ads-software.com/support/topic/gtin-upc-ean-or-isbn-not-showing-on-product-page-frontent/If you’re comfortable with coding, you could give it a try, as this might speed up the process of resolving your issue. I also recommend trying the plugins suggested by @angeld33. Additionally, consider testing changing the theme you are using when applying various methods, as themes can sometimes impact this process.
ThanksForum: Plugins
In reply to: [WooCommerce] Order Received With 0.00 Amount With out redirecting to PGHi there,
Thanks for reaching out!
That definitely sounds unusual. To better understand what’s happening, could you please share a copy of your site’s System Status Report?You can find this under: WooCommerce > Status and pasting that here inside using a?Code Block.
ThanksForum: Plugins
In reply to: [WooCommerce] Error updating WooCommerce pluginHi there, Thanks for reaching out!
As @serafinnyc mentioned, may be it’s related to permission issue.To better understand what’s happening, could you please share a copy of your site’s System Status Report?
You can find this under: WooCommerce > Status. Once we have more information, we’ll be able to assist you further.?Forum: Plugins
In reply to: [WooCommerce] remove product title from breadcrumb and the last seperatorHi there!
Thanks for reaching out!
Could you please provide the specific page link where you’d like assistance? This will help me understand your request better and provide more effective guidance.Thank you!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce There is no add to cart button, Buy button etc.Hi?@ilkerilyas,
Thank you for reaching out. Can you please add the site link and explain a bit more where the cart button and other options are missing? Are you talking about checkout process or in the menu items?
Thanks
Forum: Plugins
In reply to: [Gutenberg] Missing link on cover blockHi there!
Thanks for reaching out!
Do you want to add link on entire cover block? Unfortunately, that’s not possible. However, you can add a text block inside the cover block and apply a link to the text instead.Forum: Plugins
In reply to: [Gutenberg] Can’t create link on buttonHi there!
Thanks for reaching out!
The block you mentioned not working comes with Spectra Block, they have specialised support forum where you can get help about this.Thanks
Forum: Plugins
In reply to: [Gutenberg] Display cover text block below image on mobileHi there! I understand your concern. Default cover block does not support this type styling. However, you can achieve this easily with css trick. Select the text block first and add a custom class
.sabina_cover_block_text
and hide this for mobile device.@media (max-width: 768px) {
.sabina_cover_block_text{
display:none;
}
}After the cover block add a paragraph block and add the same text you added on the text block. Add custom class
.sabina_cover_block_below_text
and hide it for other devices but visible in mobile only. So, full code will be.sabina_cover_block_below_text
{
display: none;
}
@media (max-width: 768px) {
.sabina_cover_block_text{
display:none;
}.sabina_cover_block_below_text
{
display: block;
}
}This approach will help you achieve the desired result. Feel free to adjust the CSS if needed.
Forum: Plugins
In reply to: [WooCommerce] Decimal Quantity ProductHi again,
I noticed that you’ve already had an extensive discussion on the support forum for this plugin. If that doesn’t resolve your issue, you may try the alternative one I reffered earlier – ( WooCommerce Quantity Increment?).Forum: Plugins
In reply to: [Gutenberg] add new social media iconsHi there!
I understand the situation must be frustrating for you, Unfortunately, there is no option to upload custom icons. But you can raise the issue in Github, so in future Gutenberg team can bring the feature.In meantime, you can try The Icon Block plugins which is a great plugins to add icons along with custom link.
Thank you!