danielshields
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Appointments] Yikes! Not working after update to WP 4.7.4Wendy,
I really appreciate the reply. Your response helped me identify where my issue was, even though our particular issues ended up being different.My issue was also a theme issue, but it had to do with how I was moving scripts from my header to footer.
I had these 2 lines in my theme:
remove_action('wp_head', 'wp_enqueue_scripts', 1); add_action('wp_footer', 'wp_enqueue_scripts', 5);
When I removed them, the calendar renders for me again. I think it has to do with the underscore templates rendered inline from the shortcode. Ideally for me, I think this stuff would be rendered with wp_footer, rather than just output inline. I leave that up to the plugin author, though.
Forum: Plugins
In reply to: [Easy Appointments] Yikes! Not working after update to WP 4.7.4Were the two of you able to find resolution to this issue? I’m missing the calendar with the
[ea_standard]
shortcode. This is a fresh install with the latest version of WP. Like you mentioned, I’m able to see the dropdowns and form elements, but no calendar.No errors show up in the error_log, and no javascript errors appear.
Makes sense to me. Thanks for the feedback.
Forum: Plugins
In reply to: [CPT-onomies: Using Custom Post Types as Taxonomies] Updates are comingI was looking around again for a solution to this PHP warning message and came across this thread where @lucastello shares a fix.
There are 2 instances of the following in cpt-onomy.php:
$terms[] = $term;
Change them to include wp_cache_add:
wp_cache_add( $term->term_id, $term, 'terms'); $terms[] = $term;
I hope this helps the rest of you!
Forum: Plugins
In reply to: [CPT-onomies: Using Custom Post Types as Taxonomies] Updates are comingFor me, the error messages are happening as a result of the
add_filter( 'get_object_terms', array( $this, 'get_object_terms' ), 1, 4 );
line in cpt-onomy.php. If I comment out that line, the messages are gone. I tried isolating it further within that function, but the parameters that are set all look correct.Has anyone else found a workaround yet?
Hi Geoffrey,
I was able to fix this on my site by changing the URL safe %3A to @.Line 408:
$search_feed1 = "https://search.twitter.com/search.rss?q=from@".$username."&rpp=".intval($nb_tweets);
I know this is not preferable, but am curious if this solves the problem for anyone else, OR if there’s a different change I should be making on my site.