In Helix Template, I inserted this code into Custom JavaScript text box in template administration and the problem solved:
//remove conflict of mootools more show/hide function of element(function(){if(window.MooTools&& window.MooTools.More&& Element && Element.implement){var mthide = Element.prototype.hide,
mtshow = Element.prototype.show,
mtslide = Element.prototype.slide;
Element.implement({
show:function(args){...
I am using RSForm! Pro with the PayPal Plugin to calculate the total price for projects submitted by users. Currently, the price is displayed next to every item in each input field that is associated with a price. How would I go about hiding the price of each item so that only the total shows at the bottom of the form?
******** UPDATE **********
I found the solution:
Components > RSForm! Pro > Configuration > Payment > Product Price Mask
Hi,
if i set a form with Checkboxes with conditional Fields, for a Text Area shows up, can i make this behaviour (SHOW/HIDE) with a Slide effect?
i.e: daka-media.de/kontakt
If you hit the Checkbox at the bottom of the Form, it just PLOPS up.
Is there some workaround?
I'll let the experts handle this but if this helps in the meantime...
1) there is a setting in Joomla to turn off the article titles. I'm not logged in to check for details right now but I think that was in Joomla global admin articles setup (at least if you want it to be a "default"). Otherwise set it within the article under the options tab when your are editing it.
2) BUT - with another RSJoomla template (RSJuno2) I had a horrible time trying to get a large generic title of...
Hi,
I want show all Tuesdays, Thursdays and Saturdays (1st, 3rd & 5th) in the calendar. All other days should be hidden. I could manage to hide days. But not able to hide alternate Saturdays. Please help.
<script type="text/javascript">function rsfp_onSelectDate(date, type, args, calendar){var dates = args[0];vardate= dates[0];var year =date[0], month =date[1], day =date[2];var d =newDate(year, month-1, day);if(d.getDay()==0|| d.getDay()==1|| d.getDay()==3...
Your described scenario can be achieve with RSForm!Pro, but you will need to generate this functionality using a custom script. You can refer to the following article for a simple example on how to hide and show fields through custom scripting:
If you take a look at the front end of the multi page form that comes with RSForms Pro you will find the onclick events for the next and previous buttons. You can just replace the page breaks with basic buttons and in the additional attributes write in the onclick function like this:
onclick="rsfp_changePage(2, 1, 2, 0)"
You will need to make one of these buttons for each selection, in your case you have 6 values so you will need to create 6 buttons. Then you'll need to remove those page...
I use Rssearch to let users to find articles in my website with keywords.
Rssearch works fine but i would like to hide somes articles from Rssearch results.
Is this possible ?
Is it also possible to hide the Article Title in the search results, RSsearch shows the backend article title that is not always relevant for frontend users.
I have latest greatest version of RSForm Pro. Joomla is up to date, and we are using PHP 7.
The site is working fine. The registration form is also working and sends out both user and admin...
Depending of the outcome of a calculation (price * quantity), I want to hide / display a field. I think it's done by JAVA-script, but I don't know how to do that.