digifx Posted February 24, 2019 Share Posted February 24, 2019 Hello, I like to modify the tageline of the download section as you can see in the screenshot. The text "Order VPS now" should link to the cart.php. I found the modification can be done in the language file: $_LANG['downloadLoginRequiredTagline'] = "Please login to access the requested file download. </br> Not a customer yet? Order VPS now"; However, if I try "Not a customer yet? <a href"https://domain.com/cart.php"Order VPS now"</a>"; It does not work. I get an "Oops, something goes wrog message" How to I place the link here correctly? Chris 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted February 24, 2019 Share Posted February 24, 2019 6 hours ago, digifx said: I found the modification can be done in the language file: it can, but it shouldn't - you should be using Language Overrides to do this and not editing the original files. 6 hours ago, digifx said: However, if I try "Not a customer yet? <a href"https://domain.com/cart.php"Order VPS now"</a>"; It does not work. I get an "Oops, something goes wrong message" shouldn't it be... $_LANG['downloadLoginRequiredTagline'] = "Please login to access the requested file download. </br> Not a customer yet? <a href=\"cart.php\">Order VPS now</a>"; you shouldn't need to include your domain as you're already on your own site - though you can do so if you need to. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.