Skip to content
Snippets Groups Projects
Commit 38b5d31d authored by Ravish Nair's avatar Ravish Nair
Browse files

-- CRM-13570 fix

----------------------------------------
* CRM-13570: Admin-only price set fields not available when adding multiple contacts to event from advanced search results
  http://issues.civicrm.org/jira/browse/CRM-13570
parent 479e0bc3
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@
{foreach from=$priceSet.fields item=element key=field_id}
{* Skip 'Admin' visibility price fields since this tpl is used in online registration. *}
{if $element.visibility EQ 'public' || $context eq 'standalone' || $context eq 'search' || $context eq 'participant' || $context eq 'dashboard' || $action eq 1024}
{if $element.visibility EQ 'public' || $context eq 'standalone' || $context eq 'advanced' || $context eq 'search' || $context eq 'participant' || $context eq 'dashboard' || $action eq 1024}
<div class="crm-section {$element.name}-section">
{if ($element.html_type eq 'CheckBox' || $element.html_type == 'Radio') && $element.options_per_line}
{assign var="element_name" value="price_"|cat:$field_id}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment