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 item
22 Feb 2016 09:30

alexp

rpacdn wrote:
Yes, that's the impression that I am getting. But I want to ensure that some of the things that I want to do are possible.

I have to be able to:

1. Use the User information from Joomla Mailing list and pre-populate the fields
2. Want to pre-populate the information about the tickets already purchased for customers returning to the form
3. Allow them to modify/add/delete tickets or cancel the registration altogether.
4. Want to be able to do calculations
5. Want to be able to conditionally...
Category: RSForm! Pro
21 Feb 2016 11:37

Huski

No - thought others might have had the same issue as I have. Is this something that has happened before? Looks like there could be a clash with styling as it occurs when I enter a search item, it starts to search to search then results (if any as I can't see) cause the main menu of the isis template expand to cover.
20 Feb 2016 20:24

wilco.alsemgeest

This is a default Joomla function.
Everything menu item can have a certain access level for displaying the menu.
You can configure the form to only display for registered users.
I just tested it with the latest version and it works perfectly
Category: RSForm! Pro
20 Feb 2016 19:57

rainbowrvgreg

Please address, I wish to leave the menu item which shows the form to be in view of public but when it gets to the form I wish for the form to be hidden behind a registration or a warning to register to view. I see a option to tic the permission for the form to registered only but the form still shows. I guess I can direct the menu to point to a article and make the article hold the form and make the joomla article registered but I wish to not use the plugin
Greg
Category: RSForm! Pro
09 Feb 2016 22:39

andybon

Not sure where the best place for suggestions are.

RSFormPro seems to have everything now, except....

My users complete many different forms on the site, and may need to return to edit their details.

Right now user-self-editing is possible with the directory menu item and using 'login' in the config options to just show logged in user.. BUT the limitation this has to be done on a single form basis.. so a new menu item, restricted to 'logged in' user for each and every form...

..So solution.....
Category: RSForm! Pro
04 Feb 2016 23:13

christchara

Hello,
I use Joomla! 3.4.5, RSForm! Pro v.1.51.8, PDF plugin v.1.51.1 and in configuration of RSForm I use DejaVu Sans font for my Greek language. I create a submission directory menu item and when I click in Download PDF icon for a submission, I take a pdf file with ?????????????????????????????????. All of my Greek characters doesn't show and I see ????????. What is the problem? Would you suggest me a solution, please?

The link of produced pdf is: https://mega.nz/#!eMow1J7R!hGmtYZWb6wWSZoQtvQBPf8ik2iNnfQL9CnfABK35CFk
Category: RSForm! Pro
28 Jan 2016 10:25

alexp

I just tested this and i think you might be ordering your entries by their modification date, not by publishing date. More on RSDirectory! menu item configuration options here:

https://www.rsjoomla.com/support/documentation/rsdirectory/getting-started/built-in-menu-items.html
Category: RSDirectory!
22 Jan 2016 16:15

curt2

In every browser I have tried, when I mouse over an event on the calendar page (after clicking on the main menu link to get there), it opens and closes super fast and it looks like it is blinking fast. It won't stay open for some reason to be read. I have to actually click on the date above the event to get it to open the event itself so I can read the info.

Is there an easy way to make the event info open in, say, a popup window when you mouse over it in the calendar?

My site calendar is...
Category: Templates
20 Jan 2016 12:07

alexp

RSDirectory! incorporates multiple filtering options. You can create for example a list entries menu item that will display entries from given categories. You can also set the category order.

More details on menu item configuration here:

https://www.rsjoomla.com/support/documentation/rsdirectory/getting-started/built-in-menu-items.html

I would also recommend testing the extension on our demo installation (backend access provided as well):

directory.rsjoomla.com
directory.rsjoomla.com/administrator
Category: RSDirectory!
11 Jan 2016 13:25

cameronsteele.web

I have a RSforms Pro submissions menu item. When I click it and it goes to the list view all is fine. However when I then click an item to go to the details view they appear under the footer which seems to have moved a bit to the right.

It is the latest Joomla version and the template is Protostar.
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
Displaying 181 - 195 out of 775 results.