jamiebergen
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin Notes Plus] Error in the console – function is brokenHi Eric,
Good news! I was able to identify the conflict with WPML 4.7.0+, and I just released an updated version of Plugin Notes Plus (1.2.10) that should resolve the issue. Thanks for sticking with me and giving me info on how to reproduce the bug!
Jamie
Forum: Plugins
In reply to: [Plugin Notes Plus] Error in the console – function is brokenHi Eric,
Sorry for the delay. Thanks for your persistence. I went through the basic setup of WPML and am now seeing the issue with my plugin. I’ll try to see if I can make an update that will resolve the conflict. I’ll keep you posted.
Jamie
Forum: Plugins
In reply to: [Plugin Notes Plus] Error in the console – function is brokenHi, I tested Plugin Notes Plus with WPML 4.7.1 installed and didn’t see the issue. Can you please let me know the exact steps to reproduce the bug?
Jamie
Forum: Plugins
In reply to: [Plugin Notes Plus] Error in the console – function is brokenHi,
It appears this may be a conflict with WooCommerce. However, I installed WooCommerce in a test environment also running Plugin Notes Plus, and I’m not able to reproduce the issue. Are you seeing a problem that is impacting the functioning of Plugin Notes Plus? Or is it just the console error? If you are able to confirm that you’re running the latest versions of WP core and WooCommerce and still see the issue, please provide the steps required to reproduce the bug.
Thanks,
Jamie
Forum: Plugins
In reply to: [Plugin Notes Plus] Error in the console – function is brokenHi, I’m wondering if this may be a conflict with another plugin. In any case, I just released an update that fixed some issues with translations.
Forum: Plugins
In reply to: [Plugin Notes Plus] What does pending full review mean?I was notified of another issue, which I addressed within a day. Now we’ll have to wait for the review team to take action. I’m not sure why the plugin is suddenly under increased scrutiny. Thanks for your patience again.
Forum: Plugins
In reply to: [Plugin Notes Plus] How to hide from specific user/group?The code you wrote will hide plugin notes from all users except for the user with ID 3. To hide notes from specific user roles, I would look at this page for how to check for specific user roles. Looks like you’re on the right track.
Forum: Plugins
In reply to: [Plugin Notes Plus] How to hide from specific user/group?Hi,
The comment that says “logic to set $hide_notes to TRUE or FALSE” is where you would write some code to determine whether to hide the plugin notes. By default any user who can view the plugins page (typically, this is any user with the Administrator role) can view and update plugin notes.
If you want to hide the plugin notes from a specific user, you can write something like below. By default, plugin notes are not hidden, but they are hidden from the user with ID 6 in this example.
I tested this code on WP v6.6 – Plugin Notes Plus v1.2.7 and confirmed that it’s working.
$hide_notes = FALSE;
$user_id = get_current_user_id();
if ( 6 === $user_id ) {
$hide_notes = TRUE;
}
return $hide_notes;Forum: Plugins
In reply to: [Plugin Notes Plus] What does pending full review mean?The plugin is open!
Forum: Plugins
In reply to: [Plugin Notes Plus] What does pending full review mean?Thanks to all of you for your patience. I responded to the review team promptly. It’s up to them to make a decision at this point. I hope they will open it back up soon, as I believe I have addressed the concern. The updated plugin is available on my GitHub repo: https://github.com/jamiebergen/plugin-notes-plus
Forum: Plugins
In reply to: [Plugin Notes Plus] What does pending full review mean?Just an update that I’ve completed the fixes and resubmitted the plugin for review. We will have to wait for the review to be completed for them to reopen the plugin, but you can also find the updated version in the GitHub repo here: https://github.com/jamiebergen/plugin-notes-plus
Thanks for your patience, and I’m glad that you’re finding the plugin useful!
Forum: Plugins
In reply to: [Plugin Notes Plus] What does pending full review mean?I’m still here. I got a notice 2 days ago that I need to make an update to the plugin. I’ll try to get this done ASAP. Thanks for your patience.
Forum: Plugins
In reply to: [Plugin Notes Plus] No more updates?Thanks for checking in! Yes, I’m continuing to test new WP core versions. Sorry for my absence!
Jamie
Forum: Plugins
In reply to: [Plugin Notes Plus] Plugin Abandoned?Thanks for reaching out! I’m planning to resume updates soon. As you can imagine, a free plugin isn’t always on the top of my priority list. 🙂
Yes, the single equal sign should do it.