Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Ajax not working? Submit button also gone

Viewing 2 posts - 11 through 12 (of 12 total)
  • Trevor Moderator
    #134962

    I did a bit of digging and whilst they LOOK like normal shortcodes, Visual Composer actually expands them using javascript.

    I think this might help. Put this:

    if(class_exists('WPBMap') && method_exists('WPBMap', 'addAllMappedShortcodes')) {
      WPBMap::addAllMappedShortcodes();
    }

    … into these these lines:

    while ($query->have_posts())
      {
      $query->the_post();
    
    ?>
    <div>

    Like this:

    while ($query->have_posts())
      {
      $query->the_post();
      if(class_exists('WPBMap') && method_exists('WPBMap', 'addAllMappedShortcodes')) {
        WPBMap::addAllMappedShortcodes();
      }
    ?>
    <div>
    Dries Van Liefde
    #134985
    This reply has been marked as private.
Viewing 2 posts - 11 through 12 (of 12 total)

The topic ‘Ajax not working? Submit button also gone’ is closed to new replies.