Schedule a Free Consultation

Find the resources to succeed with WordPress

The go-to resource for WordPress insights & tips
and where WordPress experts share their knowledge.

View
Articles

How to compile IMAP with SSL for PHP on OSX – works on MAMP as well
This tutorial is an attempt to alleviate the headaches for all those that need to have IMAP with SSL running on OSX 😃 Needed stuff autoconf openssl libxml2 imap2007 install with brew “brew install imap-uw” OR download from https://www.mirrorservice.org/sites/ftp.cac.washington.edu/imap/ (the archive without Z at the end ) imap-2007e ftp://ftp.cac.washington.edu/imap/ To install libxml2, you can use brew: brew install […]
Categorize WordPress Comments in Genesis Framework
TL;DR: If you want to download the FREE comments categories plugin for your own use, click here  We have created a new version from scratch that is publicly available as a contribution to the WordPress community. Have you ever needed to categorize comments added to your site? WordPress, our favorite Content Management System (CMS) allows […]
Moving from software products to WordPress services
Moving from software products to WordPress services
I’ve recently heard a handful o people saying that client work is not that fun and sexy. I have a few close friends that do make good money out of WordPress outsourcing, however, they are dreaming with their eyes open about building their own SASS or product. They are craving for recurring revenues. They are […]
Codeable interview – changing lives with Marius Vetrici
Codeable interview – changing lives with Marius Vetrici
I’ve been freelancing on Codeable for more than 2 years now. I have only good things to say about this platform: They carefully choose the WordPress contractors they work with. There’s a very serious screening process. They are focused on quality, not on price. And this is good for both the customers as well as WordPress […]
We know you love WordPress. We love it too
We know you love WordPress. We love it too
WPRiders team is an active contributor to the development of WordPress community. That’s why we are copying here under the article that calls for speakers at Bucharest WordCamp 2016. That’s why we put up the first Bucharest WordCamp after long break. The team behind Bucharest WordPress Meetup and a bunch of volunteers gathered up for […]
Multisite Create Page on All Sites
Have you ever worked on a multisite with 60+ sites? For projects of this size the deployment is a challenge in itself because you might need to: regenerate the thumbnails on all the 60 sites; Of course, doing it manually is a no go configure a certain page as homepage on all 60 sites if you […]
Gravity Forms Entries Inventory Management
Ever needed to limit the number of entries in a Gravity Form? Like, for booking a given number of places in one shot/submission or buying 3 tickets for an event, etc. Here’s an example: I have a 10 places event Someone comes to the website and buys 3 tickets (in 1 submission) Another one buys […]
Translate Plugin From Child Theme
Translate Plugin From Child Theme
Ever needed to translate some strings from a plugin so as to be able to further upgrade the main plugin without loosing your translations? I did. This is because there some languages around for which there are no default translations in plugins like WooCommerce Social Login or WooCommerce Bookings. Unfortunately there’s no standard way to […]
Add html comments using newly created user role
Add html comments using newly created user role
I was recently working on a piece of code that will: create as special user role allow that user role to insert HTML comments on posts (specifically we needed images and links) from wp-admin If I was commenting like admin, all was good – the comment with image was getting published. But if instead I […]
Filter Custom Posts by Author in WP-Admin
Need to filter your Custom Post Types in WordPress by Author in WPAdmin? Here’s a handy way to do it by adding a new drop down for filtering: And here’s how it looks like:
Replace comment notification email with Mandrill template
Replace comment notification email with Mandrill template
Have you ever needed to replace the default email that WordPress is sending whenever a new comment is added? Recently I did. Here’s how I did it: To get this going you have to: 1) Install and configure WPMandrill plugin 2) Create a new template in your Mandrill account 3) Paste the php code in your […]
Test if Flexslider loaded
Test if Flexslider loaded
Recently I had a mini project for a client and I had to test if Flexslider has been shown on the screen in order to further modify it. Subscribing to the start callback didn’t work because the slider was shown by the theme and not by my code. jQuery(document).ready(…) didn’t work either. The slider was there, […]