Forum Replies Created
- AuthorPosts
WPExperts
YOU ARE ALWAYS WELCOME.
Thanks and regards,
myCred Support team.WPExperts
Hi @kamerhurenamsterdam
Thanks for reporting this error, can you please name the payment gateway in which you are facing this error.Regards
MyCred Support TeamWPExperts
Hi @binkley50,
We have tested all of the myCred shortcodes on our side and it seems that everything is working fine for us. We would like to know more about your issue and the shortcodes which you are trying to use. Also send us some screenshots of the issue.
Thank You!
RegardsMyCred Support Team
WPExperts
Hi stephfd21
We have made several changes to make our support system more efficient and our technical team is continuously working for the betterment of this system, also accepting paid customization request from mycred users.
If you have any issues or question regarding myCRED please feel free to contact us at https://mycred.me/support/
Thanks
November 21, 2018 at 22:35 in reply to: Display mycred shortcode response in custom user field? #35146WPExperts
Hi Jon,
Please share the details of your requirement at support ticket so we can help you further.
Here is a link to support: https://mycred.me/support/Thanks
myCRED
WPExperts
Once the beta is publicly released, I will post information on how to get access to it and how to report issues. This will be posted, just like everything else in the blog.
WPExperts
This code snippet will not work with 1.7 or higher.
The mycred_get_users_rank function was completely re-written in 1.7 and is not compatible with this code. As of 1.7 the mycred_get_users_rank function will return the rank object.If you want to retreave a users rank post ID, you can instead use the mycred_get_users_rank_id function.
WPExperts
I would go with using the mycred_add_finished filter which runs once myCRED has finished giving or taking points from a user. Each time points are given/taken it is done under a reference which you could use to make sure your custom task only runs in specific instances. This would be required since this filter fires every time users gain/lose points. You can find a complete list of references that myCRED uses here.
WPExperts
myCRED uses the wp_redirect function which defaults to 302 redirects. You would need to open the mycred-referrals.php file located in mycred/includes/ and on the line 41 change it from:
wp_redirect( remove_query_arg( $keys ) );
to:
wp_redirect( remove_query_arg( $keys ), 301 );
WPExperts
That was back in April and I am doing fine 🙂
WPExperts
There is a free plugin available to download in the store that connects myCRED with MarketPress. Unfortunately it is not compatible with 3.+ of MarketPress due to a rewrite of the gateway system in MarketPress. I am currently in talks with the developers of MarketPress to try and get it to work (since documentation is lacking on their end). As soon as we have it worked out the free plugin will receive an update to add support for 3.+
WPExperts
Hi
Point formats are controlled in your Point Type Settings. If you choose to have no decimals for your point type, you can not give partial points since all points you enter is formatted according to the point type setup.
So with no decimal places, giving a user 0.4 points will result in 0.4 being formatted to 0 = no points. If you want users to have partial points, update your point type to use decimals. This is applicable no matter how many decimal places you have. So if you use one decimal place but try to give a user 0.02 points, that will be formatted as 0.0 = no points.
WPExperts
Hi
You will need to check the documentation for the Ultimate Memberships Pro. Since they are adding support on their own end, they should be supplying how that plugin works.
WPExperts
Hi
1. You can automatically assign badges for any event that has been rewarded with points. So if your author has been awarded points for someone viewing their content, you can create and automatically reward them with a badge. If not, then no, you can not award them a badge automatically, only manually.
2. You can create badges based on any point related event. So if you reward comments left on your content, then you can create a badge for that event.
For example, give a user “silver badge” if they have received points for content comment x number of times or gained x number of points in total.3. You can reward users with points for earning a badge as of 1.7
4. There is no hook built-in to myCRED that awards points for getting your content “features” so you can not give a badge for it. You would need to build a custom hook and reward the event in order to create a badge for it.
I highly recommend you check the codex for information about how the Badges add-on works:
http://codex.mycred.me/chapter-iii/badges/WPExperts
Hi
1. You can automatically assign badges for any event that has been rewarded with points. So if your author has been awarded points for someone viewing their content, you can create and automatically reward them with a badge. If not, then no, you can not award them a badge automatically, only manually.
2. You can create badges based on any point related event. So if you reward comments left on your content, then you can create a badge for that event.
For example, give a user “silver badge” if they have received points for content comment x number of times or gained x number of points in total.3. You can reward users with points for earning a badge as of 1.7
4. There is no hook built-in to myCRED that awards points for getting your content “features” so you can not give a badge for it. You would need to build a custom hook and reward the event in order to create a badge for it.
I highly recommend you check the codex for information about how the Badges add-on works:
http://codex.mycred.me/chapter-iii/badges/- AuthorPosts