• Resolved myhero

    (@myhero)


    Hi there,

    I’d like to do two things,

    1. change all EXISTING posts from billboard to normal (I’ve already made the change is theme settings for NEW posts) and;

    2. Add a post excerpt that displays on a post (below title), I don’t see the option to do that so I imagine this will require code to be added to a post template file. I’m sure this exists – would you consider adding this to a theme update?

Viewing 1 replies (of 1 total)
  • Theme Author acosmin

    (@acosmin)

    1. You can add delete_post_meta_by_key( 'ac_post_layout_options' ); in functions.php, at the bottom. Then go refresh your websites homepage and after that remove that code from functions.php

    2. You could open ../post-templates/content-single.php, find the_content(); and right above it add:

    echo '<p style="font-weight:bold; font-size: 1.122em;">' . get_the_excerpt() . '</p>';

Viewing 1 replies (of 1 total)
  • The topic ‘Change all existing posts from Billboard to Normal’ is closed to new replies.