Plugin Author
mjke87
(@mjke87)
Hi Claudio,
The placeholders only work in the attribute’s “additional description field” that you find, when you open an attribute term’s edit screen.
You can display the text you enter there at the following two spots on your product:
- Append it to the main description
- Show it in a separate tab
You change the behavior for each attribute individually in the attribute edit screen.
I don’t know if Elementor has any influence on the display, never tested it.
Cheers,
Mike
ok thanks, but no way to have attributes taxonomies outside the description box in your opinion ? Thanks
Plugin Author
mjke87
(@mjke87)
You might be able to achieve this with some coding, but otherwise is currently not possible.
yes, of course but I have no idea where to start :'(
Plugin Author
mjke87
(@mjke87)
Hi Claudio,
I think the easiest would be something like this:
add_action('YOUR-ACTION', function() {
$instance = \MJJ\WooProductAttributeTab\Tabs::instance();
$content = $instance->extend_product_description('append');
echo $content;
});