Get create account url in magento

If you want to add create “Register” or “Create an account” link in top navigation section then simply open customer.xml file in layout folder and you have to put below code in <customer_logged_out> area

<action method=”addLink” translate=”label title” module=”customer”><label>Creat an acoount</label><url helper=”customer/getRegisterUrl”/><title>Creat an acoount</title><prepare/><urlParams/><position>9</position><liParams/><aParams>id=”register”</aParams></action>

Remove Price Display from Customs Options on Single Products in the Product View in Magento

To sort out this problem simply do below:

1) Open app/design/frontend/default/your theme/template/catalog/product/view/price_clone.phtml

2) Comment out the below code:

<?php echo $this->getPriceHtml($_product, false, ‘_clone’) ?>

like this

<? /* php echo $this->getPriceHtml($_product, false, ‘_clone’) */ ?>