Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Contributor Ketan Patel

    (@patelketan)

    Hello,

    Thanks for reaching here.

    Please first check your side our plugin activated.

    1.) If you have used template file please add this code in your template file.
    <?php echo do_shortcode('[popup_anything id="14292"]'); ?>

    2.) If you have used the WordPress dashboard please add this code on your page.
    [popup_anything id="14292"]

    Let me know if you have any issue.

    Thanks,

    • This reply was modified 3 years, 8 months ago by Ketan Patel.
    • This reply was modified 3 years, 8 months ago by Ketan Patel.
    Thread Starter Christian Bulota

    (@kitebud)

    Hi Ketan,

    thanks for your reply.

    Yes the plugin is activated.

    Where exactly should I add this code ?

    <?php echo do_shortcode(‘[popup_anything id=”14292″]’); ?>

    Plugin Contributor Ketan Patel

    (@patelketan)

    Hello,

    Please add our previous code in your Search template file.
    Refer screenshot.
    https://www.awesomescreenshot.com/image/5212538/83eeb713941255d19454c85a8a003f5e

    Your problem still now, please find our website and join live chat.

    Thanks,

    Thread Starter Christian Bulota

    (@kitebud)

    <?php
    /**
     * Search results page
     *
     * @package shaka-pt
     */
    
    get_header();
    
    $shaka_sidebar = get_field( 'sidebar', (int) get_option( 'page_for_posts' ) );
    
    if ( ! $shaka_sidebar ) {
    	$shaka_sidebar = 'left';
    }
    
    get_template_part( 'template-parts/page-header' );
    
    ?>
    
    	<div id="primary" class="content-area  container">
    		<div class="row">
    			<main id="main" class="site-main  masonry  col-xs-12<?php echo 'left' === $shaka_sidebar ? '  col-lg-9  col-lg-push-3' : ''; ?><?php echo 'right' === $shaka_sidebar ? '  col-lg-9' : ''; ?>" role="main">
    				<?php if ( have_posts() ) : ?>
    
    					<div class="grid  js-pt-masonry  row">
    						<div class="grid-sizer  col-xs-12  col-sm-6  col-lg-4"></div>
    						<?php /* Start the Loop */ ?>
    						<?php while ( have_posts() ) : the_post(); ?>
    
    							<?php get_template_part( 'template-parts/content', 'search' ); ?>
    
    						<?php endwhile; ?>
    					</div>
    
    					<?php
    						the_posts_pagination( array(
    							'prev_text' => '<i class="fa  fa-long-arrow-left"></i>',
    							'next_text' => '<i class="fa  fa-long-arrow-right"></i>',
    						) );
    					?>
    
    				<?php else : ?>
    
    					<?php get_template_part( 'template-parts/content', 'none' ); ?>
    
    				<?php endif; ?>
    			</main>
    
    			<?php get_template_part( 'template-parts/sidebar', 'blog' ); ?>
    
    		</div>
    	</div>
    
    <?php get_footer(); ?>
    Thread Starter Christian Bulota

    (@kitebud)

    This is my search.php template file above. can you tell me which line should I add the code?

    Plugin Support Riddhi Shukla

    (@ridhimashukla)

    Hi Christian,

    Thank you for reaching us…

    You have to add this code in your active theme “template-parts/content-search.php” file.

    Also, you can try this code between this while loop,

    <?php while ( have_posts() ) : the_post(); ?>
      <?php get_template_part( 'template-parts/content', 'search' ); ?>
      <?php echo do_shortcode(‘[popup_anything id=”14292″]’); ?>
    <?php endwhile; ?>

    Please check and let me know if anything.

    Thread Starter Christian Bulota

    (@kitebud)

    <?php
    /**
     * The template part for displaying results in search pages.
     *
     * Learn more: http://codex.wordpress.org/Template_Hierarchy
     *
     * @package shaka-pt
     */
    
    $blog_columns = get_theme_mod( 'blog_columns', 6 );
    
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class( array( 'grid-item', 'col-xs-12', 'col-sm-6', esc_attr( sprintf( 'col-lg-%s', $blog_columns ) ) ) ); ?>>
    	<!-- Featured Image -->
    	<?php if ( has_post_thumbnail() ) : ?>
    		<header class="hentry__header">
    			<a class="hentry__featured-image" href="<?php the_permalink(); ?>">
    				<?php the_post_thumbnail( 'post-thumbnail', array( 'class' => 'img-fluid' ) ); ?>
    			</a>
    		</header><!-- .hentry__header -->
    	<?php endif; ?>
    
    	<!-- Content Box -->
    	<div class="hentry__content  entry-content">
    		<!-- Date -->
    		<a href="<?php the_permalink(); ?>"><time class="hentry__date" datetime="<?php the_time( 'c' ); ?>"><?php echo get_the_date(); ?></time></a>
    		<!-- Author -->
    		<span class="hentry__author"><i class="fa  fa-user"></i> <?php echo esc_html__( 'By' , 'shaka-pt' ) . ' ' . get_the_author(); ?></span>
    		<!-- Content -->
    		<?php the_title( sprintf( '<h2 class="hentry__title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
    		<p>
    			<?php echo wp_kses_post( get_the_excerpt() ); ?>
    		</p>
    		<p>
    			<a href="<?php echo esc_url( get_permalink() ); ?>" class="more-link"><?php printf( esc_html__( 'Read more %s', 'shaka-pt' ), the_title( '<span class="screen-reader-text">', '</span>', false ) ); ?></a>
    		</p>
    		<?php if ( has_category() || comments_open( get_the_ID() ) ) : ?>
    			<div class="hentry__meta  meta">
    				<!-- Categories -->
    				<?php if ( has_category() ) : ?>
    					<span class="meta__item  meta__item--categories"><?php the_category( ' ' ); ?></span>
    				<?php endif; ?>
    				<!-- Comments -->
    				<?php if ( comments_open( get_the_ID() ) ) : // Only show comments count if the comments are open. ?>
    					<span class="meta__item  meta__item--comments"><a href="<?php comments_link(); ?>"><?php ShakaHelpers::pretty_comments_number(); ?></a></span>
    				<?php endif; ?>
    			</div><!-- .hentry__meta -->
    		<?php endif; ?>
    	</div><!-- .hentry__content -->
    </article><!-- #post-## -->
    
    Thread Starter Christian Bulota

    (@kitebud)

    Hi Riddhi,

    Above is my content-Search.php code.

    Can you tell me where to add the <?php echo do_shortcode('[popup_anything id="14292"]'); ?> in those lines?

    Also, I tried your code in the search.php between the while loop but there was a syntax error. I think I fixed the error but it doesn’t work either.

    Plugin Contributor Ketan Patel

    (@patelketan)

    <?php
    /**
     * The template part for displaying results in search pages.
     *
     * Learn more: http://codex.wordpress.org/Template_Hierarchy
     *
     * @package shaka-pt
     */
    
    $blog_columns = get_theme_mod( 'blog_columns', 6 );
    
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class( array( 'grid-item', 'col-xs-12', 'col-sm-6', esc_attr( sprintf( 'col-lg-%s', $blog_columns ) ) ) ); ?>>
    	<!-- Featured Image -->
    	<?php if ( has_post_thumbnail() ) : ?>
    		<header class="hentry__header">
    			<a>">
    				<?php the_post_thumbnail( 'post-thumbnail', array( 'class' => 'img-fluid' ) ); ?>
    			</a>
    		</header><!-- .hentry__header -->
    	<?php endif; ?>
    
    	<!-- Content Box -->
    	<div class="hentry__content  entry-content">
    		<!-- Date -->
    		<a>"><time class="hentry__date" datetime="<?php the_time( 'c' ); ?>"><?php echo get_the_date(); ?></time></a>
    		<!-- Author -->
    		<span class="hentry__author"><i class="fa  fa-user"></i> <?php echo esc_html__( 'By' , 'shaka-pt' ) . ' ' . get_the_author(); ?></span>
    		<!-- Content -->
    		<?php the_title( sprintf( '<h2 class="hentry__title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
    		<p>
    			<?php echo wp_kses_post( get_the_excerpt() ); ?>
    		</p>
    		<?php echo do_shortcode('[popup_anything id="14292"]'); ?>
    		<p>
    			<a>" class="more-link"><?php printf( esc_html__( 'Read more %s', 'shaka-pt' ), the_title( '<span class="screen-reader-text">', '</span>', false ) ); ?></a>
    		</p>
    		<?php if ( has_category() || comments_open( get_the_ID() ) ) : ?>
    			<div class="hentry__meta  meta">
    				<!-- Categories -->
    				<?php if ( has_category() ) : ?>
    					<span class="meta__item  meta__item--categories"><?php the_category( ' ' ); ?></span>
    				<?php endif; ?>
    				<!-- Comments -->
    				<?php if ( comments_open( get_the_ID() ) ) : // Only show comments count if the comments are open. ?>
    					<span class="meta__item  meta__item--comments"><a>"><?php ShakaHelpers::pretty_comments_number(); ?></a></span>
    				<?php endif; ?>
    			</div><!-- .hentry__meta -->
    		<?php endif; ?>
    	</div><!-- .hentry__content -->
    </article><!-- #post-## -->
    • This reply was modified 3 years, 8 months ago by Ketan Patel.
    Plugin Contributor Ketan Patel

    (@patelketan)

    Hello,

    Please replace the above “content-Search.php” file.

    Your problem still now, please find our website and join live chat because I need to see your backend part.

    Thanks,

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Hiding Shortcodes from Search Results Page’ is closed to new replies.