-
AuthorPosts
-
July 25, 2016 at 7:12 pm #664776
Hi,
I’m using the Events Manager plugin (http://wp-events-plugin.com/) and when I test their search function between a date range it shows me all results when I have Enfold enabled but when in the default WordPress theme, it only shows me the correct events between the date range.
To test I have two events:
Alice Through the Looking Glass 26-28 – Between the dates of the 26th and 28th of July
Alice Through the Looking Glass 31-07 – Between the dates of 31st July to 7th of August.The url is: http://eastgate.digitalessence.net/events/
If you now click on Advanced Search and search between the 30th and 31st it will return one event. (Alice Through the Looking Glass 31-07)
See: http://screencast.com/t/FGJqBvBKaEA
If I now enable Enfold and head back to the same page: http://eastgate.digitalessence.net/events/ and search again for any events between the 30th and 31st it will return both events.
See: http://screencast.com/t/RXJgPPRu
I can reproduce this all day long by switching back and forth between the default WP theme and Enfold.
Any ideas?
thanks.
July 27, 2016 at 3:13 pm #665786Hey DigitalEssence,
we can’t support every 3rd party plugin, as written in our support policy, so you would need to ask plugin’s author about it. If he can’t help you, then we recommend to work with The Events Calendar plugin instead, as this plugin is compatible with Enfold.
Best regards,
AndyJuly 27, 2016 at 3:38 pm #665794Hi Andy,
understood. I will have a look at that plugin. Do you know if the Pro shortcodes work within the advanced page layout?
July 27, 2016 at 4:51 pm #665816Hi,
the pro version is compatible with Enfold too.
Best regards,
AndyJuly 27, 2016 at 4:56 pm #665817Thanks Andy. I’m struggling to get the Advanced layout editor working on the events.
I’ve used the code:
// Enable Enfold Advance Layout Editor on Event pages 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'][] = 'event'; /*instead add the name of the custom post type here*/ } } return $metabox; }
In the theme’s functions.php but the button to enable AL isn’t visible. Need to make sure it will work as I’m about to ditch several weeks worth of work on the other plugin in favour of this one and for my sanity, need to make sure it is the right decision.
July 27, 2016 at 5:17 pm #665822Hi,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
AndyAugust 3, 2016 at 7:28 pm #668227Hi Andy,
sorry to be slow slow in replying. I’ve decided to ditch the The Events Calendar plugin as it is very limited in the functionality we require and gone back to the Event Manager plugin.
Can you advise if Enfold changes the WordPress default search function in anyway and if so, how can I remove this? We think that this is what is causing the issue with the From and To search feature.
Thanks.
August 8, 2016 at 11:00 am #669742Hi Andy,
sorry to bump this but can you advise if Enfold changes the default WordPress search function and if so how?
Thanks.
August 9, 2016 at 3:15 am #670129Hi,
I’m not sure if this is going to help but try this in the functions.php file:
add_action('init', 'ava_search_mod', 10); function ava_search_mod(){ remove_action( 'wp_ajax_avia_ajax_search', 'avia_ajax_search' ); remove_action( 'wp_ajax_nopriv_avia_ajax_search', 'avia_ajax_search' ); }
Best regards,
IsmaelAugust 9, 2016 at 11:12 am #670257Hi Ismael.
thanks for coming back to me on this. Unfortunately this hasn’t resolved the issue.
Are there any other search functions Enfold uses that could be causing this?
August 12, 2016 at 3:39 am #671630Hi,
The “ajax search” functionality is the only search modification added by the theme.
Edit js > avia.js, look for this code then remove it:
//creates ajax search new $.AviaAjaxSearch({scope:'#header'});
Best regards,
IsmaelAugust 15, 2016 at 1:02 pm #672624Hi Ismael and Andy,
we’ve finally sorted the issue and it was all my fault. I had a custom template tucked away in the theme folder and that was causing the issue.
But, the fact that you guys helped me try to resolve the issue even though it was outside of your support remit is one of the reasons that we continue to use Enfold and purchase licences for our clients. It’s not just a fancy theme that matters but the support you receive and we are delighted with both.
Thank you.
Hedley
August 16, 2016 at 6:24 am #673003 -
AuthorPosts
- You must be logged in to reply to this topic.