I have created a About us page from backend and trying to link that page to the About-us at the footer. I am using:
After clicking on About Us It's working. URL: http://localhost/magento2/about-us but there is a blank page, no header and footer.
you can do it by using Mage:
About Us
Use this code to call your page in cms content to call URL directly
{{store direct_url=about-us}}
Related
i just installed theme but when i click product detail ajax pop up it shows header and footer , is there any setting in admin to add or remove that:
link of website :http://bellb2b.com/
link of qucik view ajax url :
http://bellb2b.com/ajax/index/options/product_id/19/
i changes theme to default one still same bug
how can i solve bug please guide
I have been searching for hours for a solution to this. I want to change the content of the footer link Orders and returns to just read " please contact us for your return authorization number, and our phone number. I can't seem to find where this information resides.
EDIT: I would like to change the form that appears when the "Orders and Returns" link in the footer is clicked
Are you trying to change the content of a page that is link from the footer of your site?
If this is what you are trying to do, then go to that page and look at the title in your browser then go to the admin -> CMS -> Pages and look for that title
i am trying to remove magento controller url in browser address bar.
for example my site have URL WWW.test.com/ - this page is a home page for my site.
But but i have redirected to login page for customer login. once user type www.test.com site will be redirect to WWW.test.com/customer/account/login display login page.
So for Seo purpose i am trying to set "WWW.test.com/" as a login content with parent URL (WWW.test.com/) . I tried all the ways using ht access. but not reflect.
Can any one able to give me better solution for this problem
(Sorry for bad English)
Thanks all
The easiest approach is to insert login form HTML into your CMS page.
I'm new to programming and starting to work on Magento.
I need to show a Magneto customized login page in an Ajax popup box on homepage load.
How can i achieve this?
Can any help me in detail please?
I am working on joomla application. I am using SEO url for accessing application page, but some of page use alias. When I use pagination on alias pages it will give page not found error, but with SEO url it's working fine. Anybody have any suggestion for use pagination on joomla alias page.
SEO url: http://example.com/community/inbox
Alias url: http://example.com/inbox.html
Thanks
You should always use the non-url-safe notation in your code and add JRoute to it. This might look like this:
$link = JRoute::_(JURI::base()."index.php?option=com_yourcomponent&view=yourcomponent&Itemid=1&limitstart=20");
Above is a link to the second page in a component view, when displaying 20 items a page. Hope it helps.