So one day I was trying to upload a plugin to a new WordPress site and when I got the FTP screen I figured I could just go in and update a few permissions and all would be well. NOPE. I spent two nights trying to figure out why I could not install plugins without [...]
Read the rest of this entry »
Posted in PHP, Wordpress | 2 Comments »
This article explains how to create an osCommerce 3.0 box or content module and the gotchas along the way… If you are struggling with modules in OSC3 this is a good read.
Read the rest of this entry »
Posted in OSCommerce | No Comments »
jQuery plug-in function check. Code inside…
Read the rest of this entry »
Posted in JavaScript, Jquery | No Comments »
Found a real nice plug-in for WordPress which helps support a secondary featured image for your posts, pages or custom posts. You can find it here: http://wordpress.org/extend/plugins/multiple-post-thumbnails/ Couple things to note: The site does not state where to add this code… add it to the bottom of your functions.php file in your theme. The code [...]
Read the rest of this entry »
Posted in HTML | No Comments »
Here is an example anyone can add in their functions.php file or plugins to get WordPress terms or taxonomies by the post slug. Hope this helps some people out. /** * Get taxonomy from a post slug */ function get_term_by_post_slug($post_slug, $output = OBJECT) { global $wpdb; $strsql = “SELECT wp_terms.name “; $strsql .= “FROM wp_terms [...]
Read the rest of this entry »
Posted in HTML | No Comments »
This took me hours to figure out, yet is it so simple. This needs to be documented more so I thought I would post about it. Here is the snipet that makes the whole thing work.
Read the rest of this entry »
Posted in HTML | 2 Comments »
Just in case you ever wanted to know where the email gets sent when a MySQL error happens in CRE Loaded or OSCommerce it is in
Read the rest of this entry »
Posted in HTML | No Comments »
If anyone that has server configuration knowledge and has tried to configure a server with Plesk installed, they probably had to go through a learning curve to get everything strait. Here is what I learned:
Read the rest of this entry »
Posted in Linux, Rants | No Comments »
Just a quick note to say AJAX can be tricky and difficult to debug on occasion.
Read the rest of this entry »
Posted in JavaScript, Jquery, PHP | No Comments »
So, one day I found a need to have free shipping “per product” for CRE Loaded/OSCommerce. First I search for it and found a couple candidates that seemed like they would do the job.
Read the rest of this entry »
Posted in CRE Loaded, OSCommerce, Web Development | 2 Comments »