Patrick_D1985
Forum Replies Created
-
Hi again,
Awesome.
Installed it earlier today will test it for the upcoming days to make sure all is ok.Thanks again for the swift action 🙂
Kind regards,
Patrick DankersThanks for the swift reply guys.
Hope you can crack down on this, if so I will keep using at mentioned and look forward to your pro option as well.
Keep up the great work.
Kind regards,
Patrick DankersForum: Plugins
In reply to: [Post Type Switcher] Control Visible on Individual but not Bulk EditI was actually also running into this. Could edit the individual posts just fine but the bulk option just does not show the Post Type Switcher drop drown. But you MUST make sure you enable the TYPE column before this will work.
Just change that and it should work.
Forum: Plugins
In reply to: [Better Font Awesome] JSDeliver issueThanks for the feedback to both of the above.
Mickey is there a reason for the 10s timeout?
You are relying on a third party here and I think having it lower by default would be better as to ensure a workable situation in the long run.As mentioned above … it slows every thing in the backend.
Either way thanks for looking into this!As for beta running on production; agreed but I hope that a FA5 supporting version comes out of beta sooner then later 😉
- This reply was modified 7 years, 7 months ago by Patrick_D1985. Reason: mention did not go as planned
Forum: Plugins
In reply to: [Better Font Awesome] JSDeliver issueI ended up disabling it for now.
We have a custom fallback in place which provides FA in another way … but does not offer the icon selection like BFA does in the backend.Hope this gets resolved as it hurts more then it should in performance really.
Not saying that it’s the blame of the author btw, but I think it should be a shorter check. The files are either available or not that should not even need 10001 milliseconds to determine.Ran into this last night.
Made a solution for it which you can put in your themes functions.php/** * Social Login comment link overrides - comment_author_url exceeds the default value */ function extend_lengths_comment_field_social( $lengths ){ global $wpdb; $lengths = array( 'comment_author' => 245, 'comment_author_email' => 100, 'comment_author_url' => 250, 'comment_content' => 65525, ); return $lengths; } add_filter( 'wp_get_comment_fields_max_lengths', 'extend_lengths_comment_field_social' );That should circumvent the too long author_url for Facebook users.
+ giving you more control about other parameters.Hope it helps you all.
Ran into this last night.
Made a solution for it which you can put in your themes functions.php/** * Social Login comment link overrides - comment_author_url exceeds the default value */ function extend_lengths_comment_field_social( $lengths ){ global $wpdb; $lengths = array( 'comment_author' => 245, 'comment_author_email' => 100, 'comment_author_url' => 250, 'comment_content' => 65525, ); return $lengths; } add_filter( 'wp_get_comment_fields_max_lengths', 'extend_lengths_comment_field_social' );That should circumvent the too long author_url for Facebook users.
+ giving you more control about other parameters.Hope it helps you all.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Fontawesome 5?Hi Matt,
Thanks for clearing that up. Very much appreciated.
While I am not shy of beta testing things, for a production website beta versions can be a risk. i’ll see what we can do in the meantime.We could ofcourse just test how things work on the dev enviroment and move on from there.
Kind regards,
Patrick DankersForum: Plugins
In reply to: [WP Popular Posts] Ajax not working on deferred jQueryHi Hector,
thanks for getting back on this!
Yeah it was weird for some odd reason in those browsers jQuery was not seen correctly at the moment WPP was fired. Doing some basic jQuery actions in the Developers console worked just fine actually.
Yeah I am deferring jQuery. And my case might be a rough one due to the setup we use (Varnish caching, Nginx +PHP-FPM, HTTPS, HTTP2. Mod_pagespeed Wp-Rocket, Cloudflare, MaxCDN). Like I said it’s a bit of monster.
So perhaps just something of that combo is causing some shifts in order things are done really. But I could not find out what.
I tried the suggestion noted here but that did not help my situation. But the weird thing I concluded was; normal mode works fine, ajax mode did not cross browser. So then I decided ok what if I don’t let WPP itself do the AJAX call. Thats where the old No AJAX Widgets plugin came in.And that worked wonders.
Just throwing that out as an option for people who just can not seem to get it to run.
Hope it helps anybody though.
Forum: Plugins
In reply to: [WP Popular Posts] Ajax not working on deferred jQueryI would like to throw in my 2 cents aswell.
For some odd reason I cannot really explain the following happens;
WPP with AJAX option on (as I am using caching etc);
– Works in Chrome, Firefox, Opera, Firefox Dev edtion
– Does not work in Mobile Safari, Safari and IE.In the not working browsers it throws a jQuery not defined notification. But I really can’t say why. I’ve tried a lot (disabling caching (Wp-Rocket), disbaling (Varnish (server side) etc.
If I switch to the static function; it works in each and very browser but for the love of me i can not get it working cross-broswser with AJAX. If it did a fallback
I made it work by making the widget area ajaxified using; https://wordpress.org/plugins/no-cache-ajax-widgets/
Old but still does the trick.Any suggestions would be greatly appreciated to it without the addtional plugin though.
Kind regards,
Patrick DankersHi @proni I see your point and that’s fair and all 😉
I skipped it to be honest :pSome other parties have actually reached out to me the meantime and they have developed a new solution for use with WordPress already which is compatible with all the needed places.
Please see; https://wordpress.org/plugins/invisible-recaptcha/Still thanks for your reply in this, always appreciated 🙂
I know it’s christmas time and all but not even a reply at all. Well then … very helpful.
Forum: Plugins
In reply to: [Contact Form 7] Invisible Recaptcha SupportNo reply whatsoever. Ok not posting here anymore … seems useless.
Forum: Plugins
In reply to: [AMP] The normal version of my website is faster than this version of AMP !Hi there,
Google Pagespeed Insights in itself is a bit more of a ranking and not a general speed comparison.
If you want a good speed comparison try; http://fpt.pingdom.com with both.As for the rankings being badder;
And I am not quite sure that Pagespeed Insights has been optimized yet to correctly distinguish AMP from NON AMP.PS: Correct me if I am wrong 😉
Forum: Plugins
In reply to: [SearchIQ - The Search Solution] Future posts in Search resultsHi Igor,
Thanks for the feedback!
Future posts are often used for event based sites for instance.
We should have gone custom post_type there perhaps but well … we did not so we rely on the future post_status for handling those and then filtering a bit on categories.Cool that you are at least considering indexing future posts for SearchIQ, which is a good step as you then more or less pre-index them (and the normal route would be future -> publish anyway)
I will give your suggestion a try later on.
Besides that keep up the great job you are doing with SearchIQ; I have worked with Relevanssi, SearchWP and Swiftype in the past (of which swiftype was best but well you know their pricing plan has gone out of control) and I must say I like where SearchIQ is already at.
Kind regards,
Patrick