stevemullen
Forum Replies Created
-
Forum: Plugins
In reply to: [Transition Slider - Responsive Image Slider and Gallery] b is not a functionI created a new slider, and added three slides, using mp4 videos. Nothing else.
Forum: Plugins
In reply to: [Rover IDX] Images no longer display on IDX pages as they all 404Did you clear your FlyWheel cache? I recall that Randi had to do that to get a fresh page.
- This reply was modified 4 years, 5 months ago by stevemullen.
Forum: Plugins
In reply to: [Rover IDX] Images no longer display on IDX pages as they all 404Hi Antonio,
We are performing maintenance for performance improvements. An ACL has been corrected, and you should see images now.
Thank you!
Forum: Plugins
In reply to: [Autoptimize] Profiling site shows autoptimize bottleneckVery helpful suggestion, and great support!
We had 1 section of css with random ids ( slideshow_49583 ) that were generated on each page view. I’ve converted that to be a page specific id, but the problem remains. The minifier is still executing preg_replace() 50k+ times.
For now, I’ve just disabled css minification, and that seems to have helped quite a bit.
Thank you !
Ok – thank you
I’m trying to help you – but you are ignoring what I’m saying.
At one time, you used to be allowed to load a script directly via
wp_enqueue_script()
. And while that still works:
– it is no longer the proper way. You must load the script (or style) via the action hookwp_enqueue_scripts
oradmin_enqueue_scripts
orlogin_enqueue_scripts
. Please read this important link.Your code is obviously not doing that. It’s directly calling wp_enqueue_script() within a shortcode.
I cannot explain why are aren’t seeing the php warnings on your server. Any number of settings (or php versions) might get in the way of that.
The php warning:
[12-Apr-2019 12:57:45 UTC] PHP Notice: wp_enqueue_script was called incorrectly. Scripts and styles should not be registered or enqueued until thewp_enqueue_scripts
,admin_enqueue_scripts
, orlogin_enqueue_scripts
hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.0.) in /home/redacted/public_html/wp-includes/functions.php on line 4667Please read the linked page I’ve already provided:
https://codex.www.ads-software.com/Plugin_API/Action_Reference/wp_enqueue_scripts
I am not mistaken.
Yes, it’s working. But no, it’s not working correctly.
Enable WordPress DEBUG, and you will get “PHP Notice: wp_enqueue_script was called incorrectly”.
You are not loading wp_enqueue_script via an action in the function
wpls_logo_slider()
. You must do this to avoid this php warning.Please refer to https://codex.www.ads-software.com/Plugin_API/Action_Reference/wp_enqueue_scripts
Thank you
Forum: Plugins
In reply to: [Rover IDX] Can you please add RMLSApologies – we are not getting email notification when someone posts a question.
Typically, we are not allowed to go to your local MLS directly. They normally require that you or your broker ask them for the form to set up a new IDX Vendor. The process only takes a few days, and once we have credentials, it takes about 1 day to setup a new MLS region.
Thank you
SteveForum: Reviews
In reply to: [Rover IDX] Buggy Plug-in, did not remove site map and ruined my seoI’m sorry you had a bad experience. We work very hard to give great support, and we have many very happy customers.
The Divi issue was documented and I sent you a link. It’s sometimes difficult to fix a problem in someone else’s code. But it was curious to me that you chose this reason (it was a minor issue) to deactivate Rover.
And because you deactivated Rover, the 28,000 pages that Google had already crawled and added to your site index (because Rover has amazing SEO) resulted in 404’s. This is unfortunate, but the onus is on you as the site owner to redirect these pages when you make such a drastic change. The sitemap is not relevant – while you would be responsible for removing the sitemap reference from Webmaster Tools, Google would continue to try to crawl those 28,000 pages for months unless they were properly redirected.
I wish you well.
- This reply was modified 6 years, 10 months ago by stevemullen.
Forum: Plugins
In reply to: [Rover IDX] Can you add Toronto MLSTREB is now available.
Forum: Plugins
In reply to: [Rover IDX] Change MLS RegionJust send us email ([email protected]) with the domain url and the MLS region you want to have active, and we’ll take care of it for you.
Thank you
Forum: Fixing WordPress
In reply to: Plugin loading twiceMore info:
The difference seems to be in HTTP_ACCEPT. The 1st iteration has the value:
[HTTP_ACCEPT] => [text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8]
The 2nd iteration has the value:
[HTTP_ACCEPT] => [image/webp,image/*,*/*;q=0.8]
I have no way to detect that the plugin loaded once already. Can I just NOT load if the HTTP_ACCEPT is looking for an image?