Emran Ahmed
Forum Replies Created
-
Forum: Reviews
In reply to: [Marquee Block] Amazing pluginThank you @juanraortiz for your kind review! I am thrilled to hear that you find the functionality of my plugin awesome. I am always eager to learn and improve, and I’d love to hear your suggestions! Feel free to share any ideas you have for new features or even new plugins, and I’ll definitely consider them as I continue to develop more tools to enhance your experience. Thanks again for your support!
Have a great day.Forum: Plugins
In reply to: [Duplicate Variations for WooCommerce] Duplicate variation custom post meta@pelemanindustries file location changed and updated file location is:
/variation-duplicator-for-woocommerce/includes/class-variation-duplicator-for-woocommerce-variation-clone.php
and there is two filter hook
woo_variation_duplicator_variation_save
apply during saving duplicated variation data.woo_variation_duplicator_variation_saved
apply after variation duplicated.
@farallon5 Plugin updated with WooCommerce 8.0+ support. Hope, it will work fine
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Redis object cache issueThank you for pointing out this issue, I just release an update. Could you please check?
This is PHP code and you tried it on CSS file which won’t work. try it on
functions.php
file on your theme.WooCommerce has a filter “woocommerce_get_script_data” for all data sent to JavaScript including translated texts. So this is the proper way to change this text:
add_filter( 'woocommerce_get_script_data', 'change_alert_text', 10, 2 ); function change_alert_text( $params, $handle ) { if ( $handle === 'wc-add-to-cart-variation' ) $params['i18n_make_a_selection_text'] = __( 'Your new alert text', 'domain' ); return $params; }
Forum: Plugins
In reply to: [Duplicate Variations for WooCommerce] PHP warningCouldn’t re-produce that issue. I am going to mark this support threads as resolved.
Hi @vishalvp
Thanks for reaching out to us. Could you please check if you are using Variation Swatches Plugin or not? Unfortunately, we have no feature like your screenshot.
Thanks
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Sort swatch variations by stockHi @neko66
Thanks for reaching out to us.
Hiding variations of out of stock goods is not an option, since the buyer must be able to subscribe to the product.
Could you please check this screencast-
https://www.loom.com/share/0f5d377bae90432a8ecb67219a92dd6f?sharedAppSource=personal_library
Thanks
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Title + SwatchesHi @diasaid
Thanks for reaching out to us. Unfortunately, this feature is not currently available.
If you have any visual example it will be great.
Thanks
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Variation ImagesHi @sunnyones
Thanks for reaching out to us. Unfortunately, this feature is not currently available.
Thanks
Hi @tastymouse
Thanks for reaching out to us. Did you disable this option-
If yes, could you please enable it and check?
Hope to hear from you soon!
Thanks
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Disable Product Swatches SettingsThanks for reaching out to us. Please use the below code as a snippet (using Code Snippet Plugin) or, put the below code inside child theme’s functions.php-
function wvs_swatch_deactivate_data_tabs() { if ( ! class_exists( 'Woo_Variation_Swatches_Pro' ) ) { remove_filter( 'woocommerce_product_data_tabs', 'add_wvs_pro_preview_tab' ); remove_filter( 'woocommerce_product_data_panels', 'add_wvs_pro_preview_tab_panel' ); } } add_action('admin_init', 'wvs_swatch_deactivate_data_tabs');
Thank you
Thank you for reaching out to us. Please kindly do a plugin compatibility check by doing these steps to identify the error :
=> Deactivate all of your additional plugins except WooCommerce and Additional Variation Images Gallery Plugin.=> See if the problem persists. If the problem is resolved, you can tell which plugin might be the culprit of this error by activating your additional plugins one by one.
Looking forward to hearing from you soon.
Thank youHi @ovidiuintech
On previous update we added an option to remove or hide default product image.
Hope you will enjoy.Thanks