PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]
Botoscope is currently in early access

Support Forum

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

is there anyway to increase thumbnail 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.

the thumbnail size is too small, is there any way to increase the thumbnail size? this is not even fit in the box
https://www.screenpresso.com/=WUADO4EqEcjO

Use CSS in you admin side:

.img.attachment-thumbnail{ max-width: 75px;}

i added using wp code snipped and tried manually in wordpress default css
but it is not working, can you test and share from your end?

Hello

Add this code to your theme's functions.php file:

add_action('admin_head', function() {
echo '<style>
.img.attachment-thumbnail {
max-width: 150px !important;
height: auto !important;
}
</style>';
});

Change 150px to your desired thumbnail size.

This will add the CSS directly to the admin area where BEAR runs.

 

this still doesn't  worked,

Hi, it took me little time to find out but this code worked for me

add_action('admin_enqueue_scripts', function () {

// Only on BEAR / WOOBE page in wp-admin
if (!isset($_GET['page']) || $_GET['page'] !== 'woobe') {
return;
}

$css = '
/* Bigger thumbnails in BEAR table */
img.attachment-thumbnail{
width: 110px !important;
max-width: none !important;
height: auto !important;
}
';

// Attach AFTER BEAR styles. Try redesign handle first; fallback to base handle.
if (wp_style_is('woobe-redesign', 'enqueued')) {
wp_add_inline_style('woobe-redesign', $css);
} else {
wp_add_inline_style('woobe', $css);
}
}, 999);

Hello Umer

Thank you for cooperation!