Tagged: , , ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #42767
    Anonymous
    Inactive

    Hi! And first of all; thanks for a great plugin!

    I’ve got a site running with EME on http://www.florø.no

    It’s got pretty permalinks on and everything works great except for two small things.

    The RSS feed at: http://www.florø.no/?eme_rss=main&scope=future&order=ASC&category=&author=&contact_person=&limit=100 does not show any events, even though there are many future events.

    Do you have any idea why this may be?

    Also, we have had reports that the calendar month navigation doesn’t work in certian browsers(IE, Opera). I’m running jQuery and a slideshow plugin. Any ideas?

    Thank you very much for any input.

    All the best,

    Hallvard

    #47643
    Franky
    Keymaster

    Sorry, no idea as of now for the rss feed. This might be a bug, needs to be checked.

    For the jquery: problably the slideshow plugin loads a jquery different from the one used by wordpress, preventing certain functionality.

    #47644
    Anonymous
    Inactive

    Hi! I have the same problem here: The rss feed at: http://localhost/wordpress/?eme_rss=main does not show any events. As you can see I wordpress installed only locally yet(xampp). Could that be part of the problem here?

    I agree with gunray: EME is a great plugin. Using it I could easily make my event page look the way I had planned it. Hence, I would really love to be able to offer the rss feed to my readers.

    Thank you very much for your work and for any input.

    Best wishes

    Horst

    #47645
    Franky
    Keymaster

    “localhost” as hostname will always fail … everybody’s pc is “localhost”, so I can’t check this.

    #47646
    Anonymous
    Inactive

    Thanks for the replies, for some reason I didn’t get notices to my inbox.

    The calendar month navigation works in firefox, safari and chrome, just not opera and IE. Also, the slideshow is a jquery plugin that I enqueue in the functions file, so shouldn’t interfere with anything.

    Thanks.

    #47647
    Anonymous
    Inactive

    Hey, I’ve found the solution to this issue now.

    Basically, IE was interpreting the $.get() call as a cross-domain request, possibly because of URL-rewrite or something similar. I fixed it by adding:

    jQuery.support.cors = true; // force cross-site scripting (as of jQuery 1.5)

    This could be a security weakness if not handled carefully though.

    I also changed the $.get() request to the $.ajax() request to enable error messages(in “eme_calendar.php” on line 404):

    $j_eme_calendar.ajax({
    type: 'GET',
    url: "<?php echo site_url(); ?>",
    data: {
    eme_ajaxCalendar: 'true',
    calmonth: parseInt(month,10),
    calyear: parseInt(year,10),
    full : fullcalendar,
    long_events: showlong_events,
    category: cat_chosen,
    author: author_chosen,
    contact_person: contact_person_chosen,
    location_id: location_chosen <?php echo $jquery_override_lang; ?>
    },
    success: function(data){
    tableDiv.replaceWith(data);
    jQuery('#calendar_header .eventful a').tooltip();
    jQuery('#calendar_header .eventful-pre a').tooltip();
    },
    error: function(xhr, type, exception) { alert("Error: " + type + " Exception: "+exception); }
    });

    In case anyone encounters the same problem…

    #47648
    Anonymous
    Inactive

    Similar issue here – no events shown, although there are 5 on the events page.

    http://fproject.org.au/?eme_rss=main

    I have tried variations on the rss feed address, but none come up with events.

    Thanks.

    #47649
    Franky
    Keymaster

    @paintstripper: you don’t have titles for your events. No titles, no valid RSS. You can check the validation of your RSS feed here: http://validator.w3.org/feed/

    The issue with <item> not starting on a newline is resolved (but not the caue of your problem here)

    #47650
    Franky
    Keymaster

    @gunray: I see RSS events in your feed, so it seems to be ok. Concerning the browser: I advise you to use a debugger there and see what’s the problem, since it works in firefox/chrome I can’t help you further here, but I’m pretty sure it’s a js thing in your theme somewhere.

    #47651
    Anonymous
    Inactive

    Hi! My rss feed at http://www.horstbergmeyerduo.de/?eme_rss=main does not show any of the events from the events page. I do have titles for my events.

    Thanks

    Horst

    #47652
    Franky
    Keymaster

    Can you try the latest trunk version to see if this solves it for you?

    #47653
    Anonymous
    Inactive

    Hi Franky,

    I installed Version 3.3.5: now the rss feed at http://www.horstbergmeyerduo.de/?eme_rss=main does show the events.

    Thank you very much!

    Best wishes

    Horst

Viewing 12 posts - 1 through 12 (of 12 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top