Scott Reilly
Forum Replies Created
-
Forum: Plugins
In reply to: [Remember Me Controls] if option set by admin is it valid for all users@gvmelle: Hi,
There is only the one settings page, which is accessible to administrators. Anything configured there will apply to all users of the site without them needing to do anything individually.
Cheers!
Forum: Plugins
In reply to: [No Update Nag] 5.0.1 notice@malae: Hi,
The plugin only removes the notice that would appear at the very top of every admin page. The screenshot (seen on https://wordpress.org/plugins/no-update-nag/) shows the thing that this plugin removes.
I described above two instances where the newer version of WordPress is mentioned, and those are unchanged (since those aren’t “nags”):
* The
Update to 5.1.1button in the admin dashboard (as seen in the screenshot you linked to)
* TheGet WordPress 5.1.1link in the bottom-right of the admin footerThose sound like they cover the 2nd and 3rd cases you mentioned. And the 1st case you mentioned is also not affected by the plugin (as intended): the “WordPress Updates” page will still tell you there is a new version of WordPress. I’m considering adding more comprehensive disabling of WordPress updates in a future release.
Forum: Plugins
In reply to: [No Update Nag] 5.0.1 noticeThe admin dashboard button and footer link are fairly low-key, so I didn’t see the need to remove those. The intent was to target the notice at the top of admin page, which can be quite annoying when you don’t plan to act on it anytime soon.
However, I’ll give some thought to supporting the ability to remove the two other update indicators for those who really don’t want to see any update notices.
Forum: Plugins
In reply to: [No Update Nag] 5.0.1 notice@bjf2000: Hi,
Just so we’re on the same page, are you referring to the notice that appears at the top of every admin page that (currently) says
WordPress 5.1.1 is available! Please update now.? (Check out the screenshot included on the plugin’s page here: https://wordpress.org/plugins/no-update-nag/ to see an example.)There are other places in the admin where you will still be notified about a new release even when this plugin is active:
* The
Update to 5.1.1button in the admin dashboard (as seen in the screenshot you linked to)
* TheGet WordPress 5.1.1link in the bottom-right of the site footerThe plugin does not attempt to remove the latter two, just the notice at the very top of admin pages.
Forum: Plugins
In reply to: [Single Category Permalink] Has this plugin been abandoned?@hilmil: Hi,
Thanks for inquiring! It’s not abandoned! I’ve just updated the plugin to note its compatibility through WP 5.1.1 along with some other minor behind-the-scenes tweaks.
Cheers!
Forum: Plugins
In reply to: [Get Custom Field Values] 500 Errors with version 3.9@jpc101: Hi,
Thanks for the report! I’ve just released v3.9.1 of the plugin which addresses this error (a WP 5.x function was being used without first checking to see if it existed, which it doesn’t pre-5.0). Let me know if you encounter any other problems.
Cheers!
Forum: Plugins
In reply to: [Quick Drafts Access] Time For An Update?@cnm: Hi,
I released v2.2 of Quick Drafts Access a few days ago. But just so it’s clear to others, there were no security-related concerns that prompted it.
Cheers!
Forum: Reviews
In reply to: [Never Moderate Registered Users] Programmeur uniquementHi,
Could you please clarify your claim about how this plugin is for programmer’s only? There is nothing that needs to be done for the plugin to function except to activate it. There are no settings and there is no need to write any custom code.
The plugin does provide certain hooks that could be used by someone writing code to customize the plugin’s behavior, but most people wouldn’t need to do so.
Forum: Plugins
In reply to: [Linkify Text] Alternate Links for same Keyword(s)?Hi @uwi,
You’d like to list the same term/word more than once, with a different URL each time? For example:
WordPress => https://wordpress.org WordPress => https://en.wikipedia.org/wiki/WordPressHow would you expect for “WordPress” to be linked by the plugin? Randomly choose a link from the available alternatives? The current implementation wouldn’t make that behavior an easy change, and I’m not sure it’s behavior anyone else would expect from the plugin or utilize.
Forum: Plugins
In reply to: [Disable Search] Remove search bar in foodie pro theme@the-muffin-top: Hi Gayatri,
Since you sought to add a search bar in the first place, it seems that you aren’t using my Disable Search plugin (which, as the name indicates, seeks to disable search entirely).
I’m not familiar with the Foodie Pro theme so I can’t advise too much on the specifics of how the search field is implemented. Have you tried asking for support from StudioPress?
This might help:
https://stackoverflow.com/questions/46363358/remove-search-form-from-menu-in-wordpress-genesisOr this looks to be an improvement of the menu bar search field:
https://sridharkatakam.com/responsive-menu-with-inline-search-in-foodie-pro/Based on that last link, though info is hidden behind a paywall, it starts off with how to disable the search form in the menu.
It says to change:
$menu_search = sprintf( '%s</li>', __( genesis_search_form() ) ); return $menu . $social . $menu_search;I imagine the hidden next step (which should be all you need to simply remove the menu bar search field) should be to replace that with:
return $menu . $social;If you want to implement the responsive menu bar search form (as shown in that video) which will allow it to show up on the mobile version, you’ll have to sign up for that site to get the code.
That’s about all I can do for you. No guarantees about any of the above. Hope that helps!
Forum: Plugins
In reply to: [Linkify Text] Error after upgrade to new version@savoir-aimer: Yes, I do care and have been looking into it. Unfortunately I can’t reproduce it using your same post content and plugin configuration. But I see what’s happening: the “bác sĩ thú y” from earlier in the post is the text that was found and being linked, but the link itself was inserted into the post in the wrong location, which happened to be inside the
<h2>.I just released v1.9.1 of the plugin. I don’t think it addresses your issue, but let me know if you still have the problem after updating.
I’ll continue to investigate.
Forum: Plugins
In reply to: [Linkify Text] Latest Version Breaks Website@scollonp: Hi Paul, thanks for the report.
v1.9.1 of Linkify Text was just released, which includes a fix to ensure multibyte functions (those that start with “mb_”) aren’t used if they are not available.
After updating to it, can you report back on the flakey behavior if it persists? If it does, could you elaborate on what you mean by flakey (with examples if possible)? Do the affected post(s) make use of multibyte characters?
Cheers!
Forum: Plugins
In reply to: [Linkify Text] Error after upgrade to new version@savoir-aimer: Hi! To help me with debugging, can you provide a couple pieces of information so I can be sure to identify the problem.
1. What was the original text that you wrote in your post?
2. What was the “Text and Link” setting entry that you configured that is making the link for the text in 1. when visitors view the post?Thanks!
Forum: Plugins
In reply to: [Linkify Text] Open Links in new Tabs (target=blank)?@saschinger: Hi Sascha, thanks for the suggestion! I have just released v1.9 of Linkify Text which introduces a setting for links to be opened in a new tab. Just update the plugin and then visit the plugin’s settings page to enable the feature.
Also, a new filter has been added (“c2c_linkify_text_link_attrs”) which could be used programmatically for finer-grained control of link attributes.
Cheers!
Forum: Plugins
In reply to: [Restrict Usernames] Partial matching doesn’t work@gabrieldilaurentis, @nakes: v3.7 of the Restrict Usernames plugin has been released which includes a fix for a bug that prevented username restrictions from working properly under BuddyPress.