Scott Reilly
Forum Replies Created
-
Forum: Plugins
In reply to: [Restrict Usernames] How to asign a number to users ?As a belated follow-up, this plugin does not have any provisions to change usernames or to assign values (such as an ID number) to them. It merely tells WordPress whether a given username requested by a user for registration is valid.
Forum: Plugins
In reply to: [Restrict Usernames] Add russian language (mo file includes)@korobochkin : Much appreciated and sorry for the delay! Your translation has been included with v3.5 of the plugin.
Forum: Plugins
In reply to: [Linkify Text] Does Not Work With ShortCodes@sneakysly : I agree with that. The plugin did so previously so it should have continued to do so. v1.8 will ensure that happens. I’ll follow up here when it gets released. (No ETA yet on it tho.)
Forum: Plugins
In reply to: [Text Replace] Use with WooCommerce?@foochuck : Do you happen to know how the data you want text-replaced is stored by WooCommerce? If that data passes through a WordPress filter, then it’s likely just a one-liner of code to process that text.
I’m not familiar with WooCommerce’s code so I don’t know the answer offhand myself. If you don’t either, a few more details (or an example) of the sort of thing your looking to have text-replaced might make a quick scan of their code possible.
Forum: Plugins
In reply to: [Stealth Publish] HACKER ENTRACE@stheoret : I think your definition of a hacked is a bit broad. How exactly was your site hacked?
I’ve reviewed the plugin and don’t see how it can be exploited to hack a site. Could you have just meant that the plugin caused an issue with your site? What version of the plugin were you using? v2.4 caused an issue for many people (such as menus getting deleted). v2.5 was released 3 days ago which should fix that problem.
I can sympathize with the plugin causing issues with a site, but saying you got hacked is rather extreme. Simply removing the plugin would not cause a hack to go away (a bug/problem would go away, though).
If you indeed mean that the plugin caused issues for you, consider trying the latest release to see if it behaves better. Please do report back either way! Cheers!
Forum: Plugins
In reply to: [Linkify Text] Does Not Work With ShortCodes@sneakysly : v1.6 of the plugin (released just over a week ago) introduced the change that prevented text within shortcodes (both attributes and content) from being linkified.
While I believe text within shortcode attributes shouldn’t get linkified, text wrapped in a shortcode can probably get linkified. By way of example, for this:
[caption name="TERM_A"]See TERM_B[/caption]TERM_A should not get linkified (even if matches one defined for the plugin) whereas TERM_B should get linkified.
Is that what you were hoping for? Or were you expecting TERM_A to also be eligible for linkification?
Forum: Plugins
In reply to: [List More Custom Field Names] Is this for the Webmaster or visitor?This is purely for administrators to use when creating or updating a post. The “Custom Fields” section containing the dropdown affected by this plugin is only on the post editing page
Forum: Plugins
In reply to: [Linkify Text] New window@lucsar: A quick question about your statement “a parameter option for each entry line”. Are you hoping to open links in a new window on a per-link basis?
My inclination would be to have a checkbox that will do it for all or none. (Essentially, the output would match yours if the checkbox was set.)
Forum: Plugins
In reply to: [Linkify Text] New window@lucsar: At present, not easily (not without writing code to do so). I’ll try to make it easier to do so in the next release. Thanks for the suggestion!
Forum: Plugins
In reply to: [Hide Broken Shortcodes] Per user filtersHere’s one way to do it (placing the following in your theme’s functions.php or a mu-plugin:
function show_broken_shortcodes_to_admins( $default, $shortcode, $content ) { // For administrators, show the unhandled shortcode if ( current_user_can( 'administrator' ) ) return $content[0]; // Otherwise, let the plugin do its thing return $default; } add_filter( 'hide_broken_shortcode', 'show_broken_shortcodes_to_admins', 10, 3 );Let me know if you have any questions about it.
@janubande007: Give v3.5.1 a try. It should have the fix for this issue. Thanks for reporting it! And thanks to @monfresh for putting forth a fix!
Forum: Plugins
In reply to: [Post Index Helpers] does this plugin shuffle@youcanlogin: Sorry, but this plugin won’t help you with what you’re trying to accomplish. It provides you helpful tools for determining information about the position of a post given the current query. It doesn’t change the displayed order of posts in any way.
You’d want something that can randomize the query results, either after the posts (ads) have been queried from the database, or via the initial query itself. Maybe try looking at a random posts plugin?
Forum: Plugins
In reply to: [One Click Close Comments] link to front end post?@th3harold: That’s taken from the plugin’s TODO list. I haven’t implemented it yet, but hope to do so in an upcoming version.
Forum: Plugins
In reply to: [Stealth Publish] Clash with The Events Calander@graham-stacey: Thanks for the report. I’m taking a look at it now.
If you’re comfortable doing so, could you try commenting out line 129 of stealth-publish.php. The result will look like:
// $wp_query->is_front_page() ||(basicallly put two forward slashes at the start of the line)
There were really only two types of changes made that should affect anything and that’s the easiest one to rule out by doing the above and reloading the site.
If attempting the above is treading uncomfortable waters for you, no worries. I’ll see if I can reproduce the issue.
Forum: Plugins
In reply to: [Text Replace] Text Replace – as well as Linkify Text – now crashes@lady_enslain: Did you try the latest version of either plugin? I just updated Text Replace to v3.5 yesterday. Linkify Text was just updated to v1.5 two days ago (having not been updated in quite awhile).
If you have done so, and continue to have the issue, could you elaborate on what you attempted to do and what you were experiencing?