woocommerce product variations

marco.marino1971
54 Posts
marco.marino1971 posted this 08 July 2016

Hi,
I am trying to customize a produtc page, please see this page: http://www.morcianoinformatica.it/prodotto/ap9613/

I want to change position of quantity, COD, category, prduct title. For example I would to place in different lines like this:

Title of produtc
Code - category
description
quantity
price
buy (button)

The problem is that several items are grouped in "product variations" in themler backend (see attachement)

It seems I can not move this items inside the product variations

Marco

Hi, I am trying to customize a produtc page, please see this page: [http://www.morcianoinformatica.it/prodotto/ap9613/][1] [1]: http://www.morcianoinformatica.it/prodotto/ap9613/ I want to change position of quantity, COD, category, prduct title. For example I would to place in different lines like this: Title of produtc Code - category description quantity price buy (button) The problem is that several items are grouped in "product variations" in themler backend (see attachement) It seems I can not move this items inside the product variations Marco
Vote to pay developers attention to this features or issue.
3 Comments
Order By: Standard | Newest
Support Team
Support Team posted this 08 July 2016

Hi,

Unfortunately there s no way to break some of the items and group them in the other way.

Sincerely,
Hella

Hi, Unfortunately there s no way to break some of the items and group them in the other way. Sincerely, Hella
marco.marino1971
54 Posts
marco.marino1971 posted this 08 July 2016

Is it not possible to use cms code?
http://answers.themler.com/articles/67129/tips-and-tricks

is there a code to insert for product title, description. price, quantity? so I could manage items individually

Marco

Is it not possible to use cms code? http://answers.themler.com/articles/67129/tips-and-tricks is there a code to insert for product title, description. price, quantity? so I could manage items individually Marco
Support Team
Support Team posted this 11 July 2016

Hi,

All these can be outputted using regular WP functions. For example:
Short description:
<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt );
the_content();?>

Availability in Stock:
<?php echo $product->get_stock_quantity(); ?></span> in stock</p>
Product Description (for Product Details only):
<?php the_title(); ?>
The title can be wrapped in heading tags <h1></h1>
Product Category:
<?php echo $product->get_categories(); ?>
etc.

Thank you,
Olivia

Hi, All these can be outputted using regular WP functions. For example: Short description: `<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ); the_content();?>` Availability in Stock: `<?php echo $product->get_stock_quantity(); ?></span> in stock</p>` Product Description (for Product Details only): `<?php the_title(); ?>` The title can be wrapped in heading tags `<h1></h1>` Product Category: `<?php echo $product->get_categories(); ?>` etc. Thank you, Olivia
You must log in or register to leave comments