Will this plugin be updated to work with WordPress Version 6.1.1? The only things that work with the newest versions of WordPress are the widgets for the Campaigns and Event List.
]]>Recently I got this error message followed by a lot of warnings:
“Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Breeze has a deprecated constructor in /public_html/wp-content/plugins/wt-display-breeze/includes/breeze.php on line 3”
Looking at line 3:
class Breeze {
the class is the same name as the function on line 8:
function Breeze( $passed_api_key ) {
By changing the name of the function, I was able to get the error and subsequent warnings to go away:
function fBreeze( $passed_api_key ) {
I hope this helps some folks.
]]>The giving form shortcode always displays the form at the top of the page, even when you try to have a preceding paragraph or two. It’s because you’re using echo and not return.
--- shortcodes.php 2018-06-16 16:44:04.553271792 -0700
+++ shortcodes.php 2018-06-16 16:42:13.153698445 -0700
@@ -16,7 +16,7 @@
exit();
}
- echo '<div id="breeze_giving_embed" data-subdomain="' . $wt_option_breeze_subdomain . '"></div>';
+ return '<div id="breeze_giving_embed" data-subdomain="' . $wt_option_breeze_subdomain . '"></div>';
}
]]>
In the video from late-2016, the Full Calendar integration was not able to select which calendars are displayed.
Is there any update to this?
Thank you!
]]>Greetings…
I’m redesigning my church’s website, and have run into a challenge/problem using the Breeze Display plugin with the Maranantha theme from churchthemes.com.
I’m trying to use your Breeze plugin for WordPress to enable our church to display calendar information directly from Breeze. However, if I have anything powered by this plugin on a webpage in the Maranantha theme, the Google Map for my Locations does not appear (the actual map image background — other data does appear).
You can see this behavior at https://new.sterlingumc.org using the Breeze Events List Widget, as well as our main Calendar page at https://new.sterlingumc.org/calendar/. If I disable the Breeze Events List widget, the Google Map shows up on the main page (nothing left from the Breeze Viewer plugin on the page) but not on the Calendar page (built with the Breeze Full Calendar option in your plugin).
I’ve sent this same ticket to churchthemes.com, but I wanted to bring this to your attention to see if you could help as well. Thanks!
Neil
]]>