Red Bridge Internet is a San Francisco WordPress Consulting firm specializing in WordPress websites and WordPress Plugin Development. We're the ones you have been searching for.

Magento

Ways to Insert Static Blocks Into Magento Templates

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 /* * Insert into template.phtml */ <?php echo $this->getLayout()->createBlock(’cms/block’)->setBlockId(’BLOCKNAMEHERE’)->toHtml() ; ?>     /* * Insert into the CMS */ {{block type="cms/block" block_id="BLOCKNAMEHERE" template="cms/example-template.phtml"}}     /* * Insert [...]

Add Custom Note or Attribute to Magento Grid View

I recently needed to allow for a custom note to be shown in Magento’s Grid and List views. My client asked that they be able to add to any product a customized note (text snippet) to announce such things as “Expected back in stock soon”, “20% Off Today”, “Color Red Coming this Week” and so [...]

Payment Transaction Failed after Magento Upgrade

I recently upgraded an installation of Magento from version 1.1.6 to 1.3.2.1 which lead to a couple issues with the payment system. The first issue was that I had to reset Base URL under Secure in the Configuration. The SSL settings seemed to have gotten lost during the upgrade. This leads to the Payment transaction [...]

How to Create a Magento Staging Site

I needed to create a Magento Staging Area for both common development tasks and testing the latest upgrades. In order to create the staging area for my Magento store I’m going to create a mirror of it at a subdomain. I host on my own Linux server and use Godaddy to manage my domains. My [...]

Cannot Login to Frontend with Explorer on Magento Store

I recently had a problem with users of Explorer and login problems on the frontend of a Magento store. They were able to login using Firefox, but when using Explorer they couldn’t login as a customer. The backend was fine. I found that I had some configuration issues, primary with server system time and cookies [...]

Magento Default Products Sort Order Newest

Magento currently does not sort category products and any product listing for that matter by Newest (highest entity_id). Since my store works best when showing fresh products we felt it necessary to have our Magento installation sort by newest product first (descending) so that just by clicking through categories, users would be seeing the latest [...]