Basic things in WordPress CMS Development
Common things in CMS
- Hide admin logo
- Remove footer copy right message & add our copyright message
- Change id to permalinks
- Replace logo and fevicon
- Remove caption below logo
- Change username password (Update client details)
- Remove screen options
- Remove comments option
- Update static page
- Update Navigation menu
- Enquiry form & form data delivery email id.
- Test form delivery email and user email also(received or not data)
- wp-admin/css/comman.css
- #wpfooter {display:none !important}
Hide small wp-icon top icon :
wp-content/themes/themename/style.css (this style sheet open from wp-admin panel)
#wpadminbar #wp-admin-bar-wp-logo>.ab-item{ display:none !important;} /* for small logo hide */
#wp-admin-bar-site-name{display:none !important;} /* for sitename dropdown menu */
#wp-admin-bar-updates{display:none !important;} /* for updates link */
#wp-admin-bar-comments{display:none !important;} /* for comments link */
#wp-admin-bar-new-content {display:none !important;} /* for new page link */
Important Plug-ins
- Easy Image Gallery
- Simple Page Sidebars
- Ultimate short codes
- Cyclone Slider
- Google Analytics (https://wordpress.org/plugins/googleanalytics/ use based on your wp version)
Add class for home page content or background
·
Body
.home #content {background: red !important;} or leave !important depend on your style sheet.
Page based background or any special class based on page id
·
.page-id-16 #content {background-color: yellow
!important;}
Hide admin logo
·
.login h1 a { display: none !important;} in wp-admin/css/login-min.css
Where I want remove “Category Archives” in wordpress category before text(front of category heading in engrave-lite theme)
wp-content/themes/engrave-lite/admin/main/options/00.general-settings.php
Change or remove on above page in your theme page (approximate 150 line
in above source page).
Testing & Delivery
- Check with login once, Username as email id & password(it is better to recover password)
- Footer copy right message
- Admin Logo
- Site title
- List of menus as client requirement(order also).
- Test form delivery email and user email also(received or not data)
- Test logo and fevicon.
No comments:
Post a Comment