Tagged: , ,

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #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.

    #665786

    Hey 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,
    Andy

    #665794

    Hi Andy,

    understood. I will have a look at that plugin. Do you know if the Pro shortcodes work within the advanced page layout?

    #665816

    Hi,

    the pro version is compatible with Enfold too.

    Best regards,
    Andy

    #665817

    Thanks 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.

    #665822

    Hi,

    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,
    Andy

    #668227

    Hi 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.

    #669742

    Hi Andy,

    sorry to bump this but can you advise if Enfold changes the default WordPress search function and if so how?

    Thanks.

    #670129

    Hi,

    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,
    Ismael

    #670257

    Hi 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?

    #671630

    Hi,

    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,
    Ismael

    #672624

    Hi 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

    #673003

    Hi Hedley,

    Great, glad you got your problem solved and thanks a lot for the kind words :-)

    Regards,
    Rikard

    • This reply was modified 8 years, 3 months ago by Rikard.
Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.