Magento Suspected Fraud

If an order comes through Magento as Suspected Fraud and you’ve addressed the issue via your Payment Gateway, many times Magento will not recognize the change. Here’s how to manually update the order status: From the backend of magento, open the order in question. Take Note of the Order # and the number after the […]

Make BXSlider Fully Responsive

jQuery(window).load(function() { var homeslide = jQuery(‘.bxslider’).bxSlider({}); /*Initialize Slider and assign to a variable*/ jQuery( window ).resize(function() { /*Every time the browser width changes, reload slider*/ homeslide.reloadSlider(); }); });

jQuery Responsive Image Maps

Download plugin here Use the following script to use the plugin: $(document).ready(function(e) { $(‘img[usemap]’).rwdImageMaps(); });

EE Launch Settings

Modify /system/expressionengine/config/database.php with new database connection settings Update URLs in all of the following places from the backend Go to Tools > Utilities > Php Info and find document root to get your server URL(file path) Admin: General Configuration – URL to the root directory of your site. – URL to your themes folder – […]

Quick reset an admin password

To change a magento admin password, run the following query on the magento database. Replace ‘password’ with your desired password. Replace ‘admin’ with the username you wish to reset. The Letters ‘qX’ can be replaced with another two letters if desired, or you can leave them as is. UPDATE admin_user SET password=CONCAT(MD5(‘qXpassword’), ‘:qX’) WHERE username=’admin’; […]