fbpx

Tips, tricks, and other valuable WordPress knowledge to save you time and make you money!

Blog

Replace Filenames in Directory with Bash Script

The following bash script converts all filenames within the /path/to/file/ directory that contain spaces to contain hyphens instead. For example, Screen Shot 2018 09 25.png becomes Screen-Shot-2018-09-25.png after running this script. for f in /path/to/file/*; do mv “$f” $(echo “$f” | tr ‘ ‘ ‘-‘) ; done In order to run this bash script, save…

Increase the mysql database upload size in phpmyadmin

When using MAMP as a local development server for your WordPress website, sometimes you’ll get a little error from phpmyadmin telling you the file size is too large. We’ll show you real quick how to increase the file size limits.

Add a Payment Form to Salient WordPress Theme

Do you want to start getting paid through your Salient WordPress site? We built a simple and free WordPress plugin called WPMerchant that allows you to add a payment form to your Salient WordPress theme to turn your Salient website into a cash register with just a few steps. Whether it be collecting money from…

Email List Building with WordPress, MailChimp and Salient Theme

Building a successful online business depends on your ability to create or find an audience that generates revenue. We have found email list building to be a great way to create and grow our audience. We leverage our posts to collect newsletter subscribers. There are a bunch of different ways to build an email list…

Add a Popup to Salient WordPress Theme

I spent quite a bit of time trying to figure out how to add a popup, also known as lightbox, also known as modal, to my client’s website, which is built with the Salient WordPress theme. I tested out a Bootstrap Modal plugin in the WordPress plugin directory but it didn’t work properly because it…

Add an SVG Logo to Uncode Theme

SVG logos are by far the best logos to use for your Uncode WordPress Theme. SVG stands for scalable vector graphics and this file type makes sure your website’s logo is never pixelated. Using an SVG for your Uncode theme means that no matter how large or small you make the logo it will always…

Want to use our API?