• Resolved anup

    (@anup)


    Hi.

    Firstly thanks for creating an awesome theme. This theme has better pagespeed score when used without a cache plugin that i was using till now!!

    My question relates to the the page mentioned. Usually in other themes that I used till now, only the cover and the description is shown in that page. However Miniva theme is:

    1) Not showing the description
    2) Duplicating the story and autoplaying the web-story (in addition to the display of cover.) I don’t want the autoplay to happen.

    Kindly tell me how to correct it. All latest versions in use – WordPress/theme/plugin, php 7.4

    thanks!

    The page I need help with: [log in to see the link]

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

    (@tajam)

    Sorry, this theme is not tested with web stories. It’s a custom post type so it may need a custom template for the content. Could you tell us what other themes do you use?

    Thread Starter anup

    (@anup)

    Hi.

    I used OceanWP theme

    (as an end user, I have no control over the web-story listing page that the google’s web story plugin created.)

    thanks

    Theme Author Tajam

    (@tajam)

    To customize the web story listing page, please create this file: template-parts/content-web-story.php in your theme or child theme, and copy this code:

    <?php do_action( 'miniva_post_before' ); ?>
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    	<?php do_action( 'miniva_post_start' ); ?>
    	<header class="entry-header">
    		<?php the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?>
    	</header>
    	<?php do_action( 'miniva_post_middle' ); ?>
    	<div class="entry-content">
    		<?php echo get_the_excerpt(); ?>
    	</div>
    	<footer class="entry-footer">
    		<?php miniva_entry_footer(); ?>
    	</footer>
    	<?php do_action( 'miniva_post_end' ); ?>
    </article>
    <?php do_action( 'miniva_post_after' ); ?>
    
    Thread Starter anup

    (@anup)

    OMG ! You’re so kind. This is wonderful. Thank you so much!

    https://huelike.com/web/web-stories/

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