I need to create a menu item that passes query string parameters.

When I add the path "civicrm/profile/create&reset=1&gid=2" it results in an error and the result URL is "/?q=civicrm/profile/create%26reset%3D1%26gid%3D2"

How do I create a menu item that passes the correct URL with query string parameters?

Thanks!
Chris

Comments

simspace’s picture

FYI I'm running Drupal 6.3

simspace’s picture

I just found the solution on the CiviCRM forums.

I changed my menu path...

from:
civicrm/profile/create&reset=1&gid=2
to:
civicrm/profile/create?reset=1&gid=2

and now I can display a CiviCRM profile page using a Drupal menu path and pass in the appropriate query string parameters.