Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,
    you can open content-entry.php and locate

    		<a href="<?php the_permalink(); ?>" class="read-more"><?php esc_html_e( 'Continue Reading', 'ci-theme' ); ?></a>
    

    then change it to

    		<a target="_blank" href="<?php the_permalink(); ?>" class="read-more"><?php esc_html_e( 'Continue Reading', 'ci-theme' ); ?></a>
    

    Try installing the WP Editor plugin to enhance the default editor and then navigate to the /themes/olsenlight/ folder to find the file.
    If you decide to proceed with this modification I would suggest you create a child theme, copy over the files you are editing and make the modifications there. This will allow your changes to survive future theme updates. If you directly edit the theme’s files, all changes will be lost once you update.

    Have a look at this guide to learn more about child themes and how to create one. http://www.cssigniter.com/ignite/beginners-guide-child-themes/

    • This reply was modified 7 years, 2 months ago by Fotis.
    Thread Starter winowhores

    (@winowhores)

    That worked. Thank you so much.

    One more question. Is there a way to make it so the title of the posts are not links, forcing then to click the read more button?

    Hi there,
    you are welcome!
    You can change in the same file (content-entry.php)

    		<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    

    with this
    <?php the_title(); ?>

    Let me know if this helps

    Thread Starter winowhores

    (@winowhores)

    Worked! Thanks!

    Fotis

    (@markwaregr)

    Glad I could help!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Continue Reading -Open in New Tab’ is closed to new replies.