slny311

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 31 total)
  • Author
    Posts
  • in reply to: Ajax Add to Cart instead of going to Cart Page #1183686
    slny311
    Participant

    Is there any Temp solution that can help “workaround” this interaction?

    in reply to: Ajax Add to Cart instead of going to Cart Page #1183152
    slny311
    Participant

    I have done the steps on your no-conflict testing
    with 2016 theme & Woocom & event calendar & tickets & tickets plus enabled. *everything else disabled*

    Steps to reproduce error

    [Plus 1 on a ticket] -> [add to cart] -> [Lands on Cart Page -> Refresh Page]
    **Another ticket is added here**
    The extra tickets that are added this way does not have the form meta info filled out in the backend, also there shouldn’t be any extra tickets added by refresh which will allow someone adding more tickets than the stock.

    [After being on the Cart Page] -> [Back button] -> [Lands on Single event Page]
    **The tickets forms you have filled out are displayed again without any info in them, when going back it should just load the empty page without extra forms that has been previously submitted.

    Specially with my current setup where I disable editing of member only tickets and pulls the ticket info from user roles, allowing the user to back and put new tickets in causes a big issue with the workflow.

    in reply to: Get All Attendee's Email Address #1182726
    slny311
    Participant

    The reflection method caused Errors when I tried to run it.

    Since I hooked into the CSV output array filter to Format the different forms into the same output columns, I really want to be able to access the CSV output before it gets put into a file stream, so I can just read that array and do a match and remove for all email that are already in the system.

    bottom line is I need some way to return me an array of existing attendee email so I can filter output of search as you type function to exclude those who have already brought their tickets from buying another.

    – on a sidenote
    When adding the tickets in and -> Add to Cart. if a user press the back button or refresh, both keeps some type of post data and messes up the event page or the cart pages.

    – back button -> shows tickets forms again but all empty
    – refresh button -> form post resubmits to cart

    Thank you for all the help!
    ( if you want I can reply with all the required parts to reproduce the basic example of mine setup )

    • This reply was modified 7 years, 6 months ago by slny311.
    in reply to: Get All Attendee's Email Address #1182083
    slny311
    Participant

    edit

    • This reply was modified 7 years, 6 months ago by slny311.
    in reply to: How many events is too many events #17392
    slny311
    Participant

    Rob, So far so good… in case anyone else has similar issues.
    Deactivated all plugins again, instead of deactivating one by one, i just did them all and slowly rebuilt the 10 or so plugins i was using. I narrowed it down to two, quick-cache(the enemy) and sharethis(slowed it down a little bit) I installed Digg Digg for social sharing and super cache. So far so good, 500+ events and its pretty quick.

    in reply to: How many events is too many events #17295
    slny311
    Participant

    Yeah i shut off all the plugins, logged out and it seemed to fix it at first then started to slow down again to the point where i couldn’t add an event without timeout. Maybe the table that the events are stored is just too much?

    in reply to: How many events is too many events #17289
    slny311
    Participant

    Each day has between 5-7 events, its a inde movie theatre… i store the movie times in the excerpt. cinemaartscentre.org.

    in reply to: How many events is too many events #17288
    slny311
    Participant

    It does take awhile to view the calendar view using the month switcher. The site is using quick cache so the front end flys.
    Thats ok for now, but the fact that the backend is almost unusable is major problem.
    You think by removing old events would help the backend?

    in reply to: Only Show Todays Events in Widget #11499
    slny311
    Participant

    Hey John and Rob, sorry for the delay

    I inputted your code and now its just pulling in the oldest events, heres my code below.

    if( function_exists( ‘tribe_get_events’ ) ) {
    $date = date(‘Y-m-d’);
    $posts = tribe_get_events( “startDate=$date&endDate=$date&eventCat=” . $category );
    $template = TribeEventsTemplates::getTemplateHierarchy(‘widget-featured-display’);
    }

    Any way we can skype or aim this week?

    Thanks!

    in reply to: Only Show Todays Events in Widget #10687
    slny311
    Participant

    Thanks Rob, looking forward to it…

    in reply to: Only Show Todays Events in Widget #10535
    slny311
    Participant

    Hey Rob can you post sample code for me?

    ?
    $posts = tribe_get_events( ‘startDate=1&endDate=1&eventCat=’ . $category );

    in reply to: Only Show Todays Events in Widget #10345
    slny311
    Participant

    Hey Rob, any luck with this? This is the last blind i got in the project…

    in reply to: tribe_get_events template tag #10315
    slny311
    Participant

    thanks kevin… lol.

    in reply to: tribe_get_events template tag #10313
    slny311
    Participant

    Hey Kevin thank for the reply, im new and still learning wp

    i am trying to change the featured widget to show only todays events…

    so in the widget-featured.class.php file i replaced

    $posts = tribe_get_events( ‘numResults=1&eventCat=’ . $category);

    with below and its not showing anything…

    $today = getdate();

    $query = new WP_Query( ‘year=’ . $today[“year”] . ‘&monthnum=’ . $today[“mon”] . ‘&day=’ . $today[“mday”] );

    $posts = tribe_get_events( ‘numResults=1&eventCat=’ . $category . $today);

    Any thoughts would be appreciated…

    in reply to: tribe_get_events template tag #10303
    slny311
    Participant

    Hey Kevin, can you post your code?

Viewing 15 posts - 16 through 30 (of 31 total)