Rudolph88
Forum Replies Created
-
Okay sounds good. Would be great but again this is a minor front end request and functionality comes first which this plugin has nailed!
Cheers.
Forum: Plugins
In reply to: [Comments - wpDiscuz] get_avatar Not Taking PriorityThat caching setting was disabled when we were having the issues.
In our custom function that was over-writing gravatars, we wanted to only over-write the avatars on the front end, so we wrapped our custom code in:
if ( !is_admin() ) { //Our code here }My guess is that because your plugin is using Ajax, dynamically loaded in comments after page load weren’t going through our custom code as is_admin() would be true, skipping over our check and code.
We removed the if check from our code and it fixed the dynamic loaded in comments and our custom avatars were working. Now our only problem is that in our Dashboard all instances of our avatars for users are also applying our custom code without the if check. This isn’t really a problem for us though.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] How to hide start quiz buttonIn the Quiz Options, make sure you have Autostart set to Activate. Test to make sure the quiz is starting after page load.
Then you can use CSS to hide the “Start Quiz” button:
.wpProQuiz_content input[name="startQuiz"] { display:none; }Forum: Plugins
In reply to: [WP Email Users] Any support for Custom User Roles@techspawn1 We are using Ultimate Member Plugin for Member Roles. https://en-ca.wordpress.org/plugins/ultimate-member/
We don’t see any of the Core Roles built into that plugin such as “Member” on the Send Email page. We have 2 additional Roles we set up called Realtors and Lawyers. These are Ultimate Member Community Roles. Is there something we may add to extend your plugin to allow us to select Users based on these roles?
Cheers
@tlkativ Any updates or the simplest workarounds to make this plugin feasible with the Gravity Forms User Registration Add-On?
I can understand why this plugin doesn’t work with the add-on AS IS as the GF’s add-on isn’t the default WP Registration, nor does it utilize the same hooks. It’s just too bad there isn’t any good alternatives out there from my research.
Similar to your situation we have yearly memberships that theoretically expire soon, yet we’ve done nothing in terms of development to adjust any data in the database so we’re just trying to find the best solution to have expirations automated for new registrations. With only 15 Users at this point we can get away with manual updates to each user but will have to find an automated solution very soon!
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Exlcude a categoryAny ideas as to when the next release will be? Really would enjoy this function.