Hello all,
When I select a product I can choose how many pieces I want. Right now you can add as many as you want. But is it possible to set a maximum, say a maximum of 10?
Thanks,
Martijn
Hello all,
When I select a product I can choose how many pieces I want. Right now you can add as many as you want. But is it possible to set a maximum, say a maximum of 10?
Thanks,
Martijn
Ok thanks!
I have another question. Different as the title of this thread but okay.
In my product overview I see all the prices of each product. That's fine, but when I click on a single product and go to the private page of that product I don't see the price anymore. Is there a way to show the price also on the single product page?
THanks a lot.
Look for meta.php in plugins > woocommerce > templates > single product and replace everything with this line.
<?php
/**
* Single Product Meta
*/
global $post, $product;
?>
<div class="product_meta">
<?php if (($product->is_type('simple') || $product->is_type('variable')) && get_option('woocommerce_enable_sku')=='yes') : ?>
<span itemprop="productID" class="sku"><?php _e('SKU:', 'woocommerce'); ?> <?php echo $product->sku; ?>.</span>
<?php endif; ?>
<p itemprop="price" class="price"><?php echo $product->get_price_html(); ?></p>
<?php echo $product->get_categories( ', ', ' <span class="posted_in">'.__('Category:', 'woocommerce').' ', '.</span>'); ?>
<?php echo $product->get_tags( ', ', ' <span class="tagged_as">'.__('Tags:', 'woocommerce').' ', '.</span>'); ?>
</div>
You edit the style on your custom.css.
Niceeee! Thank you so much!
Martijn
This topic has been closed to new replies.