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

Table missing in HUSKY product filter

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.

Hi, it seems a table is missing from HUSKY product filter plugin in the database.
This is causing the database not to be found very often.
Version 3.3.8.1 of product filter is installed.

We checked the exact time when a crash occured, and this is the error that came up.
Front_builder is not active on the website.

Can you please look into this?
Thanks in advance.

[Wed May 13 19:56:25.12345 2026] [proxy_fcgi:error] [pid 12345:tid 12345] [remote 111.2222.333.444:64591] XXX: Got error 'PHP message: WordPress database error Table 'fsdfsd983kfs.xxx_woof_front_builder' doesn't exist for query SELECT id FROM xxx_woof_front_builder made by do_action('woocommerce_page_wc-settings'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Admin_Menus->settings_page, WC_Admin_Settings::output, include('/plugins/woocommerce/includes/admin/views/html-admin-settings.php'), do_action('woocommerce_settings_tabs_woof'), WP_Hook->do_action, WP_Hook->apply_filters, WOOF->print_plugin_options, WOOF->render_html_e, include('/plugins/woocommerce-products-filter/views/plugin_options.php'), do_action('woof_print_option_advanced'), WP_Hook->do_action, WP_Hook->apply_filters, WOOF_FRONT_BUILDER->global_options', referer: https://www.domain.com/wp-admin/admin.php?page=wc-settings

Hello

This is not an error, just a notice. The table was not created automatically during plugin installation, which can happen on some server configurations.

To fix it, go to HUSKY settings, open the Front Builder tab, and click the Create button. That is all, the notice will be gone after that.

For further support please provide actual purchase code of the plugin into the private area of this ticket:
https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png

Welcome!

 

Hi,

Thank you for replying.
I do not see a “Front Builder” tab in the plugin settings.

The available tabs are:
Structure, Settings, Design, Enhancement, Metadata, Smart Designer, Extensions, and Help.

Could you please tell me exactly where I can find the “Create” button in this version, or provide a screenshot?

Thank you.

Hello

Apologies — I mixed things up in my previous reply, I was thinking of Smart Designer there, not Front Builder. Let me correct it.

For Front Builder there is no separate"Create" button in the settings. The simplest way to trigger the table creation is to just place the following shortcode on any test page on your site:

[woof_front_builder name="my filter"]

Open that test page in the browser and check if it renders. The first call to Front Builder typically creates the missing table in the database. The reason it was not created automatically during plugin installation is most likely a permissions issue on the database user, or some other server-side restriction that prevented the initial CREATE TABLE statement from running. Using the shortcode once forces the plugin to run that step again.

Also, I have placed the latest HUSKY build in the private area of this ticket. It is not yet released on CodeCanyon, it is currently in preparation. Please download and install it over your current copy — if you happen to be on an older version, this update may already resolve the issue by itself, since the auto-creation logic has been improved.

If after both of the above the table is still not created (this would mean your MySQL user does not have the CREATE privilege, which the plugin itself warns about in that case), you can create it manually via phpMyAdmin. Open your database in phpMyAdmin, go to the SQL tab and run this query:

CREATE TABLE IF NOT EXISTS wp_woof_front_builder ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(64) DEFAULT NULL, selected text, options text, layout_options text, sections_options text, sections_layout_options text, viewtypes text, additional text, PRIMARY KEY (id), KEY (name) ) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

Important: replace wp_ in the table name with your actual WordPress database prefix. Looking at the error log you posted, the table name there is xxx_woof_front_builder, so your prefix is whatever stands in place of xxx_ in your wp-config.php (look for the $table_prefix variable). The table name in the SQL above must match that exactly.

After running the query, reload your wp-admin pages and the database notice about the missing table will be gone.

Please try the steps in this order: install the update, place the shortcode on a test page, and only if that does not help — run the SQL manually via phpMyAdmin. Let me know the result.