Category Archives: Wordpress

Best Fiverr Clone WordPress Theme – Micro Job Script theme for WordPress

Almost all noobs to geek are familiar with the Fiverr.com, World’s most popular micro-job site which allows anyone to buy or post creative gigs, starts from just $5. Earlier it seems to be an impossible to raise a Fiverr like site due to the different modules need but Now you should check out the WordPress Pricerr Theme from SiteMile. Pricerr is best fiverr clone script, not merely an imitation. It’s amazing  they’ve been able to make best fiverr clone wordpress theme that exactly match with Fiverr so closely using the WordPress Theme.

Pricing
Single Licence with lifetime Updates : $69.99
For special deal : CLICK HERE

Pricerr is World’s only and the best fiverr clone theme for WordPress. It is most suitable for small fixed price auctions and micro-jobs websites.It’s a Premium fiverr theme that  transforms regular WordPress blog in to a full-fledged micro job site where sellers can offer price for small price task and the buyers can buy nad make the payment using PayPal,  AlertPay, Authorize.net, and Google in 25 different currencies.It also offers custom payment gateway integration in your currency.
Best Fiverr clone Script theme WordPress

Fiverr Clone WordPress Theme Features

  • User profiles
  • Email notifications
  • Private messaging
  • Google maps in job listings
  • Google Analytics can be inserted
  • Integration of Social medias like Facebook and Twitter

Hide or Remove Title WordPress Twenty Thirteen

Do you want to remove title in WordPress for selected posts and pages without editing any code? Then WordPress title remove Plugin is your answer.You need to install and activate the Hide Title plugin for WordPress. When the plugin is activated, go to the edit screen for the selected post and page. Go to Dashboard and select the Posts or Pages menu that you need to edit. On the edit page, you will see a Hide Title meta box in right side like this

Remove Title WordPress Page

You need to click in this box and click on update or publish post button.Thats all,now the page title will be removed from page or post you have selected. Now this plugin will hide  title on singular page views. But it will still show title on your homepage or other pages, but not on the single page views.This solution can be pretty good if you are creating a simple landing page and you don’t want to show the title.

Hide or Remove Title for All WordPress Posts and Pages

There may be some reason why someone like to hide page title, lets look at how to hide the titles for all WordPress post and pages.

Remove title from Pages and Posts

Goto WordPress Dashboard >> Appearence >> Editor
Comment out the function the_title() by adding “//” before the function in this pages.
page.php (1 occurrences).This will remove the page title from all user created pages.
content.php (2 occurrences). This will remove from index Page, Custom Page,archive Page,search Page,tag page and all posts.

Code to replace
<?php the_title(); ?>
to
<?php //the_title(); ?>

 Hide Title from Pages and Post

If you simply want to hide  title in your pages you can do it. Search engine bot will find the title but it is not displayed to user. It can be done by editing style.css
Goto WordPress Dashboard >> Appearence >> Editor select style.css
Add this code at the end of the line.

Code to Add

.entry-title,.entry-meta{
display: none !important;
}

If you do lots of edits in style.css it can be a mesh in the file and there may be problem when you update worpress theme.You can use companion plugin to manage your css.If you are using jetpack you can get an Edit CSS submenu in Appeareance Menu at WordPress Dashboard.

Remove Search WordPress Twenty Thirteen

Twenty Thirteen theme is responsive theme and  some excellent features.My blog is receiving lot queries in customization for Twenty thirteen theme.So I am writing this tips to disable search box icon from the menu bar header.

Remove Search Bar from Twenty Thirteen Theme

If you need to remove the search box from Twenty Thirteen theme, you need to edit header.php file.
Go to Dashboard  >>  Appearance  >> Editor select  header.php file from right side and comment following piece of code by adding “//” infront of the function get_search_form(); .

<?php get_search_form(); ?>
To
<?php //get_search_form(); ?>

Save the changes by clicking update file.
Now Search box is removed from Twenty Thirteen theme.

Disable WordPress Comments in Twenty Thirteen

