Dylan Jenkins
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin for members to enter and view data?looking for something similar, including entering training data of various types. Did you find anything Caimanes11?
thanksForum: Plugins
In reply to: [BadgeOS] Display points of usersshould have just posted this before! Hope it helps someone.
I’m very much a novice but this works for me. I made my own plugin folder to put this and others I experiment with….function badgeos_get_users_points_shortcode( $user_id = 0 ) {
// Use current user’s ID if none specified
if ( ! $user_id )
$user_id = wp_get_current_user()->ID;// Return our user’s points as an integer (sanely falls back to 0 if empty)
return absint( get_user_meta( $user_id, ‘_badgeos_points’, true ) );
}
add_shortcode( ‘badgeos_get_users_points’, ‘badgeos_get_users_points_shortcode’ );Forum: Plugins
In reply to: [BadgeOS] Display points of usersI have created my own shortcode for this. Not sure if this has been resolved but I can supply mine if that is helpful.
Forum: Plugins
In reply to: [BadgeOS] How does one earn the same award twice?thanks Michael. fixed. Points added and auto-approved. thanks
Forum: Plugins
In reply to: [BadgeOS] How does one earn the same award twice?I have changed to 0 which remains in the box but it makes no difference to my attempt to earn the award twice. I get the message – ‘You have earned this achievement!’ and no points are added.
Forum: Plugins
In reply to: [BadgeOS] How does one earn the same award twice?thanks Brian and Michael. Given that I have put max as 1000000 is that unlikely to work while 0 will work?? Don’t understand….
Forum: Plugins
In reply to: [BadgeOS] How does one earn the same award twice?hello Michael. This has still not been resolved. Is there any action?
The field does not allow me to set to infinite (ie leaving blank) nor does setting to 1000000 allow me to earn points for the same achievement more than once…..Forum: Plugins
In reply to: [BadgeOS] How does one earn the same award twice?hello Michael. No, still the same. I can not set to “blank” (infinite). As soon as I hit “update”, field resets to “1”
Forum: Plugins
In reply to: [BadgeOS] How does one earn the same award twice?hello. I have a similar problem. I have sporting events for achievements and therefore points to add up as you do more sporting events. I have set maximum times to achieve award as infinite (leaving the field blank) but as I update the field resets to 1. I have then set the maximum to 10000000 to work around. The field saves the number but the user is not awarded the points if selects another sporting event. What can I do?
Forum: Fixing WordPress
In reply to: How do you save form data and display?hi, I’m very much a newbie to this but I asked the same question as I am about to use calculated fields form plugin too. It does store to a database in the pro plugin I was advised it is stored in the “wp_cp_calculated_fields_form_posts” table
I’ll be trying the same shortly but have found that field in my database. hope that helps.Forum: Plugins
In reply to: [EndomondoWP] backend link for activitiesthanks. I know the endomondo app and it’s usefulness for a user who has it on their mobile especially. It appears that the wp-endomondo is for an individual who has his/her own wp-blogging site to record their own activities. I wonder is there a way that my-site can use the wp-endomondo plugin so that members of my-site can upload their activities to my-site for membership awards and other club related activities etc? ie for me to replicate aspects of your site (with recognition).
Forum: Plugins
In reply to: [EndomondoWP] Having a problem? Asking a question or proposal? Write Here! ;)hello. can the endomondo wp plugin be used by mysite to allow my users to use the endomondo app but to upload their data to my site also? ie I am creating activities (and want the user to create their own) and I want any activity then submitted for an award via mysite. Endomondo would therefore be the ‘engine.’ thanks
Forum: Plugins
In reply to: [BadgeOS] auto-approve submission on pagesthanks Michael. I don’t know much about filters but what you have written makes sense so I’ll give it a shot. thanks
Forum: Plugins
In reply to: [BadgeOS] auto-approve submission on pagesthanks Michael. As you say, that does not tie the 2 together which is what I wanted and adding text on that event would have been cumbersome. I have solved the problem another way – I have added the shortcode for the achievement to the event page which allows the user to then click on the badge and then submit for points/award.
How can I change the wording on the submission form so that I can instruct the user about what is required? If I put this on the page instead it gets repeated in inappropriate places.Forum: Plugins
In reply to: [BadgeOS] auto-approve submission on pagesThanks, that would be brilliant. Just to be clear again, this is an event created outside of badgeos. I dropped the shortcode into a page created by event manager. Thanks again