Idea sandbox Idea sandbox
Popular ideas Popular ideas
Ideas in development Ideas in development
Implemented ideas Implemented ideas

Contributor virus

Replacement Files Hardcoded  
Written by virus the 14 Aug 10 at 18:36. Related project: 1.x all. New
Would it not be nice if you can change the replacement fields messages to your own, currently you can't as they are hardcoded , to change them you need to edit the file just to find out that it gets replaced when you update / upgrade.
1
votes
up equal down
Solution #1: RE: Replacement Files Hardcoded
Written by virus the 14 Aug 10 at 18:36.
Can it be placed within the admin area of LimeSurvey, maybe create another tab under the setup of your survey.

Add a comment or propose a solution >>

RETURNTOSURVEY Button  
Written by virus the 14 Aug 10 at 18:12. Related project: 1.x all. New
Currently in LimeSurvey the replacement field for RETURNTOSURVEY if used gets replaced with and hyperlink, which does not quite fit in with all the nice buttons you have on your template.

So to make it blend in with the rest of the buttons on your template you will have to make some adjustments to your template code.
3
votes
up equal down
Solution #1: RETURNTOSURVEY Button - TEMP SOLUTION
Written by virus the 14 Aug 10 at 18:12.
Have the hyperlink removed from common.php and have it replace by a button.

You can accomplish it now by doing it manually, but IS NOT RECOMMENDED as you have to make changes to the core of limesurvey which will be replaced by your next update / upgrade, but it can be done.

SOLUTION FOR NOW UNTIL APPROVED
=================================
open common.php
goto line number 2990
replace with $savereturn = "$relativeurl/index.php?sid=$surveyid";
goto line number 2995
replace with $savereturn .= ";";
Now use the following code in your template layouts

Refresh your template and the hyperlink has been replaced with an button.

Add a comment or propose a solution >>