By Default wordpress Twenty Thirteen theme has a Leave a reply box at the end of blog to make readers comment on a blog. If you don’t want reader to post comments to your site or if you prefer wordpress to use it as a CMS, rather than a blog,then  you can Disable WordPress Comments .It can be completed removed or can be removed in individual post or page.

Disable Comments in WordPress Completely

Remove Comments in Pages

You can disable comments in page  by editing page.php of your Twenty Thirteen Template
Wordpress Dashboard  >>  Appearance   >> editor  >>  Select Page.php
Comment out this code by adding “//” before comments_template();

php comments_template(); ?>
To
php //comments_template(); ?>

Remove Comments in Posts

You can disable comments by editing single.php of your Twenty Thirteen Template
Wordpress Dashboard >> Appearance >> editor >> Select single.php
Comment out this code by adding // before comments_template();

<?php comments_template(); ?>
To
<?php //comments_template(); ?>

Remove Comment from Certain Post and Pages:

Remove comment for all upcoming posts

WordPress Dashboard >>Settings >> Discussion >> uncheck “Allow people to post comments on new articles”
Direct Link to this :  YOUR-SITE-URL/wp-admin/options-discussion.php
This settings removes leave a reply to new posts that you will publish in future.This does not remove comment from Post that are already Published. You can disable pingbacks and trackbacks if you don’t require.

Disable Comments WordPress Upcoming Post

Remove leave a reply from already publish posts and Pages

WordPress Dashboard>>Posts >> all post and select “Edit” under bulk actions and click apply button >> choose “do not allow” next to comments and hit update button on link
Direct Link to post edit:  YOUR-SITE-URL/wp-admin/edit.php
This will remove comments from the post that is already published.

disable wordpress comments old posts

The process for remove leave a reply from pages is same as for posts insead of post you should  select Pages :

WordPress Dashboard  >>  Pages   >>  All Pages and select “Edit” under bulk actions  and click apply button  >>  choose “do not allow” next to comments and hit update button on the right
Direct Link to Page Edit:  YOUR-SITE-URL/wp-admin/edit.php?post_type=page

This works well for twenty thirteen theme but for some of the themes “comments are closed” text from a WordPress site. You can remove this using the first method in this blog.

Twenty Thirteen Remove Proudly Powered By WordPress

WordPress Default theme Twenty Thirteen and other shows Proudly Powered By WordPress at the end . It is highly recommended that you do not remove this link but if you really want to remove this here is tip how to:

The location of powered by WordPres is in the footer.php file  at site info div  of wordpress twenty thirteen theme. Remove this block of code :

<div>
<?php do_action( ‘twentythirteen_credits’ ); ?>
<a href=”<?php echo esc_url( __( ‘http://wordpress.org/’, ‘twentythirteen’ ) ); ?>” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentythirteen’ ); ?>”><?php printf( __( ‘Proudly powered by %s’, ‘twentythirteen’ ), ‘WordPress’ ); ?></a>
</div><!– .site-info –>

The footer.php  page  of theme is generally located at  wordpress root folder/wp-content/themes/twentythirteen/

You can also edit the page from there  or from
wordpress dashboard > appearance > editor
search  for footer (footer.php) from right panel

Removal of  above code  removes Proudly Powered By WordPress in your theme

WordPress Twenty Thirteen Show Excerpt

Search results already show excerpts (summary of the posts). If you want to show excerpts in tag pages, author pages,homepage and category pages. to show complete post only on individual post pages.You can change the content.php of wordpress twenty thirteen theme.

The content.php page  of theme is generally located at  /wp-content/themes/twentythirteen/
You can directly edit the page from there  or from wordpress dashboard >> appearance >> editor >> select  content.php

You need to change this default code to

<?php if ( is_search() ) : // Only display Excerpts for Search ?>

to

<?php if ( is_search() || is_author() ||  is_tag() ||  is_archive()  || is_home () ) : // display excerpts for search, author,tags, archive,  and, most definitely home ?>

You can remove the particular page in code if you don’t need them there. This code will make WordPress Twenty Thirteen Show Excerpt.