• Resolved authenticman1966

    (@authenticman1966)


    I am using Forceful Lite. I love the design. It’s just what I have been looking for.
    Problem is, none of my category pages will load. They all show a blank white page. When I view the source, there is nothing in the View Page Source. Seems it’s not calling the category pages. Same problem with tags. Author pages work fine.

    This is what I have tried so far. Tried changing permalinks back to ugly, then reverted back to pretty. Deleted .htaccess file and created a new one. Everything produces the same result.
    Went back to twenty fourteen, everything works fine there. So, it has to be the theme.
    I reinstalled wordpress, no joy.
    Deactivated and reactivated all of my plugins, no change.
    Installed wordpress to a subdomain, started new blog there, theme works fine. I just can’t get it to work with my already active site. Somebody help please!!
    Have installed ssl a couple of weeks prior to trying the theme, but don’t think that could be the issue.
    This is my site https://www.authenticastrology.com

    Michael Reed

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter authenticman1966

    (@authenticman1966)

    Resolved. Changed this

    ‘function kopa_get_template_setting() {
    $kopa_setting = get_option(‘kopa_setting’, unserialize(KOPA_DEFAULT_SETTING));
    $setting = array();

    if (is_home()) {
    $setting = $kopa_setting[‘home’];
    } else if (is_archive()) {
    if (is_category() || is_tag()) {
    $setting = get_option(“kopa_category_setting_” . get_queried_object_id(), $kopa_setting[‘taxonomy’]);
    } else {
    $setting = get_option(“kopa_category_setting_” . get_queried_object_id(), $kopa_setting[‘archive’]);
    }
    } else if (is_singular()) {
    if (is_singular(‘post’)) {
    $setting = get_option(“kopa_post_setting_” . get_queried_object_id(), $kopa_setting[‘post’]);
    } else if (is_page()) {

    $setting = get_option(“kopa_page_setting_” . get_queried_object_id());
    if (!$setting) {
    if (is_front_page()) {
    $setting = $kopa_setting[‘home’];
    } else {
    $setting = $kopa_setting[‘page’];
    }
    }
    } else {
    $setting = $kopa_setting[‘post’];
    }
    } else if (is_404()) {
    $setting = $kopa_setting[‘_404’];
    } else if (is_search()) {
    $setting = $kopa_setting[‘search’];
    }

    return $setting;
    }’

    To this

    ‘function kopa_get_template_setting() {
    $kopa_setting = get_option(‘kopa_setting’, unserialize(KOPA_DEFAULT_SETTING));
    $setting = array();

    if (is_home()) {
    $setting = $kopa_setting[‘home’];
    } else if (is_archive()) {
    if (is_category() || is_tag()) {
    $setting = get_option(“kopa_category_setting_” . get_queried_object_id(), $kopa_setting[‘archive’]);
    } else {
    $setting = get_option(“kopa_category_setting_” . get_queried_object_id(), $kopa_setting[‘archive’]);
    }
    } else if (is_singular()) {
    if (is_singular(‘post’)) {
    $setting = get_option(“kopa_post_setting_” . get_queried_object_id(), $kopa_setting[‘post’]);
    } else if (is_page()) {

    $setting = get_option(“kopa_page_setting_” . get_queried_object_id());
    if (!$setting) {
    if (is_front_page()) {
    $setting = $kopa_setting[‘home’];
    } else {
    $setting = $kopa_setting[‘page’];
    }
    }
    } else {
    $setting = $kopa_setting[‘post’];
    }
    } else if (is_404()) {
    $setting = $kopa_setting[‘_404’];
    } else if (is_search()) {
    $setting = $kopa_setting[‘search’];
    }

    return $setting;
    }’

    In what file is this code located ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Categories Loading Blank Page’ is closed to new replies.