Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter Zstack

    (@zstack)

    I originally noticed it on the same computer (through an incognito browser) but was ignoring it until I went to show the page to someone else on a separate computer and the first time they loaded up the page the admin bar was showing as logged into the admin account.

    Throughout all my testing I was using both my own computer and having the other computer page reloaded (through incognito mode) and it would show the admin bar when the plugin was enabled no matter the setting selected.

    That being said.. I can’t seem to get it to replicate this morning. Performing the same tests that I did last night and it seems to be working as excected. The only real difference I can think of is that the setting “Use Alternate Session Method” is still checked. Could it have something to do with the fact that the original session “timed out” and since I have it set to use the alternate method it is no long causing a conflict?

    Thread Starter Zstack

    (@zstack)

    Thanks for the quick reply.

    I figured it was not a current feature as I looked through everything a few times.

    I’ll look into custom coding to see and if I find an easy way to do it I will report back.

    Thread Starter Zstack

    (@zstack)

    That’s exactly what it was, updated my PHP configuration and it works like a champ.

    Thanks for all the assistance in getting this resolved, I really appreciate it!

    Thread Starter Zstack

    (@zstack)

    Went ahead and turned on WP_DEBUG for a second and did indeed find an error message! (I had forgotten about the DEBUG mode)

    Fatal error: Call to undefined function SimpleCalendar\Feeds\mb_detect_encoding() in CONTENTDIRECTORY/plugins/google-calendar-events/includes/feeds/google.php on line 185

    Thoughts?

    Thread Starter Zstack

    (@zstack)

    Went through each of the steps provided and the result was the same as before.

    0) Opened website to view in “Incognito Mode” to avoid caching issues
    1) Enabled the “Twenty Fifteen” default theme
    2) Deactivated all plugins except for Simple Calendar v3.0.3
    3) Tested both links provided in my original post

    The result was the same as before, the STEM in the Park (no events) loaded without issue and the Season Calendar (one event) stopped the rest of the page from loading.

    Earlier while I was waiting for a response, I went through further testing which did not reveal anything to me (but may to you).

    1) Modified the event description (at least that’s what I call it, place where I can use [title], [when], etc) to determine if any of those were causing an issue. I removed everything except for the [title] “shortcode” and attempted the calendar with no change. I then removed everything and still no change.

    2) I created pages using the shortcodes for the two calendars that I have been testing with. The STEM in the Park calendar shortcode worked just like the “View” link and the season calendar failed to render. I then tried to put both shortcodes on the same page to see if the STEM calendar would render and then stop on the season calendar, but neither calendar showed up. So it seems what ever is breaking the season calendar also breaks the STEM calendar when it is on the same page.

    Hoping this may assist in some way.. Please let me know if you have further tests.

    Thanks!

    Thread Starter Zstack

    (@zstack)

    Both links provided above are using the “View” link provided in the All Calendars section of the dashboard.

    The link below is using the following shortcode to link to the Season Calendar.

    [calendar id=”984″]

    I made sure to view the source code and remove any extra things added by my text editor (in this case a wrapping <p></p>).

    http://www.robobees.org/news/calendar/

    Using the shortcode provides the same end result of the calendar failing to render and seeming to stop the rest of the site from loading as well (footer, sidebar, user bar all missing).

    Please let me know whatever other information you would like provided.

    Thanks!

    Thread Starter Zstack

    (@zstack)

    Unfortunately there are no error messages or anything out of the ordinary other than what I mentioned above, I’m not sure what I would be able to screen shot that you can’t see yourself when visiting the website.

    If you have specific requests I would be glad to assist.

    Thanks!

    Since there is no built in support for this feature and it is a fairly necessary one for my website, I have taken the time to modify the source of your plugin to suit my needs. Hope you don’t mind.

    For those of you who are looking for the same, you can modify line 354 of the file “class-gce-event.php” from

    $description = make_clickable( $description );

    to

    $description = links_add_target( make_clickable( $description ) );

    The function “links_add_target” is a built in WordPress function, I just figured it would be easy to use.

    Hope that helps someone.

    Updated my builder code with a little more formatting. Still experiencing the link issue.

    <b>[event-title]</b><br />
    <div style="padding-left: 20px;">
    [if-single-day]
       > [start-time] - [end-time]<br />
    [/if-single-day]
    [if-multi-day]
       [if-first]<br />
          [start-time] to<br />
       [/if-first]<br />
       [if-not-first]
          [start-date] - [start-time]<br />
       [/if-not-first]<br />
       [end-date] - [end-time]<br />
    [/if-multi-day]
    [if-location]
       >[maps-link newwindow="true"]
          [location]
       [/maps-link]
    [/if-location]
    </div>
    <br />
    [if-description]
       [description newwindow="true"]<br />
    [/if-description]
    <br />
    [link newwindow="true"]
       More details...
    [/link]
    <br />
    <hr />

    I’m experiencing the same issue, I have included my builder code below. Modified to match the above example, but still does not work. Did not think it would since “newwindow” is not a supported attribute of description. I have tried including a [/description] at the end to “match” the others, but no change.

    Both the map-link and more link open in a new window. But the parsed links inside of the description do not. Thoughts? (http://growingstems.org/event-calendar/)

    [event-title]<br />
    <br />
    Starts: [[start-time]<br />
    Ends: [end-date] - [end-time]<br />
    <br />
    [if-location][maps-link newwindow="true"][location][/maps-link]
    [/if-location]<br />
    <br />
    [if-description]
    [description newwindow="true"]
    [/if-description]<br />
    <br />
    [link newwindow="true"]More details...[/link]
Viewing 10 replies - 1 through 10 (of 10 total)