Page 19 of 50 FirstFirst ... 9171819202129 ... LastLast
Results 181 to 190 of 500
  1. #181
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Event Calendar

    Quote Originally Posted by tinboye View Post
    having a new issue with my zen cart and the events calendar.

    when you view an ez page which has a back or continue button it will go to
    index.php?main_page=events_calendar_include&_month=&_year=&eventmode=eventframe

    any ideas why?
    Please see my post (1st post on page 18). I gathered up all the posted fixes for this crazy mod.. One of them is supposed to be a fix for the nav history to exclude the event calendar's iframe.. This should resolve the issue.. (in theory..)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #182
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    Actually, thanks to Diva's diligence, the solution was right in front of us.

    http://www.zen-cart.com/forum/showpo...&postcount=166

    So much for my memory.

  3. #183
    Join Date
    Mar 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Event Calendar

    Hi all,

    Just installed Event Calender on Zen Cart v1.3.9h and in Admin/Extras/Event Manager I just cannt creat a new Event. When I click on New i just get the same page.

    Mustt bo something to do with this in events_manager.php
    Code:
    <?php
    if ($HTTP_GET_VARS['action'] == 'new') {
        $form_action = 'preview';
        if ($HTTP_GET_VARS['eID']) {
          $eID = zen_db_prepare_input($HTTP_GET_VARS['eID']);
          $form_action = 'preview';
          $events = $db->Execute("select event_id, start_date, end_date, event_image, link, OSC_link, date_added from " . TABLE_EVENTS_CALENDAR . " where event_id = '" . zen_db_input($eID) . "'");
          
          //while (!$events->EOF) {
          
           //	$events->MoveNext();
     	//}
          //$events = zen_db_fetch_array($events_query);
          }
          $start_d =($HTTP_POST_VARS['start'] ? $HTTP_POST_VARS['start'] : $events->fields['start_date']);
          $end_d =($HTTP_POST_VARS['end'] ? $HTTP_POST_VARS['end'] : $events->fields['end_date']);
          //print_r ($events);
          $languages = zen_get_languages();
              for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
              $language_id = $languages[$i]['id'];
    
              $events_language[$i] = $db->Execute("select title, description from " . TABLE_EVENTS_CALENDAR . " where event_id = '" . zen_db_input($eID) . "' and language_id = '" . $languages[$i]['id'] . "'");
            // $events_language[$i] = zen_db_fetch_array($events_language_query);
            //$events_language[$i] = $events_language;
              //print_r ($events_language[$i]);
          }
    ?>
    any thoughts?

  4. #184

    Default Re: Event Calendar

    Quote Originally Posted by bunker0 View Post
    Hi all,

    Just installed Event Calender on Zen Cart v1.3.9h and in Admin/Extras/Event Manager I just cannt creat a new Event. When I click on New i just get the same page.

    any thoughts?
    There's alot of bugs in this mod and won't work correctly out-of-the-box. Take a look at this post by DivaVocals who was kind enough to list all the patches found throughout this thread ...
    http://www.zen-cart.com/forum/showpo...&postcount=171

  5. #185
    Join Date
    Sep 2011
    Posts
    1
    Plugin Contributions
    0

    Default Re: Event Calendar

    I have this mod working correctly. I would like to have a time be put on the events calendar instead of start date and finish date. Can anyone code a time input feature into this mod for me. I'm willing to pay for this service.

  6. #186
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    Hi generalclean

    If you want to replace the date with time, IIRC, the scheduled events mod may be a better option.

    However if you want both the date and start/finish times, the easiest way would be to input the start/finish times in the Details (or Description or whatever you called it) box for each event.

    Otherwise you would need to create extra rows and columns to incorporate the info into your DB, form and page, which requires a fair bit of coding.

    Hope this helps.

  7. #187
    Join Date
    Oct 2011
    Posts
    22
    Plugin Contributions
    0

    Default Re: Event Calendar

    I'm trying to get this module to work with my bi-lingual ZC 1.3.9.

    Does anyone know how the code should be to display the days and months as translated in includes/languages/your_language/extra_definitions/events_calendar_include_defines.php ?

    I would really appreciate your help (hope I get an answer here, no luck with other threads in the forum).

  8. #188
    Join Date
    Jul 2009
    Posts
    34
    Plugin Contributions
    0

    Default Re: Event Calendar

    I have installed the Events Calendar onto a clients site. There seems to be a problem. If you click on the 'date' in the sidebox, it takes you to the correct event. If you click on the month, it takes you to an itemized list of that months events. Problem is, when you click month, the 1st of each month is missing and every other date is wrong as they have all moved up by one day. I have no clue as to what has done this or if it's always been like it.

    website http://www.flutterbuys.com.au

    any help would be greatly appreciated!!
    Michelle :)

  9. #189
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    Quote Originally Posted by shellbell-19 View Post
    I have installed the Events Calendar onto a clients site. There seems to be a problem. If you click on the 'date' in the sidebox, it takes you to the correct event. If you click on the month, it takes you to an itemized list of that months events. Problem is, when you click month, the 1st of each month is missing and every other date is wrong as they have all moved up by one day. I have no clue as to what has done this or if it's always been like it.

    website http://www.flutterbuys.com.au

    any help would be greatly appreciated!!
    Michelle :)
    Hi Michelle

    Which version of Events Calendar and Zen Cart have you using?

    The latest unofficial release for 139h can be found at the following link, but which requires upgrading for 150.
    http://www.zen-cart.com/forum/showpo...&postcount=172

    Cheers

  10. #190
    Join Date
    Jul 2009
    Posts
    34
    Plugin Contributions
    0

    Default Re: Event Calendar

    Quote Originally Posted by dw08gm View Post
    Hi Michelle

    Which version of Events Calendar and Zen Cart have you using?

    The latest unofficial release for 139h can be found at the following link, but which requires upgrading for 150.
    http://www.zen-cart.com/forum/showpo...&postcount=172

    Cheers
    Hi dw08gm,

    The cart is running 1.3.7 version and the app is running 1.2.
    Does that sound right for the app?

    Do I need to upgrade their site?

    Cheers Michelle

 

 
Page 19 of 50 FirstFirst ... 9171819202129 ... LastLast

Similar Threads

  1. Timeslot Booking Event Calendar
    By escapis in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 31 Jan 2014, 12:45 AM
  2. Multiple Choices error with Event Booking Calendar addon
    By FukienMan in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 16 Feb 2012, 12:17 AM
  3. Help with Event Calendar add-on
    By blabay in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 24 Mar 2010, 01:34 PM
  4. Event Calendar Broken - take out of download section!
    By Asmodai in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 10 Nov 2007, 07:22 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg