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.