Denis Lam
Forum Replies Created
-
It’s generally not a good practice to modify core WP files. Dev needs to fix some syntax in their plugin code…
Forum: Plugins
In reply to: [AGP Font Awesome Collection] fa-calculator missing@alexey, deleting the theme (Canvas) FA code did the trick to resolve my issue.
Forum: Plugins
In reply to: [AGP Font Awesome Collection] fa-calculator missingHere’s a sandbox site to replicate the issue:
https://sandbox.nukecontracting.com/
As you can see in the menu bar, calculator one is missing while others work.
Forum: Plugins
In reply to: [Autoptimize] Multisite Global Network Settings?Would you kindly point me to where these threads are located at? Are you referring to the WordPress support forum for your plugin?
Forum: Plugins
In reply to: [AGP Font Awesome Collection] How to change color on hover?Thank you very much! You rock! ??
Forum: Plugins
In reply to: [AGP Font Awesome Collection] How to change color on hover?Thank you very much.
Forum: Plugins
In reply to: [Adminimize] PHP Warning: in_array() expects parameter 2 to be arrayI just installed the master will give it a spin!
Looks like turning off thumbs solved the issue! Thank you ??
I already used those parameters. Check out this demo site: https://denislam.ariixinfinityteam.com/podcast/
I use [feedzy-rss feeds="https://www.jasonleehq.com/feed/podcast" feed_title="no" summary="no" thumb="yes" ]
Then open the Google Chrome Dev Tool >> Network. You will see the page will take a very, very long time to load because it is downloading mp3 from feed. Do you know why?
Sure here is the feed: https://www.jasonleehq.com/feed/podcast
Which hook do you recommend I use to strip out everything except the feed items’ titles and source link?
Forum: Plugins
In reply to: [Firelight Lightbox] Not working with wpmudev domain mappingYep, I use it sitewide on my network. You are very welcome ??
Forum: Plugins
In reply to: [Firelight Lightbox] Not working with wpmudev domain mappingYes I see this fatal error and I use WPMU Dev domain mapping plugin as well.
PHP Fatal error: require_once(): Failed opening required '/home/public_html/wp-content/plugins/easy-fancybox/easy-fancybox/easy-fancybox-class.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/public_html/wp-content/plugins/easy-fancybox/easy-fancybox.php on line 63
The v1.5.8-beta.5 seem to resolve this problem.
Forum: Plugins
In reply to: [Adminimize] PHP Warning: in_array() expects parameter 2 to be arraySorry, I made an error in the fix, I meant
is_array
instead ofin_array
so here’s the corrected fix:if ( isset( $mw_adminimize_menu ) && is_array($mw_adminimize_menu) && in_array( $item[ 2 ], $mw_adminimize_menu ) ) { unset( $menu[ $index ] ); }
Forum: Plugins
In reply to: [Wistia WordPress Plugin] Notice: Undefined index:…I got this notice as well. Here’s an easy fix, someone else can verify:
On line 572 of that php file, add the isset snippet where the condition begins:
return '<script charset="ISO-8859-1" src="http' . (isset($_SERVER['https']) && $_SERVER['https'] == 'on' ? 's' : '') . '://fast.wistia.com/static/concat/' . implode($scripts, '%2C') . '.js"></script>';
Please add fix to official update.