Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1074455

    Hell Enfold Team,

    I have been debugging our website since the latest Enfold update and have come up against one that I can’t figure out. There is shortcode that we place for our custom buttons in we place in our Events for Sign Ups. Our issues is now, for some reason I can’t figure out, the shortcode no longer renders the button within our plugin, Calendarize It, which we use to create all of our events. I have been attempting to get this resolved with them since February 18th to no avail. This morning they wrote and suggested that it is not their plugin but that our Enfold theme itself is interfering. The shortcode, which I will post below, works everywhere else but their theme so I’m at a loss. I feel like it may have something to do with one of our function.php files…I don’t see any javascript errors either. It is my hope we can get this resolved with you as we are approaching our busy season and many of our users are experiencing trouble simply trying to sign up for a number of our events. I very much appreciate any guidance you may be able to give me!!

    Thank you.

    #1074458

    Here is the link to the event where the button does not show: https://crossroadsabc.com/events/made-2-move-2/?event_rdate=20190313090000,20190313100000

    The shortcode for the button is: [av_button label='Sign Up' link='manually,https://crossroadsabc.ccbchurch.com/goto/forms/953/responses/new' link_target='_blank' size='small' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']

    #1075302

    Hi crossroadsabc,

    Can you try adding this php code at the bottom of your functions.php:

    add_filter('avf_builder_boxes', 'add_builder_to_posttype');
    
    function add_builder_to_posttype($metabox)
    {
      foreach($metabox as &$meta)
      {
        if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
        {
          $meta['page'][] = 'events';
        }
      }
      
    
      return $metabox;
    }

    Best regards,
    Nikko

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.