Hi Jules,
Thanks for reaching out with your Crio Pro WordPress theme questions.
These tags here look like there are all from the premium Crio plugin that adds additional functionality to the Crio theme. Check the Plugins section of your WordPress dashboard and uninstall the Crio Premium plugin as well if you haven’t already done so.
If that doesn’t work you can manually remove custom fields that were created by the theme. Before proceeding with something like this, please ensure you have a complete backup of your website as is. You can remove these custom fields with a plugin like Advanced Custom Fields or Custom Field Suite. These plugins offer options to manage and delete custom fields.
Alternatively, you can also manually remove these fields by using a PHP code snippet. Please note that this method should only be used if you are comfortable with coding. Here is a sample code that you can modify and add to your theme’s functions.php file:
function remove_crio_custom_fields() {
global $wpdb;
$post_meta_keys = $wpdb->get_results("SELECT * FROM $wpdb->postmeta WHERE meta_key LIKE 'crio-premium-%'");
foreach ($post_meta_keys as $meta_key) {
delete_post_meta_by_key($meta_key->meta_key);
}
}
add_action('init', 'remove_crio_custom_fields');
Again, modifying your theme’s files should only be done if you have experience with PHP and WordPress development.
If you’re still having trouble or need further assistance, feel free to reach out. We’re here to help!