phoenixMagoo
Forum Replies Created
-
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Fatal Error on pages generated by The Events PluginThis change resolves the issue. Thank you!
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Fatal Error on pages generated by The Events PluginIt’s enabled. Yes.
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Fatal Error on pages generated by The Events PluginActivity Log Version 2.9.1 by Activity Log Team | Auto-updates disabled
Advanced Custom Fields PRO Version 6.2.7 by WP Engine | Auto-updates disabled
Advanced Editor Tools Version 5.9.2 by Automattic | Auto-updates disabled
Antispam Bee Version 2.11.5 by pluginkollektiv | Auto-updates disabled
CAPTCHA 4WP Version 7.4.1 by Melapress | Auto-updates disabled
Classic Editor Version 1.6.3 by WordPress Contributors | Auto-updates disabled
Converter for Media Version 5.12.1 by matt plugins | Auto-updates disabled
Enable Media Replace Version 4.1.5 by ShortPixel | Auto-updates disabled
Flamingo Version 2.4 by Takayuki Miyoshi | Auto-updates disabled
Gravity Forms Version 2.8.4 by Gravity Forms | Auto-updates disabled
Gravity Forms: GDPR Framework Add-on Version 2.0.0 by Data443 | Auto-updates disabled
Gravity Forms Constant Contact Add-On Version 1.7 by Gravity Forms | Auto-updates disabled
Gravity Forms Google Analytics Add-On Version 2.2.0 by Gravity Forms | Auto-updates disabled
Gravity Forms Zapier Add-On Version 4.2 by Gravity Forms | Auto-updates disabled
GTranslate Version 3.0.5 by Translate AI Multilingual Solutions | Auto-updates disabled
Hustle Version 7.8.3 by WPMU DEV | Auto-updates disabled
ManageWP - Worker Version 4.9.19 by GoDaddy | Auto-updates disabled
myStickymenu Version 2.6.8 by Premio | Auto-updates disabled
Public Post Preview Version 2.10.0 by Dominik Schilling | Auto-updates disabled
Redirection Version 5.4.2 by John Godley | Auto-updates disabled
Sassy Social Share Version 3.3.58 by Team Heateor | Auto-updates disabled
SEOPress Version 7.4 by The SEO Guys at SEOPress (Latest version: 7.5.1) | Auto-updates disabled
Simple Download Monitor Version 3.9.23 by Tips and Tricks HQ, Ruhul Amin, Josh Lobe | Auto-updates disabled
Site Kit by Google Version 1.121.0 by Google | Auto-updates enabled
Smart Slider 3 Version 3.5.1.21 by Nextend | Auto-updates disabled
SSL Insecure Content Fixer Version 2.7.2 by WebAware | Auto-updates disabled
The Events Calendar Version 6.3.3.1 by The Events Calendar | Auto-updates disabled
The GDPR Framework Version 2.1.0 by Data443 | Auto-updates disabled
Wordfence Security Version 7.11.3 by Wordfence | Auto-updates disabled
WordPress Importer Version 0.8.2 by wordpressdotorg | Auto-updates disabled
WP-Sweep Version 1.1.8 by Lester 'GaMerZ' Chan | Auto-updates disabled
WPDM - Gutenberg Blocks Version 2.2.3 by WordPress Download Manager | Auto-updates disabled
WPDM - TinyMce Button Version 2.9.1 by Shaon | Auto-updates disabled
WP Migrate Version 2.6.11 by WP Engine | Auto-updates disabled
WP Rocket Version 3.15.9 by WP Media | Auto-updates disabledForum: Plugins
In reply to: [Optima Express + MarketBoost IDX Plugin] WordFence Reporting VulnerabilityThank you!
Forum: Plugins
In reply to: [Optima Express + MarketBoost IDX Plugin] WordFence Reporting VulnerabilityAny updates? We are actively looking at switching up our IDX clients because of this issue.
Forum: Plugins
In reply to: [Front Page Scheduler] Timezone conflict/issue with The Events CalendarJust noticed the plugin was updated this morning. Very cool! However, this problem still exists. Should be patched ASAP since it completely breaks calendar based plugins.
Thanks!
Forum: Plugins
In reply to: [Front Page Scheduler] Timezone conflict/issue with The Events CalendarTurns out WordPress 5.3 does not want anyone to use the date_default_timezone_set() function anymore. You are suppose to use the new wp_date() function instead of setting timezone and using date(). I’ve fixed your plugin by doing the following few steps. Super easy btw:
1) Erase line 96
2) line 98 goes from:
$tnow = intval( date( 'Hi' ) );
to:
$tnow = intval( wp_date( 'Hi' ) );
3) Line 100 goes from:
$twday = intval( date( 'w' ) ) + 1;
to:
$twday = intval( wp_date( 'w' ) ) + 1;
4) Line 252 goes from:
wp_enqueue_script( 'front-page-scheduler-js', plugin_dir_url( __FILE__ ) . '/front-page-scheduler.js', array( 'jquery' ), date( 'YmdHis', filemtime( dirname(__FILE__) . '/front-page-scheduler.js' ) ), true );
to:
wp_enqueue_script( 'front-page-scheduler-js', plugin_dir_url( __FILE__ ) . '/front-page-scheduler.js', array( 'jquery' ), wp_date( 'YmdHis', filemtime( dirname(__FILE__) . '/front-page-scheduler.js' ) ), true );
Forum: Reviews
In reply to: [jQuery Masonry Image Gallery] The hard to get simplicityHey thanks for the positive review! Sadly, I will not be updating this plugin anymore. My personal life is way more hectic than it was when I first released this plugin. I just don’t have the time anymore. The plugin should work fine with the Classic Editor, however, this plugin will not work with Gutenberg. Just to give you a heads up.
Thanks again!
Thank you!
Forum: Plugins
In reply to: [jQuery Masonry Image Gallery] Gallery not displayingAwesome! I’m going to mark this help thread as Resolved. If you need any other help, please just create a new ticket.
Forum: Plugins
In reply to: [jQuery Masonry Image Gallery] Gallery not displayingAlright. The wp_footer() function is required for WordPress to work correctly. So I wouldn’t remove it from your theme. Also, what are your JMIG settings looking like?
Thanks!
Forum: Plugins
In reply to: [jQuery Masonry Image Gallery] Gallery not displayingDoes your footer.php include the wp_footer() function?
Forum: Plugins
In reply to: [jQuery Masonry Image Gallery] Gallery not displayingIt doesn’t look like any of the required javascript is being added to the footer. Have you changed your theme or added any plugins recently? There is probably some sort of conflict.
Thanks!
=WillForum: Plugins
In reply to: [jQuery Masonry Image Gallery] How to change caption ?jQuery Masonry Image Gallery modifies the out-of-the-box WordPress galleries. I believe you would have to override the core gallery by using a filter.
This tutorial might be a good place to start: https://wpbeaches.com/filtering-gallery-image-output-wordpress/
Hey! It should work with any Lightbox plugin that is compatible with the out-of-the-box WordPress galleries. Just make sure that your gallery images link to the media file, not attachment page.
Let me know if you need anything else.
Thanks!