Some time such requirement created for elementor so that we have to use ACF custom field in the elementor builder . For such type of issue we can solve by making shortcode for acf and use in elementor. Like i want to use acf video url field to show vimeo video in elementor.
Customize geodirectory advanced search with custom range
If we want to select something tricky in geo directory advance search than it is not available in default like i was want to add duration days for course from 1 to 100 but in front end it will we some range for select with three option 1- Less than 1 week2-1 week to 1 […]
Filter and action difference in one word
Actions can have any functionality, and Filters can exist to modify data. Actions may or may not passed any data by their action hook, and Filters are passed data to modify by their hook. Actions do not return their changes, and Filters must return their changes.
Why i switch from corporate job to remote job
More concentrate on work so more performance More responsible for family Less politics More work more rewards More financial growth More healthy Life and work balance Your office can we anywhere Appraisal based on your work not on politics
7 HABITS OR SIGNS YOU SHOULD HAVE IN YOU ARE
1- HIGH WILL POWER 2- LIKING NEW THINGS 3- I CAN HANDLE IT ATTITUDE 4- STRONG PERSONALITY AND CHARACTER 5- LEARNING AND READING 6- CONFIDENCE 7- HAVING PASSION
Remote job vs office job
According to me remote job is better than office job. There are following reasons: 1- Family care : in respective of office job, remote job is better due to it provide flexbility of time so that you can care of near and dears. 2- Road misshaping: In respective to office job road mishapping chances is […]
My Career journey
I started my career in 2012 from unicode systems as web developer in lucknow . At there i learnt alot. In unicode ,there are 10 employee batch of our who started at 15 jan 2012. As my native place is lalitpur . So i was thinking can i move to delhi as delhi and Lucknow […]
why ob_start() and ob_get_clean() are so important
Basically ob_start() create buffer so that without using echo again and again we can get all html in the variable ob_get_clean() ob_get_clean() does 3 things for us in a single call function. It goes as follows: Fetch buffered content. Clean buffered content Shut off buffering. For example We can write code snippet like below But when […]
Debugging in web development
Debugging in any programming is very important. I follow following steps for it: 1- Check issue and analyse it for some time. 2- Before jump to google check core documentation for issue like issue is due to function etc. Like you are doing coding on Linux and checking on it but issue which raised are […]
3rd parameter in add_action
Many times we ignore third parameter in add_action. add_action( string $tag, callable $function_to_add, int $priority = 10, int $accepted_args = 1 ) If you read documentation on wordpress doc then you will found higher priority leter execution Let us take some example add_action(‘wp_head’,’check_action1′,100); function check_action(){ echo ‘later sandeep call’; } add_action(‘wp_head’,’check_action2′,13); function check_action2(){ echo ‘first […]