Hamid Reza Yazdani
Forum Replies Created
-
Forum: Plugins
In reply to: [E-namad & Shamed Logo Manager] ????? ????? ??????????. ?????? ?? ?? ??? ?????? ??????? ??????. ???????? ???? ????? ??? ? ???? ???? ???? ????? ????? ??
?????? ?? ????? ??????? ???????? ? ???? ?????
Forum: Plugins
In reply to: [WooCommerce] Checkout Timing OutHello,
Unfortunately, there are no products in your store that I can test ??
Forum: Plugins
In reply to: [WooCommerce] Product images issues after WP update to 5.5Hello,
WordPress 5.5 handles lazy images itself. If you have a plugin for this or your theme has similar settings, disable them until a new update is ready.
Good luck
Forum: Plugins
In reply to: [WooCommerce] additional gallery images per variation on variable productsHello,
This forum is for checking WooCommerce core issues. You are using a premium plugin and you should discuss your problem with the plugin developer via a ticket.Good luck
Hello @nielslange
Thanks for reply
Yes, there is no problem in the database, the problem is that the texts received from the database (product title, currency symbol, etc.) are all displayed correctly and only the texts that have been added to the block with this hook have a problem.
I checked the request headers of the JavaScript files that are for Gutenberg and they are all
accept language = en-US
. I do not think it should be so!Please check this stackoverflow post:
Good luck
According to my code, the texts will be as follows and you can change them:
Back in order: should display 3-5 days delivery.
In stock: Avalivable for immideate dispatch.
Out of stock: Not Available – Contact Us For Further Information.Unfortunately, I have no idea how to change the location of this message
Well done!
You’re welcome
Hi
Please try this one:
add_filter( 'woocommerce_get_availability', 'ywp_custom_get_availability', 1, 2); function ywp_custom_get_availability( $availability, $_product ) { if ( $_product->backorders_allowed() ) { $availability['availability'] = 'should display 3-5 days delivery.'; return $availability; } if ( $_product->is_in_stock() ) { $availability['availability'] = 'Avalivable for immideate dispatch.'; } else { $availability['availability'] = 'Not Available – Contact Us For Further Information.'; } return $availability; }
NOTE: Code goes in function.php file of your active child theme (active theme).
Good luck.
Forum: Plugins
In reply to: [WooCommerce] Change font size of text on New Order Success PageWell done
You’re welcome
Forum: Plugins
In reply to: [WooCommerce] Change font size of text on New Order Success PageHi
This requires knowledge in CSS, but you can add the following CSS line to your Custom CSS:
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received{ font-size:22px; }
Good luck
Forum: Plugins
In reply to: [WooCommerce] problemi di aggiornamento woocommerceYou’re welcome ??
Forum: Plugins
In reply to: [WooCommerce] Cannot Edit Product; Blank BoxesWell done!
You’re welcome
Forum: Plugins
In reply to: [WooCommerce] Removing Woocomerce cart icon from headerDon’t worry about that, that is simple CSS.
Paste it and clear your cache ??
Good luck
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Checkout doesn’t apper check box for Private PolicyOk
Have you chosen a page for privacy terms in WooCommerce settings for payment?