Is creating new phtml is allowed in magento go? - magento

Is creating/adding new phtml is allowed in magento go? Please let me know as I am new to magento go.

No you can not add any phtml file in magento go, magento go has not access of any file structure.
Besides you can only change in your theme css or add js code in design configuration Miscellaneous Scripts option.

Related

How to create sub pages in magento?

I am working on Magento. I want to create a sub pages of cms page and sub pages will be shown in sidebar Let me know how can I do this?
I want sub pages as given in screen-shot:- http://awesomescreenshot.com/09c5rfnr41
I would like to inform you that hierarchy feature is not available in Magento Community version.
But I feel that you can achieve your requirement by using this extension https://www.magentocommerce.com/magento-connect/page-summary-block.html
Thanks!
Follow these steps:
Login to admin and navigate to CMS -> Pages.
Create new page.
Add URL Key as main-url/sub-url for example if your main page url is aboutus then sub page will be look like aboutus/aboutus-sub
To add those links to left sidebar, you should create phtml file in your theme template folder and call that phtml file from appropriate xml file.
<reference name="left">

TinyMCE outside Magento

I'm creating a mask for Magento, because the customer does not want employees to use directly magento. I need to change the descriptions of the products, can I use TinyMCE outside Magento? If I try to include it in my php file does not work
Thanks

Create admin front with a simple form via a module [Magento]

I am pretty new to Magento and am trying to understand how to create admin (backend) page. I have figured how to create/define the controller and action (along with editing the config.xml).
But now the next problem at hand is to display a simple form in that page. I understand that, I have an option to create blocks and mention the blocks in a layout.xml. But from what I figure is that layout.xml needs to be present in the theme folder. Which I can't do as my magento extension will be installed and I have no access to the user's system.
So the doubt is. How to display a simple from in a backend (admin) page
without having to make any changes to the theme's layout ?
For the admin panel module you don't need to mention the block in the layout.xml of your theme, you only need it to be defined in config.xml file in your "app/code/local///etc/" and a layout file is created in "app/design/adminhtml/default/default/".inside the Block create a folder named "Adminhtml" inside it your can create your form.
Refer this
http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/how_to_create_an_admin_form_module

How i can create url from .phtml in magento

I want in magento create link as it. From .phtml file. I am can't find method for did it
magento/index.php/quotes/index/create/id/1/
Try this:
Mage::getUrl('quotes/index/create', array('id'=>1));

call different phtml file from cms in different website

I am using CMS/pages in magento. I am calling phtml file from cms/pages/homepage.
CMS pages is common for all the websites that are created in that system. (I guess correct me if i am wrong)
How can i call different phtml files based on which website is loaded ?
You can create different CMS pages for different store views (and thus websites). Check the Magento wiki if you don't know how to work with it's admin panel.

Resources