Hakik Zaman
Forum Replies Created
-
Hi,
Thanks for reaching out to me. Unfortunately, I didn’t find your reported issue. Please check this screencast.
I have tested it with the latest WooCommerce 6.3.1 and the latest WordPress 5.9.2. To identify it I also installed Query Monitor Plugin and changed
wp_debug = true
fromwp-config.php
Please make sure if you customized PVT. If you customized it please check your whole customization process again.
If you didn’t customize, please test plugin compatibility by following steps-
– Temporarily deactivate all additional plugins except WooCommerce and Product Variation Table for WooCommerce – PVT
– Then activate plugins one by one to identify the issue.If the plugin compatibility doesn’t help and warning is still there. You can test it using a default theme like- Twenty Twenty One or Storefront theme
Thanks
Hi,
Thanks for reaching out to me. You know, there are lots of pricing plugins.
That’s why PVT was developed for WooCommerce Variable Product and its default pricing system.
But I really appreciate that, you want to use PVT with the Name Your Price plugin. Sure, I will look into it.
If I can find any solution I will definitely add it to PVT.
Thanks for understanding.
Hi,
Thanks for reaching out to me. Unfortunately, this feature is not currently available.
Now you can display-
– Minimum Price (including ‘From’)
– Maximum Price (including ‘UpTo’)But it is a great idea, I am keeping this on my to-do list as a feature request.
Thanks
Forum: Reviews
In reply to: [Variation Price Display Range for WooCommerce] MükemmelForum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Additional Variation ImageHi,
Glad to know everything is working from your side.
Keep me in your prayers.??
Have a good day!
Thanks
Hi,
Glad to know everything is working from your side.
If you found my support helpful, my humble request to you to write your beautiful thought here.
Indeed it will inspire me a lot. ??
Thanks
Hi,
$options['maza'] = $single_variation->get_meta('maza');
should be-
$options['maza'][] = $single_variation->get_meta('maza');
Your coding procedure is ok. Just do one thing, Go to your site database and inside
wp_options
table you will getpvtfw_variant_table_columns
just delete this data.Please also make sure you are getting data using
$single_variation->get_meta('maza');
For a test you can set a static value. For example-
$options['maza'][] = 'My Data';
I hope above explanation will help you to achieve what you wanted.
Let me know after doing above. ??
Thanks
Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Additional Variation ImageHi,
Sorry, still I didn’t find the settings. I have given a solution in the next part of this article.
Note: Please don’t try it on the live site. Firstly try it on your local machine
Follow the following steps carefully-
1. Firstly Uninstall and Delete PVT and reinstall it again (to delete data from database).
2. Install Additional Variation Images Gallery Plugin.
3. Set images using Additional Variation Images Gallery.
4. You have to edit two files of PVT-
–product-variant-table-for-woocommerce > inc > class_pvtfw_common.php
–product-variant-table-for-woocommerce > inc > templates > content-tbody.php
5. Here you will get two files.If you follow the above instructions carefully. You will get PVT like this.
Please let me know if it fulfils your need.
Thanks
Hi,
Thanks for reaching out to me.
Can you please share the field type? Or, a screenshot of the field you created for product edit page.
content-tbody.php
is the complex file of this plugin. So, if you show me how the field appears on product edit page; it will help me to regenerate like yours.Thanks
Hi,
I see, I developed this plugin to work with WooCommerce regular and sale price.
PVT can’t read the price while you are setting the sale price using the discount rules plugin.
You already know, there are lots of discount plugins and each plugin has its own coding structure. So, PVT was developed for extending the WooCommerce behavior or layout.
But surely, I will check the Discount Plugin and research it. If I can find any solution, I will come back to you. ??
I hope you will understand.
Thank you
Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Additional Variation ImageHi,
I have installed your theme for checking. Unfortunately, I didn’t find any field to add additional images for a specific variation.
Can you please check which plugin or theme setting you are using to gain that facility?
Hope to hear from you soon!
Firstly thanks for your suggestions. I really liked the way you demonstrate the total scenario.
Unfortunately, the confirmation notice is coming from either your theme (if your theme customized it) or WooCommerce.
I just call the template file when a product is successfully carted. Here is an example-
wc_get_template( "notices/{$notice_type}.php", array( 'notices' => array_filter( $all_notices[ $notice_type ] ), ) );
But you gave me a great idea. I will think about loading PVT template rather than WooCoomerce template to get notices.
I hope I could clear your confusion.
Thanks
Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Additional Variation ImageHi
As a default, woocommerce lets you add additional variation images gallery onto each variation so is there really a need for the extra plugin?
As far I know WooCommerce gives you to upload a single image for each variation.
In that case, maybe your theme gives you the additional feature to upload more images for each variation.
Which theme you are using?
Thanks
Forum: Plugins
In reply to: [Variation Price Display Range for WooCommerce] Elementor issueHi,
Glad to know my last release was helpful for you.
Many thanks for reporting the issue. Don’t hesitate to report any issues you face regarding our plugin.
Have a nice day!
Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Additional Variation ImageHi,
Thanks for your interest. Unfortunately, this is not the purpose of this plugin. But it is a great idea. Right now, the plugin grabs the thumbnail image of variation.
I can give you some hints to develop as you are thinking-
– You can use any additional variation gallery plugins. It will give you the facility to insert more images for the variation.
– Those plugins will insert images as an array insidepost_meta
againstvariation_id
– You can get them like thisget_post_meta('variation_id', 'additiona_images_meta', true);
– Then go to product-variant-table-for-woocommerce > inc > tamplates > content-tbody.php
– There online number 42
will get aforeach
loop andvariant_id
isvariation_id
here.
– Now useget_post_meta('variation_id', 'additiona_images_meta', true);
inside foreach loop with exact parameter.
– Then display images as you wantI hope it will helpful for you.
Thanks