• On my blog page the blog postings do not show a blog title, date, author and there is no way to click anything to go to the posting itself.

    Any help would be great.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter BaldEmotions

    (@baldemotions)

    So it appears that my “Blog” options in the Cirrus Theme Options Panel is missing so that is not allowing me to show any of the meta data for the posts on the page.

    Thread Starter BaldEmotions

    (@baldemotions)

    Confirmed. The blog option is removed in the 1.1.0 update.
    How do I get this option back?

    Thread Starter BaldEmotions

    (@baldemotions)

    I added this to line 637 in the options_arr.php file before //Design

    // Blog

    $NIMBUS_OPTIONS_ARR[“blog_tab”] = array(“name” => __(‘Blog’, ‘nimbus’),
    “id” => “blog_tab”,
    “tab” => “tab”,
    “classes” => “”,
    “url” => “blog”,
    “type” => “tab”);

    $NIMBUS_OPTIONS_ARR[“post_meta_single”] = array(“name” => __(‘Display Meta Information on Posts’, ‘nimbus’),
    “desc” => __(‘Select the following information you would like to have displayed on post pages.’, ‘nimbus’),
    “id” => “post_meta_single”,
    “tab” => “blog”,
    “default” => array(“title” => “1”, “post_thumb” => “1”, “author” => “1”, “date” => “1”, “categories” => “1”, “tags” => “1”),
    “type” => “multicheck”,
    “options” => nimbus_include_post_meta());

    $NIMBUS_OPTIONS_ARR[“post_meta_blog”] = array(“name” => __(‘Display Meta Information on Home and Archive’, ‘nimbus’),
    “desc” => __(‘Select the folllowing information you would like to have displayed on blog and archive pages.’, ‘nimbus’),
    “id” => “post_meta_blog”,
    “tab” => “blog”,
    “default” => array(“title” => “1”, “author” => “1”, “date” => “1”, “categories” => “1”),
    “type” => “multicheck”,
    “options” => nimbus_include_blog_meta());

    $NIMBUS_OPTIONS_ARR[“display_bio”] = array(“name” => __(‘Display Author Bio’, ‘nimbus’),
    “desc” => __(‘Select to display the author\’s bio at the bottom of the post.’, ‘nimbus’),
    “id” => “display_bio”,
    “tab” => “blog”,
    “default” => “1”,
    “label” => “Display Bio”,
    “type” => “checkbox”);

    Hey thanks for this! This happened to me when I updated the theme! Tried everything, but input this code into the file and ta-dah! It works!

    Many Thanks!!! I started using wordpress for my company’s web site one month ago, it’s amazing! Thanks all wp community, the best!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Blog page blog posts don't show date’ is closed to new replies.