Showing posts with label custom wordpress development. Show all posts
Showing posts with label custom wordpress development. Show all posts

Monday, 6 March 2017

Use plugins to remove the Author & Date info from WP posts

By default, most of the WordPress themes will display a set of metadata on the blog posts published in the past. This usually includes at least the author name and the date on which the post was published. This information is useful for the readers but sometimes there are certain instances where the blogger might want to delete or update this information.

In this article, you would be reading about how Wordpress theme development can sort out this process. There are two different ways which would help you in this situation: Using a dedicated plugin or doing it manually by tweaking by your current theme files. If you don't have much technical know-how, hire a skilled & knowledgeable WordPress developer who will help you accomplish this process.

How to remove Author & Date information using a Plugin



If your theme doesn't have a Divi's functionality, you can take help of the plugin. The following two plugins which will assist you in this task. Both these offer slightly different functionality, so you can choose the one that best suits your needs.

1. WP Meta and Date Remover

This plugin enables you to remove both the author and date information from all the of the posts that too in one go. Once the plugin is installed & activated, all the meta info is automatically removed. It uses two methods to remove the data: hiding it from the front-end by using CSS and then removing it from the backend via PHP.

Key features:

Gets installed quickly and easy to setup.

Hides information from both the front & back ends.

Price: FREE


2. WP Old Post Date Remover


The plugin is specifically designed to remove date information only. This plugin comes in handy if you have lots of evergreen content or a website which is not updated regularly. If you like to keep the date only on the newer posts, you can choose the number of days you want the date to be displayed for.

Key Features:

Easy to install & quick to set up

Comes with an option to display the date on newer posts.

Price: FREE

How to Remove Author and Date Information Manually

1. Add CSS Using Jetpack


If you install Jetpack, then you can gain access to the Custom CSS tab where you can add the relevant code. But first, you need to activate the tab present in the Jetpack “Settings” screen. In your dashboard, select Jetpack, choose “Settings”. This would result in opening a new screen where you have to select “Appearance” tab and the scroll down to the Custom CSS button.

2. Delete Code From Your Theme’s Files

Another option is to delete the lines entirely from your theme files. While making the edits to your theme files, using the child theme and backing up your site prior to making changes. It's also good to ask your theme author which files contain the author and date information.

Summing Up


The above-mentioned points will help you in removing the Author and date information from the existing blog posts.

Wednesday, 23 November 2016

How A Custom WordPress Theme Procures You A Unique Online Identity


As soon as you initiate your online venture, you must always consider the importance of a customized WordPress theme design. Incorporating a custom theme on your website works as a magnet to attract more visitors. This is highly beneficial, especially if it is a business website.

WordPress is the most popular blogging platform known today. Along with serving as a primary tool for blogging, the platform features wonderful functions like custom Wordpress theme development and much more. There is more than an individual can use to optimize their online website. WordPress is undeniably the best Content Management Systems available today. Most of all, the powerful system is very easy to use and you will never have any issue in uploading new content, all by yourself.



In addition, WordPress CMS has already been proven and tested by a lot of users from around the world. There are many good reasons as to why most of the website owners prefer WordPress in comparison with other content management systems. The primary reason for website owners opting for WordPress is because they always strive to deliver the best services in the field.

Generally, a business owner can simply choose from the diverse WordPress theme designs and layouts. But the concern is that the designs are already being used by thousands of websites. So, you can hire WordPress developer and save yourself from this glitch. This is a big step towards achieving a unique identity on the internet. The customization process will be undertaken by the developer you hire. By achieving an all-exclusive website, you will be able to make a mark on the customers and keep the brand reputation strong against your competitors. Always remember that it is the distinguishing identity that would ultimately help you flourish your online presence and enable better returns.

Applying an apt WordPress theme can sometimes be a bit of a trouble, especially if you have made a lot of modifications in your site content. Although it is ease to take care of in most of the cases. Yet, you can consult the developer you hire for the best results. Getting a professional to get the job done can help save you a lot of time and relieve you from unnecessary efforts. Once you narrate your requirements to the developer, you can see that you are getting exactly what you are looking for. Moreover, you can always pool in your thoughts whenever necessary.

As soon as you utilize your custom WordPress theme development, you can count yourself among the most visionary webmasters. The level of uniqueness you get from a custom development is incomparable to any other WordPress theme out there. Some major features that custom templates offer are customizable header, color scheme, background display, icons, buttons, navigation, control keys, and overall layout.

Thursday, 1 January 2015

Allowing Your Visitors to Use Custom Post filters in Your Genesis Theme

Recently, I worked on an project and caught with an idea that I should share the case with. One of my clients wanted to use the custom post filter in his genesis theme to get rid of the “post” navigation since he was running a review website. And its justifiably so since it seems misleading to the audience because they aren't reading the actual posts but only reviews.


One of the best things about genesis framework is that its flexible enough to serve the diverse needs of its users at the time of custom WordPress development. Genesis comes with rich “filter” functions under the theme settings area, which lets you place the desirable text on the basis of the taxonomy (terms/categories/tags) at the end of the index page.

Altering this text within the genesis framework isn't an uphill battle. All you need is simply go to your latest Genesis (v1.6) wherein it's quite easy to filter older/newer and next/previous text in the post navigation.


Getting The Grips of Older / Newer Post Navigation Filter

One can easily perform modifications within the Genesis with the help pf the functions that reside under the Genesis Theme Settings. Exploring this particular area you'll assess Content Archives, where there is an option called Post Navigation Technique”, already set as Older/Newer. Here, the default output is “Older Posts and “Newer Posts”, and in order to filter this, the below mentioned code should be added to your child theme's functions.php file. Here I have changed the example as to read Older and Newer Reviews.

