UPDATE subscribers SET email_format = replace(email_format,”TEXT”,”HTML”)
UPDATE subscribers SET email_format = replace(email_format,”TEXT”,”HTML”)
Hi this is take some more steps. You follow very carefully.
1. C:your_folderincludestemplatesyour_templatetemplatesyour_file.php
2. C:your_folderincludesfilenames.php –>(Here mention your file name)
3. C:your_folderincludesmodulespagesyour_page_folder –>(This Your Page Folder, You create here you header and script file also)
4. C:your_folderincludeslanguagesenglishbusiness_edit.php
This is for the stapes in your page creation. If i found more information i can inform you.
“The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later”
You find above error. You Have two Problem.
1. First you check server Side. And ask him.
2. Next you check your root folder any “maintenance.flag” file is there. If you find that file. Kindly remove or rename. Your server will work good. This is when set your server maintenance mode. This file automatically create in root folder. Then this redirect all files in 503 error page in side.
1. You Want cart page to view the SKU number :
You can use below code in your : app/design/frontend/youtheme/yourtheme/template/checkout/cart.phtml
<?php echo $this->__(‘SKU Number’) ?>
And add item section this : app/design/frontend/youtheme/yourtheme/template/checkout/cart/item/default.phtml
<?php echo $_item->getSku() ?>
2. You want to view the Page View :
app/design/frontend/youtheme/yourtheme/template/catalog/product/view.phtml
<!– Write SKU –>
<?php echo $this->__(‘SKU Number :’); ?> <?php
$sku = Mage::getModel(‘catalog/product’)->load($_product->getId())->getSku();
echo $sku; ?>
<!– Sku End –>
its is working for my side.
Hi, this is one of very critical issue for me. I found one forum this solution.
That fourm url is below :
http://www.magentocommerce.com/boards/viewthread/20813/P75/
And I mentioned that code also. If they deleted that thread this is useful.
1. You this path : /app/code/core/Mage/Adminhtml/Block/Sales/Order/View/History.php
// For All Status View Purpose Below
public function getAllStatuses()
{
$statuses = $this->getOrder()->getConfig()->getStatuses();
return $statuses;
}
// For All Status View Purpose Above
I added this code after “public function getStatuses()” this function inside.
2. Next you go Here : /app/design/adminhtml/default/default/template/sales/order/view/history.phtml”
Find below Code :
<?php foreach ($this->getStatuses() as $_code=>$_label): ?>
<option value=”<?php echo $_code ?>”<?php if($_code==$this->getOrder()->getStatus()): ?> selected=”selected”<?php endif; ?> <?php echo $_label ?></option>
<?php endforeach; ?>
You feel Backup Above code take or Comment line.
And change Below Code :
<!– Write Below for Order Status –>
<?php foreach ($this->getAllStatuses() as $_code=>$_label): ?>
<option value=”<?php echo $_code ?>”<?php if($_code==$this->getOrder()->getStatus()): ?> selected=”selected”<?php endif; ?>><?php echo $_label ?></option>
<?php endforeach; ?>
<!– Write Above for Order Status –>
This is working for me. And check your side. And thanks this option giving that forum “thekanyon” also.
For Some Solution is available in magento.
You need check your magento extension. Some magento module is conflict for One Page Checkout Javascript Error.
You can remove the extensions. This is will work.
Go to Admin –>Magento Connect –> Check your extension. You remove unwanted extension then its working fine.
You just put Below code in your template file.
<td><?php echo $_item->getSku() ?> </td>
1. Go APP Directory –> template –> checkout –> cart –> item –> default.phtml
Here you place above code.
2. Go APP Directory –> template –> checkout –> cart.phtml
Inside your Heading Title.
that’s all.
Just put this code where you want:
$this->getSkinUrl(“images/sample.jpg”)
– This skin url code: $this->getSkinUrl
Example:
echo ‘.main { background:url(‘.$this->getSkinUrl(“images/sample.jpg”).’) 0 0 repeat-y !important}’;
<img src=”$this->getSkinUrl(“images/sample.jpg”)”>