Zen Cart – stock by attributes plugin bug
I’ve found a couple of bugs with this, otherwise excellent, module: If you are not logged in Zen Cart will allow you to progress to the login page even if you have ignored the ‘delete out-of-stock’ products message on the shopping cart page. This may not seem a big deal, as you can’t progress further, […]
Custom Post Types glitch in WordPress 3.1
I love the fact that you can now create Custom post Types in WordPress since v3.0.I can now offer clients the ability to create entities in their WP sites that are actually relevant to their site (eg Case Studies, Team Members etc) without having to give lengthy training sessions in how to tag posts a […]
Using jQuery to automatically turn email addresses into links
Heres a quick jQuery function to change all incidences of a particular email address on a page into a clickable link.Useful for things like Terms & Conditions pages where clients will be adding their email adddress multiple times:<script type=”text/javascript”> $(document).ready(function() { var thePage = $(“body”); thePage.html(thePage.html().replace(/info@somewhere.co.uk/ig, ‘<a href=”mailto:info@somewhere.co.uk”>info@somewhere.co.uk</a>’)); });</script>
Create smoother mouseover effect on product images using jQuery in Magento UPDATE
Well at the insistence of you guys out there I thought I’d post my results for getting a nice smoother mouseover effect using jQuery. You need to edit the list.phtml in the two places it is pumping out images for the List view & the Grid View.Copy and past the following code completely over the […]
Add clickable links to header of Squarespace site
SEPT 2012: See Updated post on <a href=”http://www.kineticpulse.co.uk/?p=427″>how to add clickable links to hear of a Squarespace site </a> I do like Squarespace but often clients want something more than one large banner as their header. So here is my solution to add a few clickable links into the header. Essentially the links aren’t in […]