<form action="<?php echo esc_url( $_product->add_to_cart_url() ); ?>" class="variations_form cart" method="post"> | |
<table class="variations" cellspacing="0"> | |
<tbody> | |
<?php foreach ($attributes as $name => $options) : ?> | |
<tr> | |
<td><label for="<?php echo sanitize_title($name); ?>"><?php echo $woocommerce->attribute_label($name); ?></label></td> | |
// START HACK HERE | |
<?php if(is_array($options) && $options[0] == "CUSTOM_TEXT") : ?> | |
<td> <input type="text" id="<?php echo esc_attr( sanitize_title($name) ); ?>" name="attribute_<?php echo sanitize_title($name); ?>"/></td> | |
<?php else: ?> | |
<td><select id="<?php echo esc_attr( sanitize_title($name) ); ?>" name="attribute_<?php echo sanitize_title($name); ?>"> | |
<option value=""><?php echo __('Choose an option', 'woothemes') ?>…</option> | |
<?php if(is_array($options)) : ?> | |
<?php | |
// Get terms if this is a taxonomy - ordered | |
if (taxonomy_exists(sanitize_title($name))) : | |
$args = array('menu_order' => 'ASC'); | |
$terms = get_terms( sanitize_title($name), $args ); | |
foreach ($terms as $term) : | |
if (!in_array($term->slug, $options)) continue; | |
echo '<option value="'.$term->slug.'">'.$term->name.'</option>'; | |
endforeach; | |
else : | |
foreach ($options as $option) : | |
echo '<option value="'.$option.'">'.$option.'</option>'; | |
endforeach; | |
endif; | |
?> | |
<?php endif;?> | |
</td> | |
<?php endif;?> | |
// END HACK HERE | |
</tr> | |
<?php endforeach;?> | |
</tbody> | |
</table> | |
<div class="single_variation_wrap" style="display:none;"> | |
<div class="single_variation"></div> | |
<div class="variations_button"> | |
<input type="hidden" name="variation_id" value="" /> | |
<div class="quantity"><input name="quantity" value="1" size="4" title="Qty" class="input-text qty text" maxlength="12" /></div> | |
<button type="submit" class="button alt"><?php _e('Add to cart', 'woothemes'); ?></button> | |
</div> | |
</div> | |
<div><input type="hidden" name="product_id" value="<?php echo esc_attr( $post->ID ); ?>" /></div> | |
<?php do_action('woocommerce_add_to_cart_form'); ?> | |
</form> |
This comment has been minimized.
This comment has been minimized.
I need this very urgently to add an custom text field on the single product page just above the add to cart where customers will add special instruction during add to cart. plz let me know how to use this code. Thanks ! |
This comment has been minimized.
This comment has been minimized.
In the current version of WooCommerce, the relevant file to update with this hack is "woocommerce/templates/single-product/add-to-cart/variable.php" (which you can copy under your own theme at "{your_theme}/woocommerce/single-product/add-to-cart/variable.php" in order to override it without the risk of a WooCommerce update blowing away your changes. At least in the current version, though, this hack is only half the battle: you also have to extend https://github.com/woothemes/woocommerce/blob/master/assets/js/frontend/add-to-cart-variation.js to have it recognize that the |
This comment has been minimized.
This comment has been minimized.
Just compared this script with version 2.0.3 script and it looks different. Seems this script is not updated. |
This comment has been minimized.
This comment has been minimized.
Hi, I'm searching a way to add 2 number input fields in WooC. , validate price based on both values from inputs, and save values on order pages, I've aadded fields to single-product, but i can't set price and save those numbers, can you,please, help me/look at my code? |
This comment has been minimized.
Hi,
I did not found the woocommerce_template_functions.php in my WP + Woocommerce setup. Could you please elaborate where to paste the above mention code? I will be thankful to you. Thanks