Top Menu

Category Archives Magento

What is SSL? SSL certificates are what enable websites to move from HTTP to HTTPS, which is more secure. An SSL certificate is a data file hosted in a website's origin server. SSL certificates make SSL/TLS encryption possible, and they contain the website's public key and the website's identity, along with related information. Devices attempting to communicate with the origin…

[heading title="So please follow below classes which are used magento for validation.This is a heading" type="h2" font_size="" margin_top="0" margin_bottom="0" color=""] [code inline="true" scrollable="true"]<input type="text" name="billing[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text validate-number validate-length maximum-length-10 minimum-length-10  <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="billing:telephone" />[/code] validate-password: (Please enter 6 or more characters. Leading or trailing spaces will be ignored) validate-admin-password: (Please…

[heading title="You can use locale files to change any labelsThis is a heading" type="h1" font_size="" margin_top="30" margin_bottom="30" color=""].   [heading title="Find the following files in this path:This is a heading" type="h3" font_size="" margin_top="30" margin_bottom="30" color=""] app/locale/en_US/Mage_Checkout.csv app/locale/en_US/Mage_Customer.csv app/locale/en_US/Mage_Persistent.csv Where en_US is your current locale. Find the following line "Telephone","Telephone" and change the second part to your "Telephone","Mobile Number"

I have also facing the issue of when I click on Magento Connect Manager it redirects to the homepage of my site.Downloaded magento and reinstalled downloader to my store root directory - Deleted my var/cache and var/sessions- Deleted connect.cfg and cache.cfg from downloader folderRefresh site and again connect magento connect manager.If your problem solve please comment me.thanks   

Store has thousands of Products and Catalog Price Rules. The rules weren't being applied, and after debugging cron and other things that have been a problem in the past, I took a look at the catalogrule_product_price table to see what was there. I saw a single entry:Notice the value for rule_product_price_id -- Indeed, the max value for an INT(10) field.…

Learn how to remove the Newsletter from MagentoIn this tutorial we will show you how to remove some of the default blocks from your site using only the Magento admin panel.With the help of the panel you can remove the Newsletter blocks from your Magento site.To remove the Newsletter  in to your Magento admin panel, go to System > Configuration,…

Find Outapp/design/adminhtml/default/default/template/sales/order/view/items.phtmlSuppose we want to add product images then we have to add with an extra table head with the current haead <th><?php echo $this->helper('sales')->__('Images') ?></th> // line No 39And Next Step Again find outapp/design/adminhtml/default/default/template/sales/order/view/items/renderer/default.phtml<td>   <?php    $obj = Mage::getModel('catalog/product');          $_product = $obj->load($_item->getProductId());?>    <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(150); ?>" alt="images" /></td>

12
Close