Handy tips and Tools for working with wordpress -Part1? – User friendly Tech help
Don’t judge each day by the harvest you reap but by the seeds that you plant.” Robert Louis Stevenson
n
1.How to add icons in wordpress pages ?
nSolution:-
nBy using the “Better Font Awesome” plugin
nSteps1:- Install and activate the plugin in wordpress.
n
Steps2:- Search the given icon from the font-awesome library, add the code in backend of the page where you want to use it.
n
Tips:-
n1.Change the font-size by varying the font-size or directly adding a class like fa-3x, follow the example
n
2.Another way of adding is using the short code and directly adding from the fronted of the code.
2.How to customize local CSS in page or post?
nSolution:-
n Using the plugin “WP add custom CSS plugin“
n
3.How to create mobile menu in website?
nSolution:-
n Using the plugin”WP mobile menu plugin”
n
4.How to hide items from wordpress dashboard, thus avoid clients to mess up the code?
nSolution:-
nAppearnce > Editor > functions.php
Place the below code in the functions.php file and save it
n
function remove_menus(){
n
remove_menu_page( ‘index.php’ ); //Dashboard remove_menu_page( ‘edit.php’ ); //Posts remove_menu_page( ‘upload.php’ ); //Media remove_menu_page( ‘edit.php?post_type=page’ ); //Pages remove_menu_page( ‘edit-comments.php’ ); //Comments remove_menu_page( ‘themes.php’ ); //Appearance remove_menu_page( ‘plugins.php’ ); //Plugins remove_menu_page( ‘users.php’ ); //Users remove_menu_page( ‘tools.php’ ); //Tools
n
remove_menu_page( ‘options-general.php’ ); //Settings
n
}
nadd_action( ‘admin_menu’, ‘remove_menus’ )
n
You can change it based on which tabs to hide or show.
nAlso can remove the external plugins which are added to the dashboard .
n
Complete reference can be taken from wordpress functions page.
n
5.How to customize columns displayed in post/comments/page?
n
Solution:-
nUse Admin Columns plugin.n
It provides an elegant solution for controlling the columns that show up on the All Posts, All Pages, Media Library, Users and Comments screens.
n
6.How to change the default wordpress login layout and design?ts/page?
n
Solution:-
n
Use Erident Custom Login and Dashboard plugin. Using this you can change the background images, remove wordpress, reset password links and redesign the login page as you want.