
B. Tuff Jeans
Launched 05/08/2015
- Client Designed
- Magento
- Shares admin with Cowgirl Tuff Co.
- Theme based on new RWD theme
- Responsive
- SASS with Compass
- Typekit fonts
- jQuery
- Some extensions used:
- MageParts Customer Restrictions – disable cart by group
- BubbleShop CMS Tree – manage CMS pages and control which customer group sees what
- Groups Catalog 2 – hide categories and/or products by customer group
- MageMe WebForms Pro 2 – form builder
- Belvg Login Redirect – redirect user to different page when logging in
- AOE Scheduler – manage scheduler/cron tasks including a timeline view
- Cron Import Export – Paul developed a custom extension for importing/exporting products
- Store Locator using Easy Locator service

Cowgirl Tuff Co.
Launched 04/20/2015
- Client Designed
- Magento
- Shares admin with B. Tuff Jeans
- Theme based on new RWD theme
- Responsive
- SASS with Compass
- Typekit fonts
- jQuery
- Some extensions used:
- MageParts Customer Restrictions – disable cart by group
- BubbleShop CMS Tree – manage CMS pages and control which customer group sees what
- Groups Catalog 2 – hide categories and/or products by customer group
- MageMe WebForms Pro 2 – form builder
- Belvg Login Redirect – redirect user to different page when logging in
- AOE Scheduler – manage scheduler/cron tasks including a timeline view
- Cron Import Export – Paul developed a custom extension for importing/exporting products
- Store Locator using Easy Locator service
Huge Magento Export
A client of ours has a huge magento product database and they requested the ability to do mass updates to those products. At first we decided to have them use the Import/Export section of the site but because of the size of the product database it wasn’t possible. Then we decided to use the profile system in a cron but, considering all of the products in the database are configurable, and the profile system ignores configurable products that wouldn’t work either. So we landed on pulling the Import/Export system into a nightly cron.
and here it is
https://github.com/paulmeta13/magento-cron-importexport

Spelling Success
http://www.spellingsuccess.com
Site rebuild in Concrete5. The store was Magento, recreated with Concrete5 Ecommerce addon with payments through PayPal.
- Concrete5
- eCommerce Addon
- Zone Based Shipping Addon
- Reviews Addon
- Responsive
- HTML5 Boilerplate
- CSS3
- jQuery
- Cycle2
- mediaCheck
Retrieve Authorize.net API keys from magento database.
Magento encrypts your authorize.net keys. Here’s how to retrieve them.
In the database, run this query.
select value from core_config_data where path IN ("payment/authorizenet/login", "payment/authorizenet/trans_key");
That should return 2 rows. Copy those rows into the following script and run it.
require_once("app/Mage.php"); //your actual path Mage::app()->setCurrentStore(1); $hlp = Mage::helper('core'); //The keys echo ($hlp->decrypt("FAKEYPiqkMKgprIv8kfp0wqQ==") . "\n"); echo ($hlp->decrypt("FAKEDjCTFxqdkwOYoUyD0OdQ==") . "\n");
VoilĂ !
Recent Comments