i'm searching a way to convert dropdown list in WooCommerce into text-input field. I added hundreds of variation for width and height and now my client ask me to change it to input ;/ I need create something like this:
1st variation: if width = 20cm to 40cm AND height = 40cm to 90cm then price=myValue
And my products are in different price cathegory,so i have hundreds of variation for each group
Should i use csv pricing table? or something else than woocommerce ?
Related
how can I remove a specific variation selection.
My product has the option to add a canvas or no canvas, when I'm setting the variations for a product, I am unable to deselect the canvas option with the sizes. Is there any way I can only chose sizes without canvas variation?
Example:
Product one:
canvas + Size
Size
Canvas + size + frame
frame + size
Is there any plugin, shortcode or somewhere i should look at, been trying to research it for 2 days haven't found anything.
Thank you in advance
If I understand what you are asking - in the backend of each individual product - in the woocommerce Product Data section - under Variations - there should be a drop down menu at the top that says "Default Form Values"
You should be able to set that to "No Default"
I have a product with 300+ variations. I'm displaying all variations in one large form, because i want the user to pick various variations to buy at once.
When i add to cart it doesn't work, but if i choose a product that has less number of variations, it works normal.
I've alredy changed my max_input_vars in my php.ini.
How i increment the number of variations?
URL: http://patricio.jhkon.site/index.php/product/regular-t-shirt-man/
This is a wrong way to do this task. color should be the attribute to size should be the variation. and you can create a custom fucntion to choose the color for the product. you can create the a dropdown list where user can select the color and from size variation user can select the variation.
if you want to create dropdown using product atrributes. Let me know.
I'm trying to add a second button to a product page with a updated price.
For example I'm using [add_to_cart id='$product->id'] which displays correctly, but I would like to assign this short code a custom price.
The results should show two buttons on a single product page. One with the regular price value and the other with the custom price value.
I tried doing this through variables, but need them in two buttons instead of a drop down.
Thanks for the help!
I have created two attributes for products in wordpress (Height and Width) having different variation in feet. Every variation has different cost. Everything is working file. My problem is variations are not displayed as drop down list rather they are displayed in the form of table like:-
Size
2ft2ft
2ft4ft
etc.
How to fix this?
please check this link
http://kb.oboxthemes.com/articles/woocommerce-how-to-setup-products-with-multiple-optionsvariations/
video :
https://www.youtube.com/watch?v=nw74z4UCke4
I want to get the height of the shop catalog image size which I can use in some files for styling purpose. I think this is the option name shop_catalog_image_size which I call like get_option('shop_catalog_image_size');
But I want only the height of the image and not the dimension. Any idea?
Thanks
You can get the WooCommerce Display options from DB's wp_options table like this:
$ShopCatalogImageSizeOption = get_option('shop_catalog_image_size');
It returns with an array, which contains width and height to, so the answer is:
ShopCatalogImageHeight = $ShopCatalogImageSizeOption['height'];