Viewing 11 replies - 1 through 11 (of 11 total)
  • rdellconsulting

    (@rdellconsulting)

    Probably Plugin conflict. Did you try the Plugin Test? Deactivate all your plugins, test. If OK, then re-Activate each Plugin one-by-one to find the culprit. Let us know which one if I’m right.

    mshingledecker

    (@mshingledecker)

    I tried that and it made no difference.

    Thread Starter PaulBUK

    (@paulbuk)

    No difference.

    Oh.. I see the issue. The problem is that your “first” posts in those lists are particular posts which are designed to have no titles. This screws up the correct titles displaying for the whole list, due to a little bug in inc/parts/class-content-headings.php.
    A possible solution could be:
    inc/parts/class-content-headings.php:66
    make this if (in_array....) become this:
    if (is_single() && in_array...)

    then add the previous unaltered condition to tc_headings_view() so.
    inc/parts/class-content-headings.php:98 will become:

    function tc_headings_view(){
        if ( in_array( get_post_format(), apply_filters('tc_post_formats_with_no_header', TC_init::$instance -> post_formats_with_no_header ) ) )
            return;

    But will be better waiting for a better solution @nikeo will certainly find ??

    For the moment try adding the following code to your child-theme functions.php

    add_action('__before_loop', 'titles_patch', 0);
    function titles_patch(){
        add_filter('tc_post_formats_with_no_header', 'show_titles_in_non_single');
    }
    function show_titles_in_non_single($post_formats_array){
        remove_filter('tc_post_formats_with_no_header', 'show_titles_in_non_single');
        if ( ! is_single() ){
            return array_diff($post_formats_array,[get_post_format()]);
        }
        return $post_formats_array;
    }
    add_action('__before_content', 'exclude_post_formats_titles', 5);
    function exclude_post_formats_titles(){
        if ( in_array( get_post_format(), apply_filters('tc_post_formats_with_no_header', TC_init::$instance -> post_formats_with_no_header ) ) )
            remove_action('__before_content', array(TC_headings::$instance, 'tc_headings_view'));
        else
            add_action('__before_content', array(TC_headings::$instance, 'tc_headings_view'));
    }

    Hope this helps

    mshingledecker

    (@mshingledecker)

    The change to functions.php fixed the issue. Thanks!

    Theme Author presscustomizr

    (@nikeo)

    @mshingledecker, @paulbuk : thanks for reporting the issue so quickly. This is in the fix list for next release.
    @d4z_c0nf : I missed those smart / creative patches :). Thanks for sharing

    Thread Starter PaulBUK

    (@paulbuk)

    I added a new blog with a title and all the titles came back. Afraid the solution above is advanced of my user level and I tried a “fix” before and crashed my whole site so will wait for the patch.

    Thank you for the assistance and fast response! Love the theme!

    syakshe1

    (@syakshe1)

    I also failed to mention that I had problems with my Twitter feed embedded in the sidebar as well as the Twitter Simple Social Button following the upgrade. The Twitter SSB caused problems on the page with the full article. I removed them to solve the problem but would like to get them back.

    “particular posts which are designed to have no titles.”
    are posts like quote, status, link, aside
    If you publish another post with a format not in the above list the issue disappear. As nikeo already said this should be fixed in the next release.

    About twitter widget in the sidebar, try to uncheck
    Customize -> Global Settings -> Responsive Settings ->
    Enable/disable blocks reordering on small devices

    If the problem disappears then is a known problem, and will be fixed in the next customizr release.
    Hope this helps.
    Don’t know about the twitter simple social button, sorry

    syakshe1

    (@syakshe1)

    Sorry for another post but I did have a Quote, which I made a Sticky at the top of the front page. Once I removed it, I got my titles back. The Twitter issues remain though. I do love the theme and hope to get back to where I was soon. Thanks!

    syakshe1

    (@syakshe1)

    @d4z_c0nf: The sidebar Twitter feed works now but still not the Twitter SSB. Thanks for the help!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Front Page blog titles not showing’ is closed to new replies.