WPXtension
Forum Replies Created
-
Forum: Plugins
In reply to: [Variation Price Display Range for WooCommerce] How to translate “From”Hi,
I hope you are doing well today. If you don’t want to install a translation plugin. You can simply follow this tutorial: https://youtu.be/uSGMiXEEsvI to translate plugin text without adding a translation plugin.
The tutorial will show how to translate a plugin’s string, you just have to select ‘variation-price-display’ plugin folder.
I hope this information will help. Please let me know if you have more questions.
Hope to hear from you soon.
Best Regards
Hi,
Glad to know it helped.
If you found our support helpful, please share your valuable feedback here.
Your valuable feedback will inspire us a lot.
Best Regards
Hi,
We have also released a new update to refrain from modifying the default backorder text (by WooCommerce).
Please update to the 1.6.4.1 and let us know your feedback.
Hope to hear from you soon.
Best Regards
Hi,
I hope you are doing well today.
I’m not sure what is the reason for this filtering but could it at least use “woocommerce” language domain that already contains the phrase translations?
In the default WooCommerce dropdown, the Availability text comes after selecting all the variation dropdowns. As we display variation in a tabular format, we had to push it manually inside the table.
According to WPCS (WordPress Coding Standard) you can’t use another text-domain for your plugin string. Therefore, we had to use our text-domain.
Please add the translation for the text and the Moderator has already confirmed that they will approve it for you.
Please let me know if you have more questions. Hope to hear from you soon.
Best Regards
Hi,
Sure, please let us know your feedback. We will wait for your reply. 🙂
Best Regards
Hi,
I hope you are doing well today. We have released an update 1.6.4.
Please update PVT to the latest version (1.6.4) and let us know your feedback. Hope to hear from you soon.
Best Regards
Forum: Plugins
In reply to: [Variation Price Display Range for WooCommerce] From priceHi,
It’s been a while since we haven’t heard from you.
Therefore, we are changing the status of this thread to Resolved.
Please don’t hesitate to create a new topic if you have any further queries.
Best Regards
Hi,
I hope you are doing well today. We are very glad that this was helpful.
But please, could you remove the duplication of the status in the “action” column?
We kept that because we have some users who don’t display the stock status column. So we kept that under the add to cart button (as default). But, we kept a way to disable that.
Please add the following snippet using a plugin called Code Snippets or you can also add the snippet inside your current child theme’s functions.php file
Note: Please add any custom code to the child theme. Otherwise, on your parent theme, you will lose your custom code if you update it.
add_filter('pvtfw_cart_btn_after_backorder_text', '__return_false');We have also add a note to the changelog for your convenience.
We feel very honored and proud when you use our plugin on your site. If you found our support and plugin helpful, please share your valuable feedback here- https://wordpress.org/support/plugin/product-variant-table-for-woocommerce/reviews/
Your valuable feedback keeps us inspired.
Hope to hear from you soon.
Best Regards
Hi,
I hope you are doing well today.
We have released version 1.6.3 based on your suggestion.
Please update to the latest release and let us know your feedback.
Hope to hear from you soon.
Best Regards
Hi,
I hope you are doing well today.
We have adjusted the condition in our 1.6.2 version. Please update to the latest release 1.6.3.
Can you please confirm, if you are still getting this issue or not?
Hope to hear from you soon.
Best Regards
Hi,
I hope you are doing well today.
As it is not a theme from the wp.org theme directory. Please directly knock here, for further investigation.
It will help us to identify the issue.
Bes Regards
Hi,
I hope you are doing well today.
Can you please check the latest release 1.6.1? Please let us know whether the current version resolves your issue or not.
Hope to hear from you soon.
Best Regards
Forum: Plugins
In reply to: [Variation Price Display Range for WooCommerce] hide menu in /wp-admin/Hi,
I am very glad that that helps.
If you found my support helpful, can you please share your feedback here- https://wordpress.org/support/plugin/variation-price-display/reviews/.
It will help us to grow and inspire us a lot.
Best Regards
Forum: Plugins
In reply to: [Variation Price Display Range for WooCommerce] hide menu in /wp-admin/Hi,
I hope you are doing well today. By default, the menu will not be displayed for the Shop Manager role. Please check this screenshot for a better understanding- https://prnt.sc/2zsQCrf3eHME
If you check the screenshot, you can see our Plugin Menu is not displayed at the left menu bar. The test is a Shop Manager. However, here is an example snippet to hide the menu for the Administrator and Shop Manager:
add_action( 'admin_init', 'remove_menus' );
function remove_menus(){
$user = wp_get_current_user();
$not_allowed_roles = array( 'shop_manager', 'administrator' );
if ( array_intersect( $not_allowed_roles, $user->roles ) ) {
// Stuff here for not_allowed_roles array
remove_submenu_page('wpxtension', 'variation-price-display');
}
}Hope to hear from you soon.
Best Regards
Hi,
Thank you for sharing your thoughts. I wanted to clarify whether both “action” and “Action” were translated correctly. Kindly review the screencast I’ve shared here for further details: https://www.loom.com/share/9baa69a7a09f44f09fb3bb2a8bc2ffa1
We have tested the issue on our end and were unable to replicate it. In the latest version (1.6.0), we have not made any changes to the code affecting the lines you mentioned. Therefore, if the functionality works correctly in version 1.5.4, it should also work in 1.6.0.
Regarding the following code line:
elseif( strtolower( $key2 ) == __("Action", "product-variant-table-for-woocommerce") ){The
$key2variable is passed through a function to convert the string to lowercase. As a result, it will not conditionally match “Action” as expected.I encourage you to follow the steps in the screencast, as it should resolve the issue. However, if you find anything I may have missed or if you have additional concerns, please don’t hesitate to share.
Best Regards