• Resolved cloudninjaryan

    (@cloudninjaryan)


    In updating to the newest version of your theme my site seems to be having some issues. I have spent time troubleshooting plugins and finally got tired of doing that one by one so I deactivated all of them, cleared the cache, and updated to the 3.0.7 version of the theme and I still could not get the site to work. (Now I know this version of the theme (3.0.7) does work, because I am using it on another site that I have built and currently maintain, so I am not sure what the issue is with this specific install of the theme or maybe I have a setting wrong somewhere.)

    The site just included the top logo and the site menu and everything after that was blank with a white screen. With all plugins deactivated I would think the theme would work but I am not sure what else to try.

    Any help would be appreciated.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • The problem is in your child theme, likely your page or post templates. They changed the names of some of the functions used in templates, so if you’ve got the old code in your template then you’re calling a function that doesn’t exist which will cause an error and everything under the header will be blank. The header is shown because it’s called before any custom code in the template.

    For me it was this code:

    <?php echo esc_attr(kadence_main_class()); ?>

    It’s purpose is to dynamically set the width of the main container. For instance, if you pick a full width layout, it will give you the class “col-md-12” which is a 100% width bootstrap column.

    They changed it to this:

    <?php echo esc_attr(virtue_main_class()); ?>

    Try changing that. You could also just replace the php code with “col-md-12” if you don’t need it to be dynamic.

    If this doesn’t fix it, look for “kadence” in your child theme, and replace whatever you find with “virtue”.

    • This reply was modified 7 years, 1 month ago by tapper101.
    • This reply was modified 7 years, 1 month ago by tapper101.
    Thread Starter cloudninjaryan

    (@cloudninjaryan)

    Yup that was it. Should have seen that. Thanks so much for the help and quick response I got it fixed!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Issues with Version 3.0.7 Update’ is closed to new replies.