• Hi,
    I have been testing the InStorm theme on my staging site and would very much like to make it live on a production site.
    However, I need to fix some bugs first and also would like to know how to enable certain features.

    1. Excerpts are not showing up on single posts or blog posts. How to display excerpt? http://prnt.sc/20xt73x
    2. Display Post Update date on single posts or articles alongside the published date. Usually, I can enable post update date using CSS in current and previously used Themes.
    3. Is there a way we can add shadow to the Text inside featured widgets on the homepage? http://prnt.sc/20xt8b6
    On white backgrounds, the text won’t show.
    4. Is there a way we can implement dark mode?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    1) The image link doesn’t work, but if you want the excerpt to show up above the content on single posts, you need to edit single.php on line 30 where it says:

    
    <?php the_content(); ?>
    

    Add this where you want the excerpt to show up:

    
    <?php the_excerpt(); ?>
    

    2) Edit single.php again and locate this on line 13:

    
    <?php the_time( get_option('date_format') ); ?>
    

    Add the required code there. Or try a plugin like: https://wordpress.org/plugins/wp-last-modified-info/ or try this code in functions.php: https://www.wpbeginner.com/wp-tutorials/display-the-last-updated-date-of-your-posts-in-wordpress/

    3) Image doesn’t load again so can’t really see what’s going on

    4) Currently that are no plans for a dark mode, but I’ve noted it as a request

    Thread Starter sarangsss29

    (@sarangsss29)

    Hi @alxmedia
    Thanks for the reply. I did not receive any notification to your reply so did not get back to you earlier.

    As for the 1st and second query, I have solved it. Thanks!

    As for the 3rd:
    Is there a way we can add shadow to the Text inside featured widgets on the homepage?
    Here is a new screenshot:
    https://snipboard.io/RsCg8Q.jpg

    If we can add shadow to the text, or an image filter, then the title of the post would show up even in light background or featured image.

    4) Currently that are no plans for a dark mode, but I’ve noted it as a request
    No problem.

    Theme Author Alexander Agnarson

    (@alxmedia)

    Try this for the text shadow:

    
    .featured-title,
    .highlights-title { text-shadow: 0 0 20px #000; }
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘A few bugs / feature requests’ is closed to new replies.