How to change product section misalignment in Magento?
Dec 28th
Solution :
If you are using Hello wired theme and facing the problem of misalignment in Shopping Cart (Product) Section.
Make the following change in cart.phtml provide by
public_html/app/design/frontend/default/hellowired/template/checkout/cart.phtml (line 47)
<col width=”1″ />
<col width=”1″ /> <col />
<col width=”1″ /> <col />
<col width=”1″ />
<tr>
<th rowspan=”<?php echo $mergedCells; ?>”> </th>
<th rowspan=”<?php echo $mergedCells; ?>”> </th>
<th rowspan=”<?php echo $mergedCells; ?>”><span><?php echo $this->__(‘Product Name’) ?></span></th>
<?php if ($this->helper(‘wishlist’)->isAllowInCart()) : ?>
<tr>
<th rowspan=”<?php echo $mergedCells; ?>”> </th>
<th rowspan=”<?php echo $mergedCells; ?>”><span><?php echo $this->__(‘Product Name’) ?></span></th>
<th rowspan=”<?php echo $mergedCells; ?>”> </th>
<?php if ($this->helper(‘wishlist’)->isAllowInCart()) : ?>
Magento Tips, Tricks and Bugs
Dec 28th
1. How to remove estimated shipping cost pop up on chekout in Magento ?
Solution :
If you are using Hello wired theme and facing the problem of shipping cost pop up on chekout.
This is a solution for it. which works
remove this row
<block type=”checkout/cart_shipping” name=”checkout.cart.shipping” as=”shipping” template=”checkout/cart/shipping.phtml”/>
from this file
/app/design/frontend/yoursite/default/layout/checkout.xml
This is the best solution found.
2. How to remove product tag option in magento?
Solution :
If you are using Hello wired theme and facing the problem of remove the product tag option in magento.
This is a solution for it. which works
To remove the product tags module (ie. not use product tags?
Go to,
Admin->system->advanced-> Mage_Tag Disable
3. How to change the word discount code in magento?
Solution :
If you want to change the word discount code to other word in magento
then go to
/home/buymeol/public_html/app/design/frontend/base/default/template/checkout/cart/coupon.phtml
and change the name in this line whatever you want.
Eg.:
<h2><?php echo $this->__(‘Coupon Code‘) ?></h2>
4. how to edit email templates in magento?
Solution :
If you have to change the matters in email templates for e.g Shop timings , Contact Number etc.
Eg.: Order_New mail
then go to
public_html/app/locale/en_US/template/email/sales
select the file order_new.html and edit the matter in Dreamweaver and change the content as you want.
Then save it.
5. Magento price autoupdate in configurab
Solution :
A problem with the automatic update of the price of a configurable product. When you choose an option it does not change the total price in the “price-box” div of the product. When added to the cart the price is correct.
Make the following change in price_clone.phtml and than it works
Path for price_clone.phtml
app/design/frontend/base/default/template/catalog/product/view/price_clone.phtml
Reach this file and find this line
<?php echo $this->getPriceHtml($_product, false, '_clone') ?> <?php echo $this->getPriceHtml($_product, false) ?>
How to send Newsletter in Magento ?
Dec 28th
Solutions :
First set the newsletter template through the Magento Admin Area-> Newsletter-> Newsletter Templates-> Add New Template.
Enter the template name, the subject of the newsletter which will be sent, the sender’s name and e-mail and the newsletter template’s text.
Once you are ready, preview the template using the Preview Template button and save it by clicking on the Save Template button.
The template will be added to the corresponding list and you will be able to edit it.
If you plan to send the message to a large list of recipients, you should divide the list in small parts. You can configure such a functionality through the Magento Admin Area-> Newsletter-> Newsletter Templates-> Action-> Queue Newsletter.
In the Queue Date Start field define when the newsletter will be sent. The messages will leave the e-mail server in small batches. Check the other options and click on the Save Newsletter button when you are ready.
type this in new browser enter this link 2 times (1st will activate the newsletter sending procedure and 2nd will actually send) and send the newsletters to everyone.
http://www.yoursite.com/
This is the best solution found.
Fatal error: Call to a member function setItems() on a non-object in /home/public_html/app/design/frontend/base/default/template/wishlist/view.phtml on line 43
Dec 21st
If you are facing the problem of getting FATAL ERROR line using Hello Wired theme in Magento. Try this
This is a proper solution for the problem
Just rename the file
/app/design/frontend/custom_theme/custom_theme/layout/wishlist.xmlor
/app/design/frontend/default/custom_theme/layout/wishlist.xmldepending on where you have installed your theme.
” Rename it to “wishlist.xml.bk” for example. “
Also Do not forget to clear cache and reloade the CONFIG type, flushed cache and then it works, this will load the base wishlist file and probably this is not the way it was supposed to be working for the custom theme. But so far this is the best solution found.
Magento Place Order Button Missing
Dec 21st
If you are using Hello wired theme and facing the problem of lost button after the 5th point after order review.
This is a solution for it. which works
replace the following in app/design/frontend/default/mytheme/layout/checkout.xml:
<checkout_onepage_review>
Mage_Checkout
<remove name="right"/>
<remove name="left"/><block type=”checkout/onepage_review_info” name=”root” output=”toHtml” template=”checkout/onepage/review/info.phtml”><action method=”addItemRender”><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
<action method=”addItemRender”><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
<action method=”addItemRender”><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
<block type=”checkout/cart_totals” name=”checkout.onepage.review.info.totals” as=”totals” template=”checkout/onepage/review/totals.phtml”/>
<block type=”core/text_list” name=”checkout.onepage.review.info.items.before” as=”items_before”/>
</block>
</checkout_onepage_review>
- with this from the app/design/frontend/base/default/layout/checkout.xml file:
<checkout_onepage_review translate="label">
<label>One Page Checkout Overview</label>
<!-- Mage_Checkout -->
<remove name="right"/>
<remove name="left"/><block type=”checkout/onepage_review_info” name=”root” output=”toHtml” template=”checkout/onepage/review/info.phtml”><action method=”addItemRender”><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
<action method=”addItemRender”><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
<action method=”addItemRender”><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
<block type=”checkout/cart_totals” name=”checkout.onepage.review.info.totals” as=”totals” template=”checkout/onepage/review/totals.phtml”/>
<block type=”core/text_list” name=”checkout.onepage.review.info.items.before” as=”items_before” translate=”label”>
<label>Items Before</label>
</block>
<block type=”core/text_list” name=”checkout.onepage.review.info.items.after” as=”items_after” translate=”label”>
<label>Items After</label>
</block>
<block type=”checkout/agreements” name=”checkout.onepage.agreements” as=”agreements” template=”checkout/onepage/agreements.phtml”/>
<block type=”core/template” name=”checkout.onepage.review.button” as=”button” template=”checkout/onepage/review/button.phtml”/>
</block>
</checkout_onepage_review>
- Then Refresh the Cache Management from magento and it works.
Google Apps No More FREE for Business Users
Dec 19th
Since its initial introduction into the business world in 2005, Google Apps has been available to small business users for free. Even when the premium version was launched in 2007, Google still maintained a free standard version for individuals and small organizations.

But now, Google has announced that it will no longer offer the free version of Google Apps to new business customers. The premium version, now called Google Apps for Business, will continue to be available for $50 per user per year, regardless of company size. Free accounts will be reserved for personal users.
Google said that this change will not impact current Google Apps customers, even those using free business accounts. However, new businesses that sign up for Google Apps will have to sign up for a premium account.
Google Apps offers businesses many useful services, from Gmail accounts to Google Drive cloud storage. Premium accounts also offer a 25GB inbox, 24/7 phone support, and 99.9% uptime with no scheduled downtime.
Since the free version of Google Apps was previously available to both businesses and individuals, Google said that the overall user experience was lacking for both groups, and that’s part of the reason why it chose to make these most recent changes. The company stated in a blog post that many business users tended to outgrow the basic version too quickly and personal users were left waiting on updated features that had to become business ready before launching.
Individual users will still be able to sign up for free personal Google accounts, which allow access to web apps across all of Google’s services. In addition, Google Apps for Education will remain a free offering.
Google Apps is currently used by millions of businesses around the world, which, for now at least, won’t be impacted by this news. But for the new startups launching daily and other businesses that haven’t yet signed up for Google Apps, there will only be one account option available, and it is no longer free.
Set up Google Apps on your iPhone
Mar 9th
Set up Google Apps on your iPhone
What do I need before getting started?
Before you can set up Google Apps on your iPhone to have instant access to your email, calendar and contacts, you need to have already obtained an Google Apps account. If you haven’t got one yet, we can help you set up an account for you for free. What you will need is adminstrator access to your Google Apps account (you need to be able to log into your Google Apps account as an administrator.
Step 1: enable Sync to your Google Apps accounts from mobile devices
You can log into your Google Apps account at: apps.google.com/a/yourdomain. Once logged in, go to Service Settings from the top menu, and select Mobile. On the next screen, you need to enable Google Sync. You may have more options in terms of level of security if you are using the Premier edition.
Step 2: Set up Google Apps on your iPhone
First of all, go to settings on your iPhone, and tap on Mail, Contacts, Calendars as the image shows below.


On the next screen (the image above on the right), tap on “Add Account”. On the next screen, tap on the first option from the top: Microsoft Exchange. Please note that you can only set up 1 Microsoft Exchange account on your iPhone.
On the next screen (image below), in the server field, please enter m.google.com and please ignore the domain field. Then you will need to enter your username and password below. Please note that you need to enter your full email address here as username, not just the first part of it (i.e. johnsmith@yourdomain.com). After this, tap on Next.

You should then be taken to the next screen as shown below. You will need to choose which services that you would like to sync on your iPhone. Please note that you may modify this any time after the setup. Tap on Done when you finish.

Step 3: Congratulations, you are good to go!
How to automatically post from your fb fan page to twitter
Oct 11th
There is a very simple way to do this, as twitter and fb are happy for it
1) Login in your facebook and twitter accounts, keep logged in
2) http://www.facebook.com/twitter/ – Type this on your facebook URL
3) If you have pages in your fb account, it will show you all the pages, and ask you which page you want to link with your twitter account.
4) Select the page and tht’s it.
5) Now whatever you write on your fan page, reaches your twitter automatically
Njoy !!
How to automatically post your Facebook status to Twitter
Oct 11th

- In FB, go to your Inbox > Notifications page
- At the top left of the notification page, there’s the link for the Notifications feed… click on it.
- To test that it works, paste that URL into your browser and hit enter. (You’ll see your notifications feed show up)
- In that URL, change ONLY the portion that stays “notifications.php” to “status.php” and hit enter.
- The resulting page ‘should’ be your Facebook Status RSS Feed.
- Copy your entire URL to a text document and save it. You’ll need it later.
- Get a Twitterfeed.com account. Twitterfeed lets you harvest your RSS feed at a set frequency and publish your feed to a Twitter account.
- Create a new Twitterfeed using the long Facebook URL you saved earlier, set your publish frequency, and you’re done.
H1 Tags in SEO
Sep 29th
H1 tags are one of the most important part of SEO which is the header tag situated in body of a website. It can be termed as the most simple form of header found on a web page.




