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...
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
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
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
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
Sir, in this screenshot i have shown that i don't want any sidebar but my blog page should visible as full width page
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