• Resolved pluplik

    (@pluplik)


    Hi.
    Couldn’t find any info about the lastest version 1.1.9
    I have 1.1.5 and as always , afraid to update.
    another question. can you disable the summarize page text , so it would not show ‘doubled” in the header and body?
    Is this nessesary? or is it got fixed in this new version?

    thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author tubegtld

    (@tubegtld)

    You should be fine to update to 1.1.9

    What’s shown in the page masthead is actually the page “excerpt” using the_excerpt().

    This is intended for using the actual post_excerpt value as a summary of the page content.

    There are (at least) three approaches here. You could:

    1) Add a short custom excerpt for the page in admin that summarizes the content and will appear in the header. This is the “suggested” approach for cosmetic and usability purposes.

    2) Use CSS to hide that area of the page…

    .page-masthead .excerpt {
        display: none;
    }

    NOTE: You can scope this using body tag classes, etc.

    3) Add a filter to the excerpt to return false…

    add_filter('the_excerpt', '__return_false');

    NOTE: This may have collateral damage to other parts of the page (e.g. meta descriptions) so please scope accordingly.

    • This reply was modified 6 years, 11 months ago by tubegtld.
    Thread Starter pluplik

    (@pluplik)

    Awesome! thanks ??

    Theme Author tubegtld

    (@tubegtld)

    Please mark as resolved if this is working for you.

    Thread Starter pluplik

    (@pluplik)

    Resolved.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Upgrade to 1.1.9’ is closed to new replies.