Web Designing
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.
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.
10 Best RSS Tips
Sep 29th
RSS is not for everybody in the same way as all other mediums of technology are. However by far, RSS is considered the most reliable content delivery channel there is.
Domain Name Transfer
Sep 29th
Transferring a domain name can be as easy as signing up for a forum or as difficult as recreating the Mona Lisa. Here are some ways to make a transfer go smoother and some key points to remember on the domain name transfer process.
Linux Vs Windows Hosting
Sep 19th
One of the first choices which must be made when deciding upon a web hosting provider is what operating system the server will run on, and choice here is generally between Linux and Windows.
Linux Hosting
Sep 19th

A Linux hosting choice often comes down to cost, stability, and security. The open source Linux hosting alternative allows websites to be built on the Linux operating system.




