I have created a CMS page named Shipping from my magento admin CMS->pages.Now i need to create a link in footer as shipping and have to link the shipping-CMS page to the link.How to create a link in magento footer?
just go to Open Admin panel and go to CMS>static block and Open footer_links static block and add new link to just like that
<li>YOUR CMS PAGE NAME</li>
Or open footer.phtml from app\design\frontend\YOUR_PACKAGE_NAME\YOUR_THEME_NAME\template\page\html
and add your link .
Related
I want to add a WhatsApp button on a template by default instead of doing this on each page
I want to add a button like this
we are using Magento page builder
should de here, in this section
I'm a beginner in Magento, and I have access to the admin page and the server. I don't know where it's modified from
i changed the images directly in the coding of the home page in the panel
and now its showing on the home page only before doing this it was showing on every product page any help will be appreciated.
Home Page - Screenshot
Product page - Screenshot
I think in homepage you have used 2columns-left layout and for product detail page 2columns-right layout, so you have to check into both layout's phtml file and check if anything(e.g. cms-block) missing for product detail page.
I think this is cms block which are calling on different positions first find block id for this and from admin disabled that block if you want to remove it thanks
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">
{{block type="bannerslider/default" name="bannerslider.bannerslider" template="bannerslider/bannerslider.phtml" bannerslider_id="your_bannerslider_id"}}
I am trying to add a slider using the above code, to a cms page in Magento.
My banner id is called mySlider, so have done:
{{block type="bannerslider/default" name="bannerslider.bannerslider" template="bannerslider/bannerslider.phtml" bannerslider_id="mySlider"}}
Nothing shows.
I saw that someone recommended setting each banner to the day before it was creating but that didn't work either.
You should copy module files to your current template files. So that you have bannerslider/bannerslider.phtml in your templates folder.
Also look if slider is active and with slider content.
You should use the banner ID which is the number in the first column in the admin panel (under the section for managing the slider). What you are using now is simply the title.
Hello I'm trying to edit home page
http://www.kreatifyazilim.com/magento/
For example I want to write code on the middle part of the page, ( banner )
The dropdown boxes you can see on demo must be included in banner side.
Go to Magento admin->CMS->Pages
Select Home Page
In Content Tab, add your dropdown
Create a new template (home.phtml).
(make a copy of design/frontend/base/default/template/page/1column.phtml).
And choose this template in the CMS Page design layout.
You can freely edit the complete template (PHP+HTML)