My header issues.

Mark

Administrator
Staff member
need URL pelase, impossible to troubleshoot coding errors with screenshots.
 

Mark

Administrator
Staff member
ahh I had assumed this was a VisioList issue, but your not using VisioList for this page. You will need to tweak your .htaccess file to prevent that trailing slash, OR simply use VisioList to handle your contact page, then you don't need to worry about this and you can use your existing theme much easier.

try the contact form plugin as a start, you can easily modify the template to look however you like. http://visiolist.com/community/resources/contact-form.10/
 

Basti

Administrator
Staff member
Ah this is caused by our menu manager when clean urls are turned on to reduce user mistakes when writing links for visiolist ( clean urls have ending / ).
It appears its not working optimal and ill address this issue for vl 1.3

in the meantime you can disable the append of the automatic backslash when you add a new menu item by editing skins/admin/wrapper.html
find the following ( found 2 times )
Code:
                  var slash = "/";
from these 2 finds, edit the 2nd and change it to
Code:
                  var slash = "";
The same thing we going to do for the "edit menu" items, it seems it has the same issue
in sources/admin/manage_menus.php

The same edit as above, but this time, edit both finds

Something got seriously messed up at some point, will have this stuff working as intended in vl 1.3, until then this edit will do
 

soccerki

Member
Ah this is caused by our menu manager when clean urls are turned on to reduce user mistakes when writing links for visiolist ( clean urls have ending / ).
It appears its not working optimal and ill address this issue for vl 1.3

in the meantime you can disable the append of the automatic backslash when you add a new menu item by editing skins/admin/wrapper.html
find the following ( found 2 times )
Code:
                  var slash = "/";
from these 2 finds, edit the 2nd and change it to
Code:
                  var slash = "";
The same thing we going to do for the "edit menu" items, it seems it has the same issue
in sources/admin/manage_menus.php

The same edit as above, but this time, edit both finds

Something got seriously messed up at some point, will have this stuff working as intended in vl 1.3, until then this edit will do
Thanks for the reply Basti. Problem is, when I search for that code, I find no results. Any screenshots you're able to supply bud?
 

Basti

Administrator
Staff member
wrapper.html, line 121
or search for
Code:
// VL Menu Manager > Update Menu Item
few lines below that

manage_menus.php
line 354 or search for
Code:
// If internal Url convert
few lines below it is

and line 375 or search for
Code:
// Detect typing and alter url
few lines below is the 2nd find
 

Basti

Administrator
Staff member
Then look manually for around the lines i told you, its there. Dont know what editor you use, but its not working right ;)
 
Top