Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter forge22

    (@forge22)

    Hmm, kind of. It’s still a mystery as to why our Saturday events are disappearing. Now we have another bug, which is related.

    On our tickets page (iframe sent by eventbrite), with display_private = true, it will show yesterday’s event, which is past. However, if I set it to hide private, again we will experience the above bug, losing display of our Saturday events for some reason.

    https://www.comedybarchicago.com/tickets/

    On the home page however, the code I wrote hides the past event, so no issue there. The cache has not updated or expired to remove it. Could that be an issue?

    Thread Starter forge22

    (@forge22)

    Hi. It’s doing it again! Setting the plugin to “show private” makes it appear, however it is not a private event.

    I used the eventbrite API tool to check the output, but I cannot seem to paste it here. Can I send you my API details?

    Thread Starter forge22

    (@forge22)

    Hi. It’s doing it again! Setting the plugin to “show private” makes it appear, however it is not a private event.

    I used the eventbrite API tool to check the output, and here is the troublesome item:

    {
                "name": {
                    "text": "Saturday Apr 16: The Big Sexy Show",
                    "html": "Saturday Apr 16: The Big Sexy Show"
                },
                "description": {
                    "text": "(shortened for brevity)"
                },
                "id": "21042500686",
                "url": "https://www.eventbrite.com/e/saturday-apr-16-the-big-sexy-show-tickets-21042500686?aff=ebapi",
                "start": {
                    "timezone": "America/Chicago",
                    "local": "2016-04-16T23:00:00",
                    "utc": "2016-04-17T04:00:00Z"
                },
                "end": {
                    "timezone": "America/Chicago",
                    "local": "2016-04-17T00:00:00",
                    "utc": "2016-04-17T05:00:00Z"
                },
                "created": "2016-01-26T19:38:08Z",
                "changed": "2016-04-12T01:39:01Z",
                "capacity": 131,
                "status": "live",
                "currency": "USD",
                "listed": true,
                "shareable": true,
                "online_event": false,
                "tx_time_limit": 480,
                "hide_start_date": false,
                "locale": "en_US",
                "is_locked": false,
                "privacy_setting": "unlocked",
                "is_series": false,
                "is_series_parent": false,
                "is_reserved_seating": false,
                "logo_id": "19115512",
                "organizer_id": "4686472265",
                "venue_id": "9503506",
                "category_id": "104",
                "subcategory_id": "4007",
                "format_id": "6",
                "resource_uri": "https://www.eventbriteapi.com/v3/events/21042500686/",
                "logo": {
                    "id": "19115512",
                    "url": "https://img.evbuc.com/https%3A%2F%2Fimg.evbuc.com%2Fhttp%253A%252F%252Fcdn.evbuc.com%252Fimages%252F19115512%252F73482740559%252F1%252Foriginal.jpg%3Frect%3D0%252C79%252C1000%252C500%26s%3Dc11cbc09cbf4d11292904ffd23283cab?h=200&w=450&s=aa7777466e928f0938994d9961a11e28",
                    "aspect_ratio": "2",
                    "edge_color": "#400b1f",
                    "edge_color_set": true
                }
            },

    Thread Starter forge22

    (@forge22)

    We are no longer seeing connection issues at the moment. The EB user changed their password, and for some reason, it disconnected our API, which had to be re-approved.

    However, I have private events hidden again, and we will keep an eye on this weekend, as for some reason it appears that our Saturday events are the buggy ones.

    If the Saturday event hides itself again, I will use the above tool to try and diagnose. I’ll paste my findings here if so!

    Thread Starter forge22

    (@forge22)

    Hello. My apologies earlier — it’s https://www.comedybarchicago.com/tickets/

    Unfortunately, no. I tested with the tool and everything appears fine, however things have gotten much worse. Now the WP Keyring is not connecting at all, and gives me the error “This connection is NOT working correctly.” I have created a new app in Eventbrite and double checked all my keys — nothing is connecting.

    I have reached out to them for support with the non-connection but still have not heard anything. The tool shows my API keys work fine, but no connection can be made from our site…

    Hey all, here’s my fix for adsense deluxe, WordPress 2.8. I don’t know much about advanced plugins, but I know how to fix things when they break: DUCT TAPE. If I had an actual non-zombie blog, well, I’d blog this.

    In the file /plugins/adsense-deluxe.php, Around line 1013, comment out the following:

    function add_adsense_deluxe_menu()
    {
    if (function_exists(‘add_options_page’)) {
    add_options_page(‘AdSense-Deluxe Configuration’, ‘AdSenseDeluxe’, 8, __FILE__); //’AdsenseDeluxeOptionsPanel’); // wp 1.5.1 version
    }
    }

    and add:

    function add_adsense_deluxe_menu(){
    add_options_page(__(‘AdSense-Deluxe Configuration’, ‘adsense-deluxe’), __(‘AdSense-Deluxe’, ‘adsense-deluxe’), 8, ‘adsense-deluxe’, ‘AdsenseDeluxeAdminPage’);
    }

    function AdsenseDeluxeAdminPage(){
    require (WP_PLUGIN_DIR . ‘/adsense-deluxe.php’);
    }

    then at about line 1095, replace

    add_action(‘admin_head’, ‘add_adsense_deluxe_menu’);

    with

    add_action(‘admin_menu’, ‘add_adsense_deluxe_menu’);

    And, awesome, it works!

Viewing 6 replies - 1 through 6 (of 6 total)