delete homepage slider & customize blog page

Discussion in 'Harrington- A WordPress Business Theme.' started by syed, Sep 5, 2014.

  1. syed

    syed New Member

    Joined:
    Jun 18, 2014
    Messages:
    23
    Likes Received:
    0
    Sir,
    iam using Harrington wordpress theme.

    1) i would like to delete the slider & replace the slide with this code
    <?php
    echo do_shortcode("[metaslider id=...]");
    ?>

    2) how can i replace the slider code without deleting the blue rectangular box around the slider?

    3) i want my blog page to be visible exactly as full width page. i don't want any sidebars, date or admin name.

    4) how can i hide my theme & plugins details if some checks my site on www.wpthemedetector.com it should show like this 'this site doesn't seem to be using wordpress'. how can i display so...
     

    Attached Files:

    • 01.jpg
      01.jpg
      File size:
      254.9 KB
      Views:
      3
    • 02.jpg
      02.jpg
      File size:
      268.5 KB
      Views:
      5
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Please provide URL of website.
    You cannot keep the rectangular box because it is sliders part.
    For fourth no Issue please use plugins available in WordPress.org
    Thanks & Regards
    Pramod
     
  3. syed

    syed New Member

    Joined:
    Jun 18, 2014
    Messages:
    23
    Likes Received:
    0
    Sir,
    >> for the 1st issue, can you send me the line no.'s to delete/replace it with the custom code
    >> what about 3rd issue ?
    >> for 4th issue, please recommend me any plugin name if its premium also so that i can purchase that plugin & hide my details
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    1. Delete or comment from line no. 18 to 209 in front-page.php file.
    2. Use your short code to display blog on that space.
    3. Use Hide My WP plugin to hide your details.
    http://codecanyon.net/item/hide-my-wp-no-one-can-know-you-use-wordpress/4177158
    4. Use following CSS in Custom CSS to hide date and admin bar on blog page.
    Code:
    .content-bar .post .post_meta {
    display: none;
    }
    That will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  5. syed

    syed New Member

    Joined:
    Jun 18, 2014
    Messages:
    23
    Likes Received:
    0
    Sir, for the 3rd issue date, admin name is hidden but the sidebars is visible
    i don't want any sidebars
    i want my blog page to be a full width page
     
  6. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Please provide URL of website.
    Thanks & Regards
    Pramod
     
  7. syed

    syed New Member

    Joined:
    Jun 18, 2014
    Messages:
    23
    Likes Received:
    0
    Sir, in this screenshot i have shown that i don't want any sidebar but my blog page should visible as full width page
     

    Attached Files:

    • 02.jpg
      02.jpg
      File size:
      248 KB
      Views:
      8
  8. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    goto,
    (Appearance -> Editor -> single.php)
    and replace all code with this code.
    PHP:
    <?php
    /**
    * The Template for displaying all single posts.
    *
    * @package WordPress
    * @subpackage Harrington
    * @since Harrington 1.0
    */
    ?>
    <?php get_header
    (); ?>
    <div class="page-container">
    <div class="container_24">
    <div class="grid_24">
    <div class="page-content">
    <div class="page_heading_wrapper">
    <div class="page_heading single"><?php inkthemes_breadcrumbs(); ?></div>
    </div>
    <div class="grid_24 alpha">
    <div class="content-bar">         
                <!-- Start the Loop. -->
                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                <!--Start post-->
                <div class="post">         
                <h1 class="post_title"><?php the_title(); ?></h1>
                <ul class="post_meta">
                    <li class="posted_on"><span></span><?php echo get_the_time('M, d, Y'?></li>
                      <li class="posted_by"><span></span><?php the_author_posts_link(); ?></li>
                      <li class="posted_in"><span></span><?php the_category(', '); ?></li>
                      <li class="post_comment"><?php comments_popup_link('No Comments.''1 Comment.''% Comments.'); ?></li>
                  </ul>
                <div class="post_content">
                <?php the_content(); ?>
                    </div>             
                  <?php if (has_tag()) { ?>
              <div class="tag">
                <?php the_tags(POST_TAGGED_WITH,','); ?>
              </div>
              <?php ?>             
                </div>
            <?php endwhile;
            else: 
    ?>
                <div class="post">
                    <p>
                        <?php echo SORRY_NO_POST_MATCHED?>
                    </p>
                </div>
            <?php endif; ?>
                  <!--End post-->
                <!--End Post--> 
            <div class="clear"></div>
            <nav id="nav-single"> <span class="nav-previous">
            <?php previous_post_link('%link''<span class="meta-nav">' .PREV_POST'</span>'); ?>
            </span> <span class="nav-next">
            <?php next_post_link('%link''<span class="meta-nav">'.NEXT_POST.'</span>'); ?>
            </span> </nav>
        <!--Start Comment box-->
          <?php comments_template(); ?>
          <!--End Comment box-->         
              </div>
                  </div>
    </div>
    </div>
    <div class="clear"></div>
    </div>
    </div>
    <?php get_footer(); ?>
    Thanks & Regards
    Pramod
     

Share This Page