Wednesday 07 April 2010 1:39:35 am
Hello, I have one homepage, which is located here http://www.homepage.com/ (not valid link). I have one element which is located here http://www.homepage.com/index.php/element/(id)/4 (not valid link). When I write my href in the "a" tag writing this line : "...href={concat("/element/(id)/", $element.node_id, "/" )}" the link on the website is : "http://www.homepage.com/element/(id)/4 but I need this link : "http://www.homepage.com/index.php/element/(id)/4" Do you know how can I get it? I tried : - "...href = {concat("/element/(id)/", $element.node_id, "/" )}" - "...href = {concat("/element/(id)/"|ezurl, $element.node_id, "/" )}" - "...href = {concat("/element/(id)/"|ezurl(no), $element.node_id, "/" )}" - "...href = {concat("/element/(id)/"|ezurl(no, full), $element.node_id, "/" )}" - "...href = {concat("element/(id)/"|ezurl, $element.node_id, "/" )}" - "...href = {concat("element/(id)/"|ezurl(no), $element.node_id, "/" )}" but without success Could you help me please, I'm no comfortable with links and "...|ezurl"
|