Advanced Search

Search by Keyword
Search by User Name
   

Search Options

Find Posts from
Sort Results by
Jump to Result Number
Search in Categories

Search Results

Searched for: menu
11 Jan 2016 09:46

p.jaworski

my second question was also resolved by alexp : "When user is chosen from the dropdown menu, he will not receive email that form is fieled in, and hew was chosen to be able to see it in directory submission. How to fix this ? "

solution is simple :

in form-> properties go to "PHP email scripts". Then in field: "Script called before the User Email is sent" please pasted this script:
$user = JFactory::getUser($_POST['form name']['drop down field with users list'][0]);
$userEmail['to'] = $user->email;
Great support alexp :)
Category: RSForm! Pro
11 Jan 2016 09:21

p.jaworski

ALEXP. THANK YOU NOW IT WORKS BELOW IS SOLUTION:

Like alexp wrote me i ve created drop down field, and paste in this field "items" this code:
//<code>
$db = JFactory::getDBO();
$db->setQuery("SELECT `id`, `name` FROM #__users");
$rez = $db->loadObjectList();
$items = "|Select...\n";
foreach($rez as $r){
	$items .= $r->id."|".$r->name."\n";
}
return trim($items);
//</code>

After that i went to Properties (of this form)->PHP Scripts and paste in "Script called after form has been...
Category: RSForm! Pro
11 Jan 2016 08:23

alexp

FAQ
Though there is no built-in feature for this available in the Tickets Dashboard menu item, you can implement this restriction via template overrides.

You will have to create one for the following layout:

components/com_rsticketspro/views/dashboard/tmpl/default.php
Category: RSTickets!Pro
10 Jan 2016 19:25

info2144

I have 2 memberships.
One don't have extras and after submit the form it will show the thank-you message (url ends with: /show-thank-you).
The other one has extra options (with prices), but after submit there is no message (url ends with: /payment?payment=none)
I have made a article and add it to a menu-item, but the same thing happens when I want them to redirect to url. The one without extras is going to the right url from the menu-item, and the one with the extras is (still) going to the url...
Category: RSMembership!
09 Jan 2016 23:15

p.jaworski

Like alexp wrote me i ve created drop down field, and paste in this field "items" this code:
//<code>
$db = JFactory::getDBO();
$db->setQuery("SELECT `name`, `email` FROM #__users");
$rez = $db->loadObjectList();
$items = "|Select...\n";
foreach($rez as $r){
	$items .= $r->email."|".$r->name."\n";
}
return trim($items);
//</code>

After that i went to Properties (of this form)->PHP Scripts and paste in "Script called after form has been processed" below code:
<?php
 
$db =...

and this...
Category: RSForm! Pro
09 Jan 2016 17:51

clucking

Hi,

I'm viewing the submissions in a menu item - works great. But my background is white and so is the heading of the table in the menu item...

I know I can change the CSS in the settings for the directory - but I'm not familiar with this. Can anybody please guide me in the right direction?

From what I see, is the white text coming from this statement in com_content.css:

table th a {
color: #ffffff !important;
}

So what should the CSS statement be in order to change this to e.g. black?

Thanks,

Claus.
Category: RSForm! Pro
05 Jan 2016 06:55

Roberts

I have set RSJuno template menu item 'Home' to default in order to display featured articles on the home page. Just as it would with the Joomla menu.

The articles are not displaying at all !
Category: Templates
21 Dec 2015 08:57

alexp

We never advertised that RSTickets!Pro departments can behave like this. We do have a feedback section that you can use to suggest new features and functionality, but it does take time. You can imagine that we have literally hundreds of requests like this.

There are some workarounds of course that can be applied to implement the desired functionality:

1. Create a template override for the submit ticket layout. Use some custom PHP code to detect the group of the current logged in user and...
Category: RSTickets!Pro
16 Dec 2015 08:28

alexp

There is no RSForm!Pro setting that could could cause this. Can you post a link to the menu item in question so we can have a look ?
Category: RSForm! Pro
15 Dec 2015 21:17

info3042

Hello there,
I have a published RSForm that is not displaying on the front end. I am using Joomla 3.4.5. I associated a Menu item with the form and it was working just recently. I modified some text in a radio button item and clicked Update, then Save & Close, and the form is now gone. I duplicated it and created a new Menu item to associate the dupe to, and the duplicate also is not displaying. I changed the form association in order to see if it was forms in general or just this specific form...
Category: RSForm! Pro
14 Dec 2015 09:35

alexp

nshour wrote:
I've added 3 such menus and under "Tools" there option still reads "Add to backend menu" for these 3 (instead of remove).

There is an update to RS Form Pro (1.50.26) and if/when I try to install it it fails, I think due to these menu items. I was forced to restore my site from backup.

Can someone please help with removing these backed menu items?
Please submit a support ticket about this so our staff members can help.
Category: RSForm! Pro
14 Dec 2015 09:19

alexp

Screenshots in a different language really don't help. I tested this on our test installations and it is working fine. If you are still having issues with this, please submit a support ticket so one of our staff members can assist you with this.
Category: RSMediaGallery!
13 Dec 2015 14:28

kees.de.goeijer

Hello Alex,

Yes I will give you: Part of the message is hidden for the guests. Please log in or register to see it.


Kees
Category: RSMediaGallery!
11 Dec 2015 17:00

nshour

I've added 3 such menus and under "Tools" there option still reads "Add to backend menu" for these 3 (instead of remove).

There is an update to RS Form Pro (1.50.26) and if/when I try to install it it fails, I think due to these menu items. I was forced to restore my site from backup.

Can someone please help with removing these backed menu items?
Category: RSForm! Pro
11 Dec 2015 16:08

stevent

This code does a query for each dropdown menu. I was wondering if there would be a way to get all the submitted data at once when loading the form, and then preselecting all the fields. I've added this trick to a form with multiple dropdown's, adding 9 extra queries (to a form that already has queries to populate drop down's base on a table)
Category: RSForm! Pro
Displaying 361 - 375 out of 1611 results.