Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #116773
    Jules
    Guest

    Our website was initially setup with Crio, but it doesn’t suit our needs. I removed it from the themes page, but there are many remaining artifacts that I would like removed. Primarily, there are custom fields that appear in my field selections that should no longer be there.

    crio-premium-include-site-header
    crio-premium-merge-site-header
    crio-premium-template-has-page-title

    and so on…

    Thanks for any help you are able to provide.

    #116796
    Brandon C
    Keymaster

    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!

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Uninstall BoldGrid Crio theme, custom header markup still exist after unintall’ is closed to new replies.