Are you ready to test your brain, speed, and precision? Puzzle Challenge is the quintessential web-based sliding puzzle game, designed to challenge seasoned speed-solvers and casual players alike. This isn t [ ] The post 🧩 PUZZLE CHALLENGE: The Ultimate Sliding Puzzle Experience 🏆 appeared first on oneTarek .
A PHP function to generate a list of information of all dates for a given month and year. Input: month and year in number. Output: Two-dimensional array of all dates. [ ] The post PHP Generate a list of all dates for a given month and year appeared first on oneTarek .
WordPress Gravity Forms plugin lets you set dynamic values for fields via shortcode ( merge tag ). You can populate a field with a date value using the merge tag [ ] The post Add Gravity Forms Custom Merge Tag For Day, Month and Year appeared first on oneTarek .
WordPress Gravity Forms plugin s documentation provides a code snippet to make a field read-only. But making read-only is not a good solution for input type text and select input fields. [ ] The post How to Make WordPress Gravity Forms Fields Read-only appeared first on oneTarek .
I need to send WooCommerce webhook requests only when an order is completed. But WooCommerce does not have any webhook topic for order completion. I created the custom topic Custom [ ] The post Custom WooCommerce Webhook Topic appeared first on oneTarek .
In WordPress we use wp_enqueue_script and wp_enqueue_style functions to add our script and stylesheet to the page. By default these functions print script and link tags as normal. But sometimes [ ] The post How to WP Enqueue Script or Style Only for Internet Explorer appeared first on oneTarek .
If your PHP script is running on Pantheon hosting , you might be noticed that PHP rename function is not working. In PHP rename function is used to rename a [ ] The post PHP Alternative Rename Function for Pantheon Hosting appeared first on oneTarek .
You can delete a directory using rmdir() function. But rmdir function has limitation. To remove a directory using rmdir , the directory must be blank. If a directory contains multiple [ ] The post PHP Delete a Directory and Containing Files Recursively appeared first on oneTarek .
To delete all of your local git branches except master and development run following command Command : git branch grep -ve 'master\ development' xargs git branch -D The post [Git] How to Remove All Local Git Branches but Keep master and development appeared first on oneTarek .