Plugins |
X

Congrats, You are Subscribed to Receive Updates.

Plugins

WordPress Custom Forget Password Page

WordPress Custom Forget Password Page
WordPress Custom Forgot Password Page.  In my previous Article I explained how to create custom login page. With that custom page we will add Forgot password functionality.  If you have not checked it, Read Here. Alright, we need to use the same page for forgot password as well, we are going to use jQuery functions to switch the forms visibility to use it. Here is the ...

Creating Custom Options Page in WordPress

Creating Custom Options Page in WordPress
Creating Custom Options Page in WordPress. Creatting Admin Page options is not really a hardest part of WordPress. You can play and make your own options like in minutes. In this tutorial, you can able to understand, how to create options in easy steps.  There are few plugins available, and also you can create from few WordPress plugins. But those are more space consumed and ...

How To Use SSL & HTTPS With WordPress

How To Use SSL & HTTPS With WordPress
How To Use SSL & HTTPS With WordPress. Now a days providing Security over your WordPress site, by encrypting with SSL becomes more secured and get more peoples can trust your site.  So going with SSL is making your users getting strong opinion about  your WordPress. they are about to believe and pay attention to your site.   Let’s get into the topic, how to ...

WordPress Custom Login Form without plugin and wp_login_form

WordPress Custom Login Form without plugin and wp_login_form
WordPress Custom Login Form without plugin and wp_login_form. Generally the wp_login_form function will send the user credentials to the default WordPress login page. So it shows the url of login page. Suppose if you want to hide the login page. You may goto custom login page. But if the form action shows the URL than its a hack to show it to the users. Also ...

WordPress Create Settings Link on Plugin Activation

WordPress Create Settings Link on Plugin Activation Easy way to create  settings link for your plugin on the time of activation .  The following code help you to create your custom one. add_filter( 'plugin_action_links', 'kv_wpschoolpress_settings_link', 10, 2 ); function kv_wpschoolpress_settings_link( $links, $file ) { static $my_plugin; if (!$my_plugin) { $my_plugin = plugin_basename(__FILE__); } if ($file == $my_plugin) { $in = '<a href="options-general.php?page=WPSchoolPress">' . __('WPSchoolPress -Settings','kvcodes') ...

WordPress Plugin Error Call to undefined function wp_get_current_user

WordPress Plugin Error Call to undefined function wp_get_current_user
WordPress Plugin Error Call to undefined function wp_get_current_user. If you have the problem of using the User functions like the get_current_user and get_user_by_id and get_current_userinfo. You need to understand that there are two reasons for the issue. The very first one is file doesnot included properly, either the function doesnot comes under the WordPress hooks. Else you may included the file double times. The second ...

WordPress Create Custom Page Templates With Plugins

WordPress Create Custom Page Templates With Plugins
WordPress Create Custom Page Templates With Plugins. In WordPress, We have options to create  Custom template for specific post and pages. This is most usable function for the Theme developers. But if the same kind of custom templates required for the custom plugin creators,  Here is a function, which will help you to create a custom template for a function. Generally, the custom template and ...

WordPress csv Importer Custom Fields Plugin

WordPress csv Importer Custom Fields Plugin
WordPress csv Importer Custom Fields Plugin.The very first thing you have to do while creating a plugin or a theme or a template is to define at the top of the file. So, here for a plugin we have to define the following attributes. /* Plugin Name: Kv_CSV Upload Description: It is to upload data from CSV to DB Version: 1 Author: Karthikeyan P Author ...

Solution for Canonicalization Problems to WordPress Site

Solution for Canonicalization Problems to WordPress Site
Solution for Canonicalization Problems to WordPress Site. Canonicalization is one of the important factor for SEO. I already wrote an article to optimize the IP and URL Canonicalization.  Here is the article. Which will help you to understand well. You can do this by overwriting the .htaccess file. Else you can use WordPress Rewrite functions to perform it dynamically. If you want to perform it ...

How to Hide Unnecessary Menu Items from Admin Menu in WordPress

How to Hide Unnecessary Menu Items from Admin Menu in WordPress
How to Hide Unnecessary Menu Items from Admin Menu in WordPress. Sometimes we feel irritated with unused items in WordPress admin menu . So here I just thought to hide certain items from the admin menu, which i dont like to use all the time. From the admin menu items, I dont use the following items not properly. Media tools Appearance -> Editor Appearance ->Customize ...

Menu

Sidebar