MailPoet DB maintenance

Reduce the size of the wp_mailpoet_scheduled_task_subscribers table. You can reduce the size of this table by running the following SQL query: DELETE FROM wp_mailpoet_scheduled_task_subscribers where created_at < ‘2019-01-01’; Ensure to use the same table name as...

Add Pods user meta fields to the New User form

If your PODS solution is extending the User meta fields then this snippet is for you! When adding a new user, by default you would not see any of the new User fields. This snippet permits the meta fields to be available when adding a new User. <?php...

Allow Pods Templates to use shortcodes

This must be added to wp-config.php. /* PODS & Divi */define(‘PODS_SHORTCODE_ALLOW_SUB_SHORTCODES’,true);define(‘PODS_SHORTCODE_ALLOW_EVALUATE_TAGS’,true); Then add this snippet to the functions.php file of your child theme or feature...