TAILWIND CSS Tailwind css can be used to style websites in the fastest and easiest way.It is utility-first CSS framework which is highly customisable. Tailwind CSS works by scanning all of our HTML files, JavaScript components, and any other templates for class names, generating the corresponding styles and then writing them to a static CSS… Continue reading Install Tailwind using Next.js framework
Author: Ancy Jose
Critical Error handling while updating plugins
Sometimes in the process of PHP updation or plugin updation in wordpress,we may get into critical error in our site and our admin dashboard may not be accessed. Sometimes it may be necessary to deactivate all plugins, but you can’t access the Administration Screens to do so. In this case,we can deactivate plugins in two… Continue reading Critical Error handling while updating plugins
Updraft Plus – Plugin to take back up in wordpress
UpdraftPlus – Backup/Restore By UpdraftPlus.Com, DavidAnderson simplifies backups and restoration of wordpress website.In a single click,webite can be backed up ito google cloud. UpdraftPlus: Restores, as well as backing up Backs up to more cloud options than any others Allows you to set up automatic backup schedules, for the ultimate in convenience Is faster, using up… Continue reading Updraft Plus – Plugin to take back up in wordpress
Before PHP Updation in wordpress
PHP is one of the programming languages that WordPress is built on.So for a faster and secure website,latest PHP version is as important as updated themes and plugins. There are two main benefits to keeping PHP up-to-date: Website may be faster because PHP becomes more efficient with each new version. Updating to WordPress’s recommended version (currently… Continue reading Before PHP Updation in wordpress
Stop Scrolling of background while a popup is open
We can disable scrolling of background when a pop up is open using some js and css tricks.Just add a class to body of page and set height of body to 100% and overflow hidden and position fixed using the class. Add following code in css In javascript,add/remove class to body as per our requirement.… Continue reading Stop Scrolling of background while a popup is open
Add recaptcha in form.
It is very simple to add captcha to html form. Include the following div in the form where we have to include capcha Data site key is recaptcha key which we obtain after registering domain and site in reCAPTCHA admin console with Google account.A reCAPTCHA key is a unique alphanumeric string of 40 characters. And include… Continue reading Add recaptcha in form.
Multiple Slider Single Control in single page
Yes,it is possible to include multiple slider under single control in our html page.Please find below the html code and css to implement multiple slider. Two swiper slider is initialised. And control of first slide is assigned to second slide.
Plugin to display twitter feed
To display twitter feeds in wordpress,a new plugin “Feed Them Social – Page, Post, Video and Photo Galleries” by By SlickRemix can be used. “ Custom Twitter Feeds” plugin was used to display twitter feed in wordpress.Now this plugin updates feeds in the page only for paid users.A update may happen in June which enable… Continue reading Plugin to display twitter feed
Swipeable Card Design using Swiper JS
Here is an example for Swipeable Card Design using swiper js. For swipeable Card design needs div with classes swiper,swiper-wrapper and swiper-slide respectively.Content that is to displayed inside the card must be included in the div with class “swiper-slide”.In this example,5 cards are displayed .Therefore five div with class “swiper-slide” is used.Height and weight of… Continue reading Swipeable Card Design using Swiper JS
Enqueue script in the header section
In wordpress, wp_enqueue_script() allows plugins to queue scripts for the front end. Syntax for enqueue is Parameters are Parameters $handle string RequiredName of the script. Should be unique.$src string OptionalFull URL of the script, or path of the script relative to the WordPress root directory. Default: ”$deps string[] OptionalAn array of registered script handles this script depends on. Default: array()$ver string|bool|null OptionalString specifying script version number, if… Continue reading Enqueue script in the header section