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

How to delete Front Builder forms that are no longer used

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, I have a number of filters created using the front end builder that are no longer used, and I'd like to delete them. Can you tell me how to do this?

Thank you

Hello

Just remove the front builder shortcodes

Thank you for your reply. I did remove the shortcodes, but the swoofs still appear under advanced --> options in the product filter menu. I'd like to completely get rid of the unused code from my wordpress site. Is there a file or something that the unused code can be deleted from? Thanks again

Hello

You can add in functions.php:

add_action('wp_head', function(){
global $wpdb;
$table_name = $wpdb->prefix . 'woof_front_builder';
$wpdb->query("TRUNCATE TABLE `{$table_name}`" );
});
Please go to any page and delete this code

This code deletes all of the widgets, I only wanted to delete the unused ones. With the db table though I was able to accomplish that using a db utility, so I'm all set.

Thanks again for your help.

 

Hello

Great! Welcome;)