PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Hide Selected From Current Filter and Increase Thumbnail Image Size

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

I'm working on editing product categories and adding subcategories for around 5,000 products. Is it possible to hide selected products from the current filter session? For example, a product has three levels of parent and child categories but doesn't need to be displayed in the filter. In my case, I've got 479 products currently selected that I no longer want to be visible so I can work on the remaining products without the other products getting in the way.

Another question I have: Is it possible to increase the size of the thumbnail image in the search results? I love the"beauty image" on hover, so an option to make that image size default without having to hover would be great.

Hello

  1. Unfortunately the plugin does not have such a feature
  2. Please  add CSS:
#advanced-table img.attachment-thumbnail {

 max-width:150px;

}

Where do I add the CSS? Is there a place in the BEAR plugin for this or should it go into the main site CSS?

Hello

You can  add  in  functions.php

add_action( 'admin_head' , function(){

?>

<style>

#advanced-table img.attachment-thumbnail {

 max-width:150px;

}

</style>

<?php

});