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
17 Jul 2013 16:51

pondball

Brand new to this (just got RSForms Pro this morning and have created my first form... and I see where you can create a menu item for an RSForm but I don't want the link to appear in any menu...

what I want is for a link to appear at the end of an article describing a new product... so... a full page of info on the page and then 3 links... 2 to downloadable pdfs and the other to a form to fill in for further information...

I'm using Joomla 2.XXX latest update, and YooTheme, Cloud
Category: RSForm! Pro
17 Jul 2013 07:04

silviup

There is no default feature for this, and it will require some custom scripting. I will provide the entire implementation, as well as some explanations (please note that, because I have no information about your exact same scenario, I will implement something similar and you will need to adapt it for your custom case).

What you need:

1. You will need to create 2 forms, one for the customer through which he will submit his question - 'Customer', and one for the staff member, through which he...
Category: RSForm! Pro
11 Jul 2013 08:33

adrianp

Hello,

You can try one of these 2 approaches:

1. If you are showing the form via RSForm!Pro menu item, you can simply restrict it to the registered user group.

2. Use a custom script in the "Scripts called on form display area" that will check if the user is not logged in and replaces the form with a custom message:
$user = JFactory::getUser();
if($user->id == 0)
$formLayout = '<p><font color="red"><strong>Please login to see the form</strong></font></p>';

More information on the...
Category: RSForm! Pro
04 Jul 2013 10:57

adrianp

Hello,

You can try using the following script within the dropdown's default value area (along with the code tags):
//<code>
$db =& JFactory::getDBO();
$db->setQuery("SELECT `name`,`email` FROM #__users LEFT JOIN #__user_usergroup_map ON #__users.id=#__user_usergroup_map.user_id WHERE #__user_usergroup_map.group_id=6");
$results = $db->loadObjectList();
$items[] = "|Please Select";
foreach ($results as $res){
	$value = $res->email;
	$label = $res->name;
	$items[] = $value.'|'.$label;
}...
...
Category: RSForm! Pro
02 Jul 2013 15:55

oorzaak

Well I doubt if I should give full code of my solution as it involves (a) quite some sql tweaking and (b) some hard coded search strings that are specific for my site. I can give you a hint though:

The RS Joomla support guys helped me to find the location of the details() function, which loads all event data based on a list of event ids. I did a lot of table joining in order to get from the event id to the desired menu id. And in this process I had to throw in some hard coded search strings....
Category: RSEvents!Pro
02 Jul 2013 09:53

oorzaak

Hi,

I hop e you can help me think up a solution for this:

In RSEvents Pro I made categories corresponding to a number of artists. Each event on the site will get categorized with only one category (a content based decision).

Each artist has their own page / menu item on the site. Here we have a main article and a few modules showing news articles and also an upcoming events modules for RSEvents Pro. Each artist's upcoming events module shows only their own events and the default item id is...
Category: RSEvents!Pro
01 Jul 2013 12:43

silviup

Unfortunately, no, only the 'Categories' menu item is available, which enables you to list all categories. You can post this as a feature request in our feedback section:

www.rsjoomla.com/feedback.html

and we will take it into consideration for future revisions.

You can read more on RSEvents!Pro's menu items here:

www.rsjoomla.com/support/documentation/v...t-in-menu-items.html
Category: RSEvents!Pro
01 Jul 2013 06:28

octavian

Have you tried:
//<code>
$doc = JFactory::getDocument();
return $doc->getTitle();
//</code>
Category: RSForm! Pro
28 Jun 2013 18:52

tecpromotion

Did you have a solution?
I was looking for this too.

Thanks.
Category: RSForm! Pro
27 Jun 2013 04:22

gboreland

Hi,

I have configured a menu item to display a list of events.

This works like a treat, however is there a way I can customise the header of the page to add some copy about the events rather than just display a list of events?

Regards
Geoff
Category: RSEvents!Pro
19 Jun 2013 10:21

silviup

The easiest way to achieve this would be to have two forms, one for the unregistered users, which includes the Joomla! registration integration and one for the registered users which does not include the Joomla! registration integration. You can easily separate the two forms from registered and unregistered users by assigning them to separate menu items that have different access levels (public and registered).
Category: RSForm! Pro
11 Jun 2013 15:29

Barboo

How do you indicate which form displays in the menu item or module if you don't use {rsform #}?
Category: RSForm! Pro
05 Jun 2013 06:43

octavian

See the Advanced Options section in this article.
Category: RSMediaGallery!
04 Jun 2013 13:12

jenjg@msn.com

I see how you would add {emailcloak=off} before {rsform #} but what if you aren't using the {rsform #} snippet? For example, I have a menu item that displays the form. I also have a module that is an RSForm. How would I disable the Joomla Content Email Cloak for these examples?

Thank you,
Jennifer
Category: RSForm! Pro
30 May 2013 16:58

contact13

I realize this is a very old question, but I wanted to provide an answer for anyone else that googles this issue and comes across this thread...

This is certainly not a great solution, but it is working for me at the moment...

You will need a couple of fields and a page break to accomplish this.
  1. Have your Single line product for whatever your registration cost is, and assign a value to it.
  2. Create a checkbox (Name: "Use Coupon" or similar) with only one item (default unchecked) that says "I...
Category: RSForm! Pro
Displaying 421 - 435 out of 779 results.