Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8460111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:31:02+00:00 2026-06-10T13:31:02+00:00

I am trying to make few changes in a wordpress page. I am able

  • 0

I am trying to make few changes in a wordpress page. I am able to remove few things like author name and “read more” from the page but I think I have reached my limit and can’t customize more. Here is the screenshot of the page :

enter image description here

I want to remove the no results found and and comment below that. Tried to understand the code but unable to do it. Here is the code of the page :

<?php 
/*
Template Name: Blog Page
*/
?>
<?php 
$et_ptemplate_settings = array();
$et_ptemplate_settings = maybe_unserialize( get_post_meta($post->ID,'et_ptemplate_settings',true) );

$fullwidth = isset( $et_ptemplate_settings['et_fullwidthpage'] ) ? (bool) $et_ptemplate_settings['et_fullwidthpage'] : false;

$et_ptemplate_blogstyle = isset( $et_ptemplate_settings['et_ptemplate_blogstyle'] ) ? (bool) $et_ptemplate_settings['et_ptemplate_blogstyle'] : false;

$et_ptemplate_showthumb = isset( $et_ptemplate_settings['et_ptemplate_showthumb'] ) ? (bool) $et_ptemplate_settings['et_ptemplate_showthumb'] : false;

$blog_cats = isset( $et_ptemplate_settings['et_ptemplate_blogcats'] ) ? (array) $et_ptemplate_settings['et_ptemplate_blogcats'] : array();
$et_ptemplate_blog_perpage = isset( $et_ptemplate_settings['et_ptemplate_blog_perpage'] ) ? (int) $et_ptemplate_settings['et_ptemplate_blog_perpage'] : 10;
?>

    <?php get_header(); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> 
        <div class="entry<?php if($fullwidth) echo(' no_sidebar');?>">
            <div class="entry-top"></div>

            <?php get_template_part('includes/share'); ?>

            <div class="post clearfix">
                <div class="content clearfix">

                    <h1 class="title"><?php the_title(); ?></h1>

                    <div class="clear"></div>

                    <?php $thumb = '';
                          $width = 184;
                          $height = 184;
                          $classtext = '';
                          $titletext = get_the_title();

                          $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'thumb');
                          $thumb = $thumbnail["thumb"]; ?>

                    <?php if($thumb <> '' && get_option('lightbright_page_thumbnails') == 'on') { ?>                        
                        <div class="thumb">
                            <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>

                            <span class="overlay"></span>
                        </div> <!-- end .thumb -->
                    <?php }; ?>                 

                    <?php the_content(); ?>
                    <?php wp_link_pages(array('before' => '<p><strong>'.esc_html__('Pages','LightBright').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

                    <div id="et_pt_blog">
                        <?php $cat_query = ''; 
                        if ( !empty($blog_cats) ) $cat_query = '&cat=' . implode(",", $blog_cats);
                        else echo '<!-- blog category is not selected -->'; ?>
                        <?php 
                            $et_paged = is_front_page() ? get_query_var( 'page' ) : get_query_var( 'paged' );
                        ?>
                        <?php query_posts("showposts=$et_ptemplate_blog_perpage&paged=" . $et_paged . $cat_query); ?>
                        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

                            <div class="et_pt_blogentry clearfix">
                                <h2 class="et_pt_title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

                                <p class="et_pt_blogmeta"><?php esc_html_e('Posted','LightBright'); ?> <?php esc_html_e('by','LightBright'); ?> <?php the_author_posts_link(); ?> <?php esc_html_e('on','LightBright'); ?> <?php the_time(get_option('lightbright_date_format')) ?> <?php esc_html_e('in','LightBright'); ?> <?php the_category(', ') ?> | <?php comments_popup_link(esc_html__('0 comments','LightBright'), esc_html__('1 comment','LightBright'), '% '.esc_html__('comments','LightBright')); ?></p>

                                <?php $thumb = '';
                                $width = 184;
                                $height = 184;
                                $classtext = '';
                                $titletext = get_the_title();

                                $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
                                $thumb = $thumbnail["thumb"]; ?>

                                <?php if ( $thumb <> '' && !$et_ptemplate_showthumb ) { ?>
                                    <div class="et_pt_thumb alignleft">
                                        <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
                                        <a href="<?php the_permalink(); ?>"><span class="overlay"></span></a>
                                    </div> <!-- end .thumb -->
                                <?php }; ?>

                                <?php if (!$et_ptemplate_blogstyle) { ?>
                                    <p><?php truncate_post(550);?></p>
                                    <a href="<?php the_permalink(); ?>" class="readmore"><span><?php esc_html_e('read more','LightBright'); ?></span></a>
                                <?php } else { ?>
                                    <?php
                                        global $more;
                                        $more = 0;
                                    ?>
                                    <?php the_content(); ?>
                                <?php } ?>
                            </div> <!-- end .et_pt_blogentry -->

                        <?php endwhile; ?>
                            <div class="page-nav clearfix">
                                <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
                                else { ?>
                                     <?php get_template_part('includes/navigation'); ?>
                                <?php } ?>
                            </div> <!-- end .entry -->
                        <?php else : ?>
                            <?php get_template_part('includes/no-results'); ?>
                        <?php endif; wp_reset_query(); ?>

                    </div> <!-- end #et_pt_blog -->

                    <?php edit_post_link(esc_html__('Edit this page','LightBright')); ?>

                </div> <!-- end .content -->

                <div class="entry-bottom-top"></div>


            </div> <!-- end .post -->

            <div class="entry-bottom"></div>
        </div> <!-- end .entry -->
    <?php endwhile; endif; ?>
    </div> <!-- end #main-area -->

    <?php if (!$fullwidth) get_sidebar(); ?>

<?php get_footer(); ?>

Can anyone please help me to make changes in this code to remove the unnecessary part of the page?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:31:03+00:00Added an answer on June 10, 2026 at 1:31 pm

    <?php get_template_part('includes/no-results'); ?>

    Replace this part of your page with your desire content for “No Results” or changet the no-results template in include.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm trying to make my site with a few languages. Every page includes config-file,
I am trying to make a quote page. I would like it to show
I am trying to make a few effects in a C+GL game. So far
I'm trying to make a ticketing system, but there are a few ways of
I'm using TCPDF in CakePHP and trying to make some background (grey) for few
Trying to make the infamous checkall checkbox for dynamically created rows from a MySQL
I have a service level methods, which make few changes to database and I
Coming from a different development environment (Java, mostly) I'm trying to make analogies to
At this moment I cannot make changes to the code behind for a few
I want to write a few unit tests that do not make any changes

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.