add_filter( 'genesis_older_link_text', 'gt_review_older_link_text' );
function gt_review_older_link_text() {
$olderlink = '« Older Reviews';
return $olderlink;
}
add_filter( 'genesis_newer_link_text', 'gt_review_newer_link_text' );
function gt_review_newer_link_text() {
$newerlink = 'Newer Reviews »';
return $newerlink;
}

Previous / Next Post Navigation Filter

This filter is just like the one we have just mentioned above except that it runs when the “Select Post Navigation Technique” which we find under the Content Archive is set to Previous/Next instead of Older/Newer. Here also we are getting a default output, which is “Previous Posts” and “Next Posts”. To filter this, we have to add the following code within the functions.php file which you can get inside the child theme. In this example too we have edited it to Read Previous and Next Reviews.

add_filter( 'genesis_prev_link_text', 'gt_review_prev_link_text' );
function gt_review_prev_link_text() {
$prevlink = '« Previous Reviews';
return $prevlink;
}
add_filter( 'genesis_next_link_text', 'gt_review_next_link_text' );
function gt_review_next_link_text() {
$nextlink = 'Next Reviews »';
return $nextlink;
}

And that's all you have to do. See pretty easy right?

Genesis is a great framework with some truly astonishing settings that help you create a website that helps you serve your client's needs efficiently. Its customization abilities are unique and they allow you give your website and its readers what is actually useful to them.

However, if you want to learn some more methods and ways to filter custom posts than you can rely upon some handy plugins like Beautiful Taxonomy Filters . The plugin can be described absolutely dynamic when it comes to add filtering to your custom post types archives based on taxonomies. The plugin is extremely useful to filter CPTs in the manner most effective.

To know more about this plugin, Beautiful Taxonomy Filters allows you alter rules to create pretty filter URLs by eliminating the need to use JavaScript. It helps you spruce up your custom posts type archives by allowing visitors filter posts on the basis of their terms or categories. The plugin does everything for you in the most seamless way. The plugin works automatically, without having any need to use JavaScript, and the best part is it is based on WordPress Plugin Boilerplate which allows you organize the codebase using the object-oriented approach.

The plugin is capable enough to handle and include as many as filters. However, if you have post type with varied taxonomies, you can better keep out those who aren't useful for filtering.

Some of the other highlighted features include:

  • Active filtering on any registered public custom post type.
  • Keep those taxonomies out you don't want your visitors to filter on
  • Comes complete with functional filter component which you can put in your theme.
  • Visitors can be presented with the information regarding their current active filtering.
  • Integrated with custom GET parameters.
  • Additional filters, settings, and actions to fine tune the filter module behavior.

The plugin provides a convenient and fast way of adding multiple taxonomies to filter custom post types archives. One can also easily extend its capabilities and actions to make it more compelling and versatile. I personally have tested this plugin and found it to be extremely great in the way it helped me to achieve my goals. So, you can also use it whenever the needs arise. It will not disappoint you for sure. Even if you are not confident about your skills you can better hire a WordPress developer, who will deploy his skills and knowledge to give you exactly what you have in your mind in an efficient manner. 

Tuesday, 5 August 2014

How experts guidance can ensure online success for WordPress?

Online presence is quite imperative for a corporate house. Whether it's maintaining regular blogs or ensuring great ease for handling a website, open source CMS like WordPress is just perfect.

Setting up a website is not difficult, but you need to follow some effective strategies to enhance its online success. These strategies may include updated web content, easy functionalities, trendy visual appearance etc.

If you want to add sizzling and trendy features to your site and update the appearance of your website, then Custom WordPress Development Company is great for you. You can hire some development company to make your WP site look more impressive and appealing, and easily accessible or ask them to add high quality content and keep it updated.


Why Custom WP development services are required?

These services offer amazing technical support, one can use them to create a WP site or revamp their site. It allows one to customize their site in a desired way and meet their business goals with ease. Dealing with developers who have expertise in customizing themes and templates on WP, can ensure better and effective results.
  • Knowing the importance of visual appearance, it is essential to keep a site updated with trendy and captivating designs. By opting theme customization you can enhance the complete look and feel of your website and make it appear more impressive, which can help attract potential viewers to your site.
  • Simple and efficient functions can further enhance a website. A site that is customized by skilled WP developers allows the admin to make content posting and modification a breeze. You can ask the hired company to develop some required plugins that can help you add great functionalities to your site.
  • When we talk about web, SEO is vitally important for any online business. Efficient SEO can help you attract potential traffic to your site. And, web development professionals can help you create an optimized WordPress site with better SEO.
  • Since, professionals are highly experienced and familiar with the latest designing trends, they can provide you with outstanding designs. They can help you create a responsive design that could be easily operable on different devices.
Users would love to visit a site again if they get quality content in an impressive layout and user-friendly interface. You can use these services to customize your site with fancy designs and to add desired fluff.

Custom WP development services can be availed from anywhere across the world. There are truckloads of web development companies available in the market that features skilled and experienced web designers and developers, who can accomplish your project with in time line and that too without compromising on its quality. They follow a great framework and their experts strives hard to meet their client requirements.

Now, understanding that how a web development company can help you achieve desired goals, it is also imperative to hire a reputed and honest company. It is advisable to review their client testimonials and portfolios to ensure that you are investing on a well-deserving company, who can provide you an impactful WordPress website.