How to view in weight back value in kg?

Hi you go to app folder.
1. Then go to design–> frontend –> yourtheme –> yourtheme –> template –> catalog –>product –>view –> attributes.phtml

there you can find this code : <?php echo $_helper->productAttribute($_product, $_data[‘value’], $_data[‘code’]) ?>

to change

Then add below code :

<?php
$_weightValue = $_data[‘value’];
if($_data[‘code’]==’weight’){ //this attribute code checkup condition
if (is_numeric($_weightValue)) //this attribute value numberic or not checkup condition
{
$_weightValue = round($_weightValue, 2).’ kg’;  //round to 0.00
}
}
?>
<?php echo $_helper->productAttribute($_product, strip_tags($_weightValue), $_data[‘code’]) ?>

That’s all.

How to Search working in Magento?

Hi go to Admin.

1. Select Manage Attributes.
2. Select all Product Attributes.
3. Set Each Attribute Search option visible.
4. Select Advanced Search and Search option is YES. This is below Search in Front End Section have it.

that’s all. 🙂

How Page Attribute template View in Page Section?

Easy Solution :
I think you mean the temple “option” in the attributes admin isn’t showing. If so, you may notice that you don not have an “active” theme after an upgrade. Re-activate your theme.

🙂
This is above line i can find good url :http://wordpress.org/support/topic/i-cant-see-the-page-templates-under-attributes, This is says this guy : premiumdw

I have no more english knowledge. So, thank you very much premiumdw 🙂

Another Post Template Create Option one guy telling here if anybody want kindly check it below url.
http://wordpress.stackexchange.com/questions/2765/adding-page-attributes-metabox-and-page-templates-to-the-posts-edit-page

© 2020 Spirituality