Viewing 11 to 20 of 67 items
Archive | Tutorials RSS feed for this section

Customising WooCommerce Order Emails

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…

0

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…

0

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…

0

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…

0

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…

0

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…

0

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…

0

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…

0