mobetman2
Forum Replies Created
-
Forum: Plugins
In reply to: [Zephyr Project Manager] Feature RequestThanks for the quick reply and adding it to your request list.
Forum: Plugins
In reply to: [User Menus - Nav Menu Visibility] Display by TaxonomyThank for the reply, @kimmyx, I’ll follow your advice.
However, for clarity and anyone reading this in the future, I don’t think I clearly explained what I was asking.
I’m interested in filtering the menu items by user AND taxonomy (category or tags), not just taxonomy alone. Please note that adding taxonomies to users is possible and quite easy. Several plugins do this (ACF is one example), and users can also do this through a code snippet.
For example, it could be very useful to filter nav menu items so members (users) in the Marketing group (taxonomy) see different nav items from someone in the Finance group. The same would be true if you had different groups/teams within the Marketing group.
I ask because there are many cases where it’s better to use a taxonomy than create a new user role. For example, you might have an onboarding process for new team members. You may want them in the same role as others for numerous reasons but need to temporarily segment them from the other users with the same role.
Again, I will follow your advice and reach out to the developers.
Okay, thanks!
Buddyboss app integration is great news!! Looking forward to the feature release.
Forum: Plugins
In reply to: [Editorial Calendar] How to Add Author Avatar And Icons To Calendar?Thanks for the quick reply. I guess I’ll have to stick with the CSS changes.
Forum: Plugins
In reply to: [BuddyMeet] Remove Jitsi.org logo is not workingI’m having the same issue. Did you find a fix for this?
Forum: Plugins
In reply to: [BuddyMeet] Shortcode – csv for settingsDid you find a solution for this? Did @gangesh advice work?
Forum: Plugins
In reply to: [Split Test For Elementor] CartFlow+1 for me on CartFlows.
The plugin creates two CPTs: Flows and Steps
Steps are basically pages/posts you create for public viewing.
Flows are collections (think campaign(s)) of Steps that make a funnel (Ex: Landing Page, Checkout Page, Thank You Page).
Users would want to split test Step Types (Landing, Checkout, etc.) against each other. Landing Page A versus Landing Page B for example.
The slight complication may be that the Steps CPT does not make available most of the usual WP CPT options.
Forum: Plugins
In reply to: [Media Library Assistant] Time Since Image UploadJust tested it and it works perfectly!
Thanks for this plugin and all your work to support and improve it. I really appreciate you adding this functionality and doing it so quickly.
Forum: Plugins
In reply to: [Auto Post Scheduler] Custom Post Type SchedulingToo bad, was hoping there might be a workaround. Thanks for the quick reply.
Forum: Plugins
In reply to: [Interactive Content – H5P] H5P myCRED Hook@rpetitto, the error is fixed but the plugin is not registering any points with myCred.
Forum: Plugins
In reply to: [Interactive Content – H5P] H5P myCRED Hook@rpetitto, just got a chance to test the new plugin. It’s not working and I got the following errors:
1. Code is displaying in the admin section. See screenshot https://goo.gl/epQ1zu
2. Received debug error msg
"Notice: Undefined variable: h5p_block in E:\wordpress-development\localhost\demo.dev\wp-content\plugins\mycred-h5p-master\mycredh5p.php on line 112"
Forum: Plugins
In reply to: [Interactive Content – H5P] H5P myCRED Hook@rpetitto, I like the idea. You would need hooks/action triggers from H5P to be able to get myCred to do what you suggest. We may need to lean on icc0rz expertise with this plugin to do that.
Forum: Plugins
In reply to: [Interactive Content – H5P] H5P myCRED Hook@rpetitto, thanks for the updated code. Just wanted to let you and anyone reading this in the future, I got the following error message when using your code.
( ! ) Strict standards: Declaration of myCRED_Hook_H5P::sanitise_preferences() should be compatible with myCRED_Hook::sanitise_preferences($data) in E:\wordpress-development\localhost\devdomain.dev\wp-content\plugins\mycred-h5p-master\mycredh5p.php on line 49
To fix the issue, I replaced your code between lines 120 – 122 with the following:
/** * Sanitize Preferences */ public function sanitise_preferences( $data ) { $new_data = $data; // Apply defaults if any field is left empty $new_data['creds'] = ( !empty( $data['creds'] ) ) ? $data['creds'] : $this->defaults['creds']; $new_data['log'] = ( !empty( $data['log'] ) ) ? sanitize_text_field( $data['log'] ) : $this->defaults['log']; return $new_data; }
If we can confirm that the code is bug free, you or @icc0rz should submit it to myCred for listing on their website. Gabriel is a good guy with a very useful plugin and I think this could be helpful to many others in the future.
Forum: Plugins
In reply to: [Interactive Content – H5P] H5P myCRED Hook