Frequently asked questions

Styles do not apply?


If the styles you set in the plugin settings do not appear on the page you need to set a chmod of 0777 to the following folder / file: /wp-content/woocommerce-compare-products/public/css/woocommerce-compare-products-custom.css If this file does...

Hide Compare Bar on Pages


If you want to hide the compare bar on certain pages you can use the following custom CSS. Replace the ID with the ID of your page: body.page-id-2 #woocommerce-compare-bar { display: none; } To hide the compare bar on all pages use this...

I can not see the settings / options panel


You can find the everything inside your Admin Panel below WooCommerce > Compare Products. If not: Make sure the Redux Framework plugin is installed!

How to show group attributes in the compare table?


The compare plugin is integrated with our WooCommerce Group Attributes plugin. Attribute groups will appear in the data to compare section like below. grouped attributes for compare You simply need to drag them into the enabled...

How can I change the compare button color?


You can use the following custom CSS to change the compare bar button to another background or text color. a.woocommerce-compare-table-action-compare, a.woocommerce-compare-table-action-compare:hover { background-color: blue; color: #fff; }

Can not scroll on mobile Android Devices?


If you can not scroll on your shop page when using a mobile Android Device, please turn off the draggable function in our general settings.

WooCommerce Compare with Similar Products on Product Page


How are the “COMPARE WITH SIMILAR PRODUCTS” made? How should I configure it, so that when I am in a single product page the plugin shows a section comparing similar products? Our plugin automatically takes products from the same category...

Hide compare Button for Specific Products


If you want to hide the Add to Compare button for specific products you can use the following filter hook: add_filter( 'woocommerce_better_compare_show_add_to_compare_button' ,'hide_compare_btn', 10, 2); function hide_compare_btn( $show,...