As seen on SkyVerge. You’ve lovingly setup your first WooCommerce shop: picked out that perfect theme (maybe one we recommend), polished your product page content to an irresistible shine, tested your frictionless checkout, and… received a nice enough but totally generic order email that in no way matches the look, the style of your shop. Full Article…
Insert a Gravity Form with Advanced Custom Fields
Download the ACF – Gravity Forms Field from GitHub. Then use this code or something similar:
Modifying queries with pre_get_posts
Written by Remi Corson. you can for example query only posts from a specific type and with a custom meta field key equal to a determined value. In the code below, we are targeting only custom post type called “portfolio” where meta key “project_type” is set to “design”, that’s a typical query that can be Full Article…
Gravity Forms Notification Popup
As seen here: https://anythinggraphic.net/gravity-forms-notification-popup/ Gravity Forms is by far one of the most popular, user friendly, easy to use form plugins for WordPress. With its many hooks and filters it is easy for developers to make it do pretty much anything. I was working on a small website development project for the CO2 Coalition. The design Full Article…
Using Google Spreadsheets as a CMS with PHP
As seen here: http://elikirk.com/using-google-spreadsheets-as-a-cms-with-php/ Setup a Published Google Spreadsheet Create a Google spreadsheet, then fill in the data in your spreadsheet with an identifier in one column and the content in the next column. Next, we need to publish the content. Note: This is more than just “Sharing” the spreadsheet. When you to this, your Full Article…
Extract a zip file on a web server
Issue Many applications come pre-packaged in a compressed ZIP or TAR file. Instead of unpacking these files on your local computer and then uploading the many files via FTP you can upload the compressed file and extract the files directly on the server to save you time. Unfortunately Plesk doesn’t have a facility to do this Full Article…
Get the IP addresses of all devices on my home network
Taken from here: http://apple.stackexchange.com/a/19784 Open the terminal application and type the command: This will show the IP and MAC address of all devices on the network that it knows about.
Enqueue/Include neutral urls for http and/or https in WordPress
Taken from here: http://wordpress.stackexchange.com/a/81897/13712 URLs must have a https or http protocol for WordPress to enqueue them. FIf possible you should use get_template_directory_uri() (for parent themes) or get_stylesheet_directory_uri() (for child themes) as both of these handle SSL if necedssary. Here’s an example: If you can’t enqueue your own local script/s and have to enqueue from an Full Article…
How to change your WordPress.org password
This appeared to not be possible for a while, hence creating this note on where it is hidden away once you are logged into WordPress.org. After some more looking, and a bit of searching, I found that the View your profile link can be found specifically on the WordPress.org Forums. Notice that the View your profile is at the top right Full Article…
Ordered List CSS Styles
Original here: http://codeitdown.com/ordered-list-css-styles/ Styling ordered list numbers with CSS is not as simple as one might think because there is no CSS selector to target list numbers. Styling them is only possible with a simple CSS3 technique that uses a counter to replace the default numbers. Styled numbers will only be visible in CSS3 browsers , Full Article…