kieranbarnes Independent PHP, WordPress & CubeCart Programmer

WordPress NYC – Shopp Q&A w/ Jonathan Davis

Posted on June 23, 2011

Posted by kieran

Here's the second part of the lead Shopp developer, Jonathan Davis' presentation at WordPress NYC. Quite an interesting Q&A session on Shopp features.

Shopp 1.1.9 is out!

Posted on June 21, 2011

Posted by kieran

Shopp 1.1.9 is out! Although mainly a maintenance release it fixes the issues with the incorrect handling of free shipping methods and now includes WPML support! Bonus!

Tagged as: No Comments

Unique home page mod CubeCart 4

Posted on June 19, 2011

Posted by kieran

Here's a quick modification to allow you to have a unique home page. A page that is different to all the other pages generated by the standard index.tpl file.

It could allow for a unique homepage to show an image slider, or a blog or anything!

Filed under: CubeCart Continue reading

Shopp Product Importer Download

Posted on June 3, 2011

Posted by Kieran

Here are the latest versions of the Shopp Product Importer.

I did not write these, I'm simply hosting them because the original site is down.

 

New Site: Majestik Art

Posted on May 21, 2011

Posted by kieran

Majestik Art approached me wanting a central hub for their numerous profiles on different social networking sites across the web.

 

I provided a content management e-commerce system in CubeCart 5 so products can be sold and payments taken online, included a rotating image carousel displaying different pieces of work and also plenty of information about Majestik Art, Animal Art, Pet Portraits and Artwork by Vicky Mycock.

 

Debugging WordPress

Posted on May 20, 2011

Posted by kieran

Debugging WordPress is actually quite simple. Stop yourself going grey and or bald.

In your wp-config.php, replace

  1. define('WP_DEBUG', false);

With

  1. define('WP_DEBUG', true);
  2. define('WP_DEBUG_LOG', true);

This will turn on debugging and debug events will be wrote to wp-content/wp-debug.log. Bonzer!

Optionally, you can add, to turn off on screen error reporting if your php.ini isn't already doing so.

  1. define('WP_DEBUG_DISPLAY', false);
  2. @ini_set('display_errors', 0);

 

Tagged as: , 1 Comment

WordPress function remove_menu_page

Posted on May 20, 2011

Posted by kieran

WordPress is now being used more and more for a full site CMS and the "Links" or "Blog Roll" is pretty much redundant now. People seem to be going to great lengths to remove this from the WP admin page. I've seen people use Role Manager plugins, wierdo so called "CMS" plugins and plugins specific to removing the "Links" link.

Chicks dig blokes with groovy login screens

Posted on May 10, 2011

Posted by kieran

Or how to customise your WordPress login page.

There are three main features you may want to customise on your WordPress login page, whether it's a finishing touch on a client site, a complete rebrand of WP or just cos you're bored.

  1. CSS colors, font size etc
  2. Logo
  3. Logo link

How to remove the favorite actions menu in WordPress admin

Posted on May 9, 2011

Posted by kieran

Open your functions.php and hook in filter onto favorite_actions and return an empty array.

  1. function remove_favorite_actions() {
  2. return array();
  3. }
  4. add_filter( 'favorite_actions', 'remove_favorite_actions' );
Filed under: PHP, WordPress No Comments

Change “Howdy” text in WordPress admin

Posted on May 8, 2011

Posted by kieran

The "Howdy admin" text can some times come across a little unprofessional in some WordPress installs. Especially when you are taking the time to rebrand/customise it as a CMS solution. Edit your theme's functions.php and hook in.

  1. add_filter('admin_user_info_links','howdy_msg');
  2. function howdy_msg($links) {
  3. $links['5'] = str_replace('Howdy','Logged in as', $links['5']);
  4. return $links;
  5. }
Tagged as: No Comments
Page 9 of 35« First...7891011...2030...Last »