hi,
is it possible to add the options to specific products only (for example by ID or by name)?
I can not find an option in the configuration box.
thank you, Jan
Hey there,
First of all an awesome plugin so thank you for creating this one! We are using the upload file option for product and they are nicely attached to orders. But how do you delete the files that are attached to the order when the amount starts to get pretty large as time goes on?
Cheers,
NikoV
When i select “Sold individually” on the product option when this subtotal and product price are zero for more details visit the attached link.
]]>Is this possible to do with settings?
If not, how to fix it with css?
Hello,
Actually testing your plugin
You have decided that labels and borders must be red.
I am not against but is there a way to change it? Especially for fonts.
Be aware that the background color of a given site may not match your choice of red. Especially when it’s in red family
Kind regards
]]>Hello,
First of all thanks for the great plugin, it seems to work quite well out of the box and didn’t need to much styling ??
However I have some hooks with a defined priority, the plugin right now breaks the flow, because it is either before or after the add to cart, I would like to be able to select a different hook or to move it to a completely different location using a shortcode or some other method.
Thanks in advance!
Hello,
First of all thanks for the great plugin, it seems to work quite well out of the box and didn’t need to much styling ??
The current issue I am having is regarding ordering, esp. if multiple sets of options are triggered. Is there a known way to set the priority ?
Also is there some way to get all the product options or at least each set of them via shortcode?
I would like to put them in expandable containers (accordions) or in a separate tab.
Welcome
Is the add-on available for free with all its options?
I am currently using your add-on
Uploading a file has been activated on the product page, but after completing the order, the uploaded image does not appear in the order list or in the order email!
Please help solve this problem
The emailed product table does not match what is showing in the cart and it does not show the breakdown properly. What codes might you have to edit the way the email shows the prodcut table? Without your plugin the product table shows fine.
]]>I would like to be able to add a number field, and then when the customer increases the field, the product total increases. I imagine it would need to use a calculation such as fieldname * qty, or something similar.
I understand that calculations are allowed in the pro version. would it be possible to create what I am trying to achieve?
]]>Hello, I need help with the arrangement of the product options on the cart and checkout page. All options appears inline on my website, which I would prefer in grids or separate lines. Could you offer a quick and easy solution? Thank you
]]>Is there a way to have conditional fields?
]]>I want to add support for this plugin to my plugin and need to get the product options selected for each individual item in the cart, whats the best way to do that?
I need to get it from the order meta data
]]>I have added a default value, but yet the frontend still shows ‘Select an option’
]]>Hello! The plugin has been working Fastantic! but today It started having issues, now when user upload a file in whatever format, they are not displaying on the order. I tried cleaning caché, created another product options form and nothing works. It allows you to upload the file but it’s not displaying at front/end, cart, email, orders admin, anywhere. It’s like nothing was uploaded. Attached image for reference. Please help.
Image: https://ibb.co/1TkNxx3
]]>Hey! I when customers upload a .cdr, .ai, .psd format file to the “File-Upload” field; It uploads the file, but it’s not displayed on the anywhere. I have that marked as “required” but e.g. they upload a ,psd (Photoshop Format) file and it gets uploaded, but I can’t see it anywhere!
Is there something wrong?
It keeps showing “You need to enter a valid value” when value is decimal (e.g. 2.5)
I saw a topic related to that where support said it’s fixed on the previous update but it’s not working for me
In checkout page, after customer have chosen the options, if he tries to pay with paypal, the options sum up again on the paypal page so for example if product is 1000+ 400 options= 1400. Paypal read this as 1800, so it sums 1400 + again 400 options. How can I solve?
]]>its a little bit confusing for the users to have this line here. How can I hide it? or remove it.
]]>Hello! I’m using your plugin and I’m just wondering if I can customize the frontend. e.g. I have Size: and then two rows, one for the height and one for the width. I can reduce some space placing Width next to Height because the text there will be just numbers of maximum 3 digits.
Thank you!
Hello! I love this plugin however when I add “FileUpload” to the single product, people can add files of 512mb. I NEED to change that to 50mb at least
]]>Thank you very much for this excellent plugin! I report that mandatory options are not being validated, I use it in conjunction with WPC Quick view.
]]>Hello,
This is a very promising plugin. Unfortunately it’s not compatible with the plugin “Discount Rules Core”. It would be great, if the two where compatible ??
Best regards,
Michael
Is it possible to set the placeholder for text input? I can’t find it, if it is ??
]]>Hi,
WooCommerce 8.7 made a few changes to checkout page, and it seems made the plugin looks bad during checkout (radio buttons and checkout boxes).
The temporary fix is to disable all of the add-ons of the plugin, at least make checkout page workable.
It would be great if this issue is confirmed and release a fix soon. Thanks.
]]>Hello, I have always loved this plugin, a few days ago I noticed that something was not working well with the discount coupons.
When creating a fixed or percentage discount coupon, it works fine with a product with additional options, but if I select the “Exclude sale items” option in usage restrictions, the coupon does not work well, the following happens:
If I add the product without checking additional options everything works fine, but when I check any additional options the coupon is applied. It is taken as if the product was on sale, but it is not.
]]>The wpc-product-options-premium/vendor/mossadal/math-parser/doxygen/header.html (line 12 on version 1.6.0) loads jQuery 2.1.1. It is a decade old version from 2014 that has several vulnerabilities (e.g., CVE-2020-23064, CVE-2019-11358 & CVE-2015-9251). Please update your dependencies.
]]>I want to add product options to this api but can’t get it?
function get_store_products_by_category($data) {
$store_id = $data['store_id'];
$category_id = isset($data['category_id']) ? $data['category_id'] : '';
// Th?c hi?n truy v?n ?? l?y danh sách s?n ph?m c?a c?a hàng d?a trên danh m?c s?n ph?m n?u có, n?u kh?ng l?y t?t c? s?n ph?m.
$args = array(
'post_type' => 'product',
'posts_per_page' => -1,
'orderby' => 'title', // S?p x?p theo tên s?n ph?m
'order' => 'ASC', // S?p x?p theo th? t? t?ng d?n (A-Z)
'author' => $store_id, // ID c?a c?a hàng
);
if (!empty($category_id)) {
$args['tax_query'] = array(
array(
'taxonomy' => 'product_cat',
'field' => 'term_id',
'terms' => $category_id,
),
);
}
$query = new WP_Query($args);
$products = $query->posts;
// Chu?n b? d? li?u tr? v?
$response = array();
foreach ($products as $product) {
$product_data = wc_get_product($product->ID); // L?y ??i t??ng s?n ph?m hoàn ch?nh c?a s?n ph?m
// L?y th?ng tin c? b?n c?a s?n ph?m
$product_info = array(
'id' => $product_data->get_id(),
'name' => $product_data->get_name(),
'permalink' => $product_data->get_permalink(),
'price' => $product_data->get_price(),
'categories' => wp_get_post_terms($product_data->get_id(), 'product_cat', array('fields' => 'names')),
'image' => $product_data->get_image(),
);
// Thêm th?ng tin s?n ph?m vào m?ng response
$response[] = $product_info;
}
// Tr? v? k?t qu? d??i d?ng JSON
return rest_ensure_response($response);
}
]]>Dear WPC Support team;
I hope this message finds you well. I am writing to report an issue that I encountered with the WPC Product Options plugin for WooCommerce.
Background: Yesterday, I installed the WPC Product Options plugin on my WooCommerce store due to compatibility issues with the PPOM for WooCommerce plugin, which was causing disruptions with another plugin, WPC Product Bundles for WooCommerce.
Issue: After installing the WPC Product Options plugin, I noticed that when customers select certain options and add the product to their cart, the cost of the add-ons increases twice. This issue persists even after deactivating my other plugins and changing the theme.
Request: I kindly request your assistance in resolving this issue, please. I am hopeful that we can address the issue with the WPC Product Options plugin.
Please let me know if you require any further information or assistance from my end to diagnose and rectify this issue.
Thank you for your attention to this matter.
Best regards,
Joanna.
]]>I fixed it myself in previous version of the plugin. And I hoped it fixed in newest update. But nope. Dropdown and Checkbox are still bugged.
]]>