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

PHP Warning: Undefined array key 0 Every Minute

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 had to recently do a site restore and am activating one plugin at a time and the site is fully operational but when I active my bulk editor plugin I get these errors every minute it's active

PHP Warning:  Undefined array key 0 in /home/xxxxnamehiddenxxxxx/public_html/wp-content/plugins/woo-bulk-editor/index.php on line 1276

Wondering if you could help

Hello

Thank you for reaching out and providing the details.

Just to clarify - this is a PHP Warning, not an error. It means something is undefined in a specific case but it does not break or affect the functionality of the plugin or your site in any way.

That said, we identified the cause. It happens when a product has a taxonomy field with no assigned terms, which leaves an internal array empty while the code tries to read from it without checking first.

To stop the warning, apply this one-line change in woo-bulk-editor/index.php around line 1279. Find:

$val = $titles[0];

Replace with:

$val = isset($titles[0]) ? $titles[0] : '';

Save the file and the warning will be gone. We will include this fix in the next release as well.

Thank you!

Thanks so much! That stopped the warnings.

Understood! I didn't know the difference;) I've been using your plugin for years now and it's one of the most useful plugins ever purchased!

Thank you and Welcome :) ❤️