Running cron job is one of the most popular problems in any projects. When we need to run cron job in WordPress projects, we can use “WP Crontrol” plugin which is powerful and easy to use. WP Crontrol lets you view and control what’s happening in the WP-Cron system. From the admin screens you can: …
PhotoSwipe
JavaScript image gallery for mobile and desktop, modular, framework independent. In these days, it is necessary to build the beautiful image gallery in many websites including blog sites. There are several open source image gallery libraries so we can use them. Photoswipe is the most popular one, and it can be big help for us …
Debug Errors in WordPress
In order to fix backend errors in wordpress, we need to track those issues in somewhere. There is an option to implement this functionality in wordpress, but we need to setup some configuration for it. Please add the following configuration setting in wp-config.php when you need to track the backend errors in wordpress. define(‘WP_DEBUG’, true);define(‘WP_DEBUG_DISPLAY’, …
Integration of sub category functionality and filtering functionality on Shopify
When we are going to manage the collections using sub-category in the Shopify projects, we can implement it using tags. In this case, we will likely need to implement the filtering functionality. But the default filtering url doesn’t work for sub categories. In order to figure out this issue, we can adjust the URLs properly …
Laravel 5 Async Queue Driver
It is an easy stuff to implement the asynchronization in Javascript since it provides it by default, but not an easy stuff in PHP. When we need to implement the asynchronization in laravel framework, we can use the following library which is powerful and suitable. https://github.com/barryvdh/laravel-async-queue Just like the ‘sync’ driver, it is not a …
Set up additional SSH keys for Git
Why? While using the same password on multiple sites makes your accounts less secure, most of the time you can use the same SSH key for multiple accounts. However, there are specific situations when you’ll need to set up more than one SSH key: You have two different Bitbucket Cloud accounts. For example, if you …
Query string Parser
Sometimes we need to parse the query string on the frontend side as well as on the backend side. Since there are pre-built default functionalities on the backend to get the query strings, it’s easy to parse the query strings. But to get the query strings on the frontend side, we need to build some …
Server Side Rendering in Meteor.js
Sending email from the server is one of the popular problem in any web applications since we might need to send the several types of emails such as daily report email, invoice email, notification email etc. If we are going to send the simple emails(ex. simple text), we can use the default mailing functionality easily. …
Scheduling Jobs on the Server for Meteor project
Scheduling jobs and running them on the server is one of the main problems we need to handle on our projects since it helps a lot of stuff such as auto email sending functionality, auto data pulling functionality, auto cleaning functionality etc. We are normally using daemon to schedule and run jobs on the server. …