Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bigtnt

    (@bigtnt)

    Thanks learnrr, unfortunately in case of tortuga theme there is no reference to featured images in content.php
    I don’t speak php any good haha. I will throw you whole content.php and maybe you will be able to figure this out 🙂

    The template for displaying articles in the loop with full content:

    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    
    		<?php merlin_post_image_archives(); ?>
    
    		<header class="entry-header">
    
    			<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
    
    			<?php merlin_entry_meta(); ?>
    
    		</header><!-- .entry-header -->
    
    		<div class="entry-content clearfix">
    			<?php the_content( esc_html__( 'Read more', 'merlin' ) ); ?>
    		</div><!-- .entry-content -->
    
    		<footer class="entry-footer">
    
    			<?php merlin_entry_footer(); ?>
    
    		</footer><!-- .entry-footer -->
    
    	</article>

    In this case it will be probably prat:

    <?php merlin_post_image_archives(); ?>

    that gets images to be displayed, but I can’t figure out where and how those are stored.

    I will take a deeper look into this later this afternoon.

    Regards

    Thread Starter bigtnt

    (@bigtnt)

    Thanks @layerthemes for quick response.

    There was a <p>some text</p> element, but it was opened and closed properly. After deleting widget and retyping its content exactly the same as it was error vanished. Quite strange to be honest, anyway topic solved.

Viewing 2 replies - 1 through 2 (of 2 total)