Hello,
I activated the plug in. I have a NEON account and have created an API key. However, I am not finding the widget on my menu in wordpress.
]]>Hi, is it in the plans the increase the fields that can be pulled? It’d be great if the events thumbnails could also be imported as it’d great for styling. As of now it’s purely text based.
]]>Hey, Colin —
I’d like to use the NeonCRM Events Widget somewhere other than the sidebar on my site using
<?php the_widget('widget_class_name'); ?>
Trouble is, I don’t know what name to use. I tried a bunch of variations of “neon_events_widget,” “neoncrm-events-widget,” and so on, but I couldn’t get it.
Can you tell me what the official widget class name is? Many thanks!
]]>Requires PHP 5.2 and cURL.
As soon you install and try to activate:
Plugin could not be activated because it triggered a fatal error.
Fatal error: Call to undefined function session_status() in /home/content/b/r/i/brightsteps/html/wp-content/plugins/neoncrm-events-widget/neon-api.php on line 11
That is because “Session_Status” is a php 5.4 or higher function…
https://php.net/manual/en/function.session-status.php
Use session_id for 5.4 < and session_status for 5.4 >
]]>Hi Colin,
Would you mind modifying the api include in this plugin thus:
if (!class_exists('Neon')) {
require_once('neon-api.php');
}
To avoid conflicts with other plugins that might use your NeonCRM PHP API library? (Such as the one I am working on ;))
While we’re at it, how about modifying the session_start() call in the API thus:
$neon_sess_status = session_status();
if($neon_sess_status == PHP_SESSION_NONE){
session_start();
}
$_SESSION['neonSession'] = null;
Thanks bunches for the API and the plugin!
]]>I’m trying to add a widget filtered by Category, but it’s not showing up. I tried the category name and the Category code, but neither are displaying. (https://artisforall.org/wordpress_4/?page_id=1881)
It’s in a sidebar widget area where the full Upcoming Events are working fine on each other page, I am just hoping to have specific pages filtered by specific categories too.
We have some events in Neon that are not web-published (the “Web publish” box in Neon is unchecked). Nonetheless, these events are being shown by this widget. I don’t see any toggle to control this in the plugin options. Surely this is a mistake, can you provide a fix for this?
]]>