Module: HTML - create a link
Posted: Fri Jan 22, 2016 8:16 pm
Hello,
I have some issues with the module HTML in OC 2.x.
I am creating a new page and will add also some links (i.e product-page, contact, etc.) on this page.
When creating a link with the editor to i.e contact I would like to use only the direct link without any domain name i.e.
Unfortunately OC will save the link in a way like: . This will not work of course.
I have to edit the code manually in the code-view to.
Is there any way to save the link without the http:// ?
Regards
kuzco
PS: This will make sure, that I an move my test-site from localhost to a "real" sever i.e. http://www.mydomain.de without editing these pages again.
I have some issues with the module HTML in OC 2.x.
I am creating a new page and will add also some links (i.e product-page, contact, etc.) on this page.
When creating a link with the editor to i.e contact I would like to use only the direct link
Code: Select all
index.php?route=information/contact
Code: Select all
http://www.mydomain.de/index.php?route=information/contact
Code: Select all
<a target="" href="http://index.php?route=information/contact">
I have to edit the code manually in the code-view to
Code: Select all
<a target="" href="index.php?route=information/contact">
Is there any way to save the link without the http:// ?
Regards
kuzco
PS: This will make sure, that I an move my test-site from localhost to a "real" sever i.e. http://www.mydomain.de without editing these pages again.