Scribit
Forum Replies Created
-
Forum: Reviews
In reply to: [Shortcodes Finder] UselessHi @fidoboy ,
every text between brackets could be a possible shortcode.– If it is a real shortcode, coming from your plugins or themes, the plugin will find it and gives to you, with all available information about it
– Otherwise it will report you as unused/orphan/non-existent shortcodeWordPress cannot distinguish if the word “[abc]” come from a generic text or from a removed plugin functionality. And no plugin will ever do that.
I hope you will review your unfair vote and I would be very happy to support you if you explain me your needs (next time post it in suppor thread).
Forum: Reviews
In reply to: [Shortcodes Finder] Absolutely fantastic…and thanks for your big coffee offered ☕
Forum: Reviews
In reply to: [Shortcodes Finder] Absolutely fantasticAnd this is absolutely one of the best review for my plugins.
Put a giant smile also on my face 😀Forum: Plugins
In reply to: [Proofreading] translation ERRORSorry for the late reply. Can you explain me better how to reproduce the error on what you call “custom fields”? Maybe do you mean “custom post type”?
Forum: Plugins
In reply to: [Shortcodes Finder] Searches old revisionsHello @jamespostsil and thank you for your post.
Are you talking about “Find by Shortcode” or “Find by Content” page?For the first one I search only in published posts by default. If you enable the “Include not PUBLISHED contents” checkbox, the plugin will search also in DRAFT, PENDING, PRIVATE and FUTURE posts; but never in auto-draft/revision state.
For the second page the behaviour should be the same (managed by the sf_get_posts_ids function, that by default search only in published contents) but done with ajax calls.
Are you able to give me an example to reproduce your issue?
Forum: Reviews
In reply to: [Shortcodes Finder] FantasticThanks @gunterqb for your great review!
Forum: Plugins
In reply to: [Shortcodes Finder] Leaflet plugin breaks this plugin`Hi @colinrc .
Yes it is strange that line 301 was signaled. Probably the problem is related to reflection methods, in another line.First of all please let me know which PHP version do you have.
And here some tests you can do:1) Can you try searching specific leaflet shortcode instead of “all”, in the Search by shortcode page? To be sure it is the culprit
2) If it is the source of the problem can you give me some shortcode call example?
3) If not, can you search the function isinstance in all your plugin directory? (I don’t call the isInstance reflection method – https://www.php.net/manual/en/reflectionclass.isinstance.php – so maybe someone else is calling or declaring it)
4) In this file “shortcodes-finder\admin\partials\shortcodes-finder-admin-display.php”, on line 217 change the row from
$all_shortcodes = sf_get_shortcodes_ordered( true ); // Load origins
to
$all_shortcodes = sf_get_shortcodes_ordered( );
It will not search for shortcodes origin file, calling reflection methods. It probably will work; you will have less informations about shortcodes calls but more informations for debugging the problem.Thanks again for support!
Forum: Reviews
In reply to: [Shortcodes Finder] Love itThanks, thanks and thanks again 🙂
Forum: Reviews
In reply to: [Shortcodes Finder] Works Great, but Not on PHP 8Hi @epymetheus!
I’ve just released version 1.5.0(.1) of Shortcodes Finder, with PHP8 compatibility 😉Forum: Plugins
In reply to: [Shortcodes Finder] Multi-site functionalityAs promised, I’m here to tell you that the new 1.5 version is out!
Now with a useful multisite option that will allow to search specific (or all) shortcodes in all multisite network contents!Thanks for your suggestions and please report me if something goes wrong on your websites.
I hope you will leave a small review for me 🙂Forum: Plugins
In reply to: [Shortcodes Finder] Leaflet plugin breaks this pluginThe problem you’ve reported is related to a PHP 8 partial incompatibiliy.
I’ve just released the 1.5 plugin version with a fix for your issue.Forum: Plugins
In reply to: [Shortcodes Finder] cant disable shortcodesJust fixed this issue (and add other useful functions) in the brand new 1.5 version.
- This reply was modified 3 years, 11 months ago by Scribit.
Forum: Plugins
In reply to: [Shortcodes Finder] cant disable shortcodesThanks to you for the bug report!
It is just a graphic bug. You can temporarily fix it editing plugin file “shortcodes-finder/admin/js/shortcodes-finder-admin.js” and replacing original set_settings_existing_shortcodes_state function with this code:
function set_settings_existing_shortcodes_state(el) { if (el.checked) { var div = $('#sf_settings_existing_shortcodes'); div.css('height', 'auto'); var autoHeight = div.height(); div.height(0).animate({ height: autoHeight }, 1000); div.stop(true, false).animate({ height: autoHeight }, 'fast'); } else { $('#sf_settings_existing_shortcodes').stop(true, false).animate({ height: '0' }, 'fast'); } }I will insert fixed function in the new 1.5 version.
If you like the plugin, I would really appreciate your review. Even with some useful advice 🙂
Forum: Plugins
In reply to: [Shortcodes Finder] cant disable shortcodesHello @plexxy and thanks for reporting.
I’ve just reproduced your issue in one of my testing site.I will fix it as soon as possible.
Keep in touch on this thread.Forum: Reviews
In reply to: [Shortcodes Finder] Works Great, but Not on PHP 8Thanks @epymetheus for your feedback and especially for your advices!
I will test plugin more on PHP 8 and I hope to fix that bug for the next version.For ACF Fields and other plugins with shortcodes I’am working on; but I don’t think I will add this feature in the next release.