Magento
Magento: Dynamic content using Query String in url
app/design/frontend/ultimo/default/template/custompage/careers.phtml app/design/frontend/ultimo/default/template/custompage/careers_details.phtml
Extension
Magento: Send Email Using Custom Form
Create Your custom Form with magento validation In: app/design/frontend/Your_theme/default/template/custompage/application_form.phtml Create A small extension with following files: app/etc/modules/Sushant_Contacts.xml app/code/local/Sushant/Contacts/controllers/IndexController.php app/code/local/Sushant/Contacts/etc/config.xml:
Magento
Magento: Use default validation in custom form
Magento uses Prototype library to manage form validation. In Your custom form just assign a valid class names to your input fields, and pass the form id to VarienForm object.
Magento
Magento: Country Dropdown
Get An Array of Country Names/Codes in Magento The above code will print out an array containing every country code and country name known to Magento. Create a Country Drop Down in the Frontend of Magento Create a Country Drop Down in the Magento Admin
Magento
Magento: Ultimo Theme Notes
1- For Custom Menu In responsive use the default for reponsive. and use the after for sub menu as below: 2- add this meta tag in head.phtml:
Magento
Magento: Enable pdf extension on WYSIWYG
Came across other day the need to upload pdf files through the WYSIWYG tool on Magento. I’ve checked the native functionality and it allows by default only images (jpg, png, gif). So, to change the initial behavior I opened the file app/code/core/Mage/Cms/etc/config.xml, which defines the filetypes that can be uploaded, Read more…
Magento
Magento: Redirect to login page while user not login on landing
Redirect User To Login If User Is Not Logged In Or a login Link To see Product details for non-logged in user:
Extension
Magento: How to Add Custom Field in the Billing and Shipping Address of Onepage Checkout
Sometimes we need to add some Custom fields in the Billing and Shipping Address of the Onepage Checkout for Registered user, Guest user and at the time of Registration. Create a module by Following Steps: Step: – 1 Add Custom Field into Billing Address tab of the Onepage Checkout in Read more…