I see this template error:
public_html/wp-content/plugins/wpc-attribute-groups/templates/product-attributes.php version 3.6.0 is out of date. The core version is 9.3.0
What is causing this.
Thx
]]>One of my attributes is marked as “Other”, however, I have it added in the attribute group. Can you please take a look and tell me what is wrong?
]]>Hi,
Compatibility issue with?https://woo.com/products/product-bundles/
It repeats groups if there are products as bundle.
Plugins shows X times of groups if there are X times product as bundle under additional information tab.
fyi.
]]>Hi there,
Thanks for great plugin. I see this message quite more times on my error.log
Warning: Undefined array key 0 in?/srv/htdocs/wp-content/plugins/wpc-attribute-groups/includes/class-backend.php on line 257
]]>
Hi there,
This plugin solves one of the biggest issue for big stores.
I am using paid welaunch’s plugin but it loads more data and file.
There are few comments from my side;
Might you be persuaded to add a tiny check to your nice little plugin?
In the method WPCAG_Fo::attributes_table all attributes are listed regardless if they have a value or not.
I added a rudimentary check…
public static function attributes_table( $product_attributes ) {
ob_start();
?>
<table class="woocommerce-product-attributes shop_attributes">
<?php foreach ( $product_attributes as $product_attribute_key => $product_attribute ) {
if ( $product_attribute['value'] ) {
?>
<tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--<?php echo esc_attr( $product_attribute_key ); ?>">
<th class="woocommerce-product-attributes-item__label"><?php echo wp_kses_post( $product_attribute['label'] ); ?></th>
<td class="woocommerce-product-attributes-item__value"><?php echo wp_kses_post( $product_attribute['value'] ); ?></td>
</tr>
<?php } } ?>
</table>
<?php
return apply_filters( 'wpcag_attributes_table', ob_get_clean(), $product_attributes );
}
…but seeing that I can’t extend the class and override it, it’s a bit on the volatile side. The real solution would of course be to add an option for this in the plugin itself.
]]>Now, attributes is ordered in A>Z order, but I nead some custom order?
Drag and drop dont work inside group, only have option to reorder entire groups, but not attributes inside groups.
Please help me ASAP
]]>Hi Team,
Glad you made this plugin ! We are using another plugin but it’s not maintened anymore.
Do you consider adding group set feature ? Would be nice to segment attributs to sub-groups and then to import the whole set during product creation, but also to display this segmentation in the front end.
For exemple :
Group Set : “Mices” contains 3 attributes groups :
– Mices – Performance (DPI / Captor / Tracking)
– Mices – Deisgn (Color / Shape)
– Mices – Connector (Wired / Wireless / Autonomy / Cable length)
In the backend we load group set “Mices”. And in the frontend, visitors see sub-groups with all attributes inside.
Regards,
Antoine