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…
Category: Blog
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.
Setting up an existing WordPress site on your local computer
In this video we’ll walk you through setting up an existing WordPress site on your local computer. It can sometimes be a pain in the butt but it’s really simple once you know what to look out for.
Using browser sync with WordPress
Speed up your WordPress development using browser-sync. We’ll walk you through setting up browser-sync on your local computer.
Passing variables to template parts in WordPress
How to pass variables to template parts when building a WordPress theme. I wish I knew how easy it was to let a variable to hitch a ride on the query using set_query_var().
Link similar posts using the_posts_navigation() function
A quick tutorial on using the_post_navigation() function in WordPress to navigate between posts with the same tags.
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…