- Microlancer Beta Tester
- Envato Staff
- Support Staff
- Has been a member for 6-7 years
- Attended a Community Meetup
- Beta Tester
- Bought between 10 and 49 items
- Exclusive Author
- Interviewed on the Envato Notes blog
This looks pretty good! Thanks for your hard work Chris!
Ibby said
This looks pretty good! Thanks for your hard work Chris!
Thank you
0.3
[cw-new-user]so that up there, Ill go a little more into things here Ive added a cookie you can display a message to the users within 10 minutes of them logging , its completely un-styled and wrapped in a div with the class cw-user-message
[cw-new-user]Yeah new user!! [/cw-new-user]
You can also do it programmatically if you want to do a notice of some sort.
if (isset($_COOKIE['cw_verifi_new_user'])) {
//do totally awesome stuff!
}
Users are automatically logged in and redirected to the homepage, theres a filter for both the shortcode and login form to change the redirect
//wp-login.php redirect
add_filter('cw_verifi_redirect', 'test_redirect');
//shortcode redirect
add_filter('cw_short_redirect', 'test_redirect');
function test_redirect(){
return 'http://yoursite.com/faq';
}
the shortcode registration form javascript is a little rough at the moment maybe by friday I’ll have it polished up
thats all for now, next step will be admin work and re-writing the marketplace class to fit my needs a bit better
Nice additions! Getting an unexpected “}” in cw-verifi.php on line 247
itsmattadams said
Nice additions! Getting an unexpected “}” in cw-verifi.php on line 247
grrr the SVN is duplicating my files within the files , if you look in cw-verifi.php its all forked up I just updated it to 0.3.1 lets see if that fixes it
Sorry to everyone
Yeah checked it this morning 0.3.1 fixed the SVN issue
Congrats for your plugin 
Just wondering, how long did it take to get it processed/approved/published?
SurStudio said
Congrats for your pluginJust wondering, how long did it take to get it processed/approved/published?
well once you it gets approve you can publish it to the SVN, but a few hours maybe I dont remember
0.4
- New class for handling the Envato API
- New admin framework
- Added redirect option
- Improved password strength indicator
- Improved localization
- Improved error handling
- Depreciated cw_get_user_by_meta_data
- Removed cw_short_redirect – both use the same filter now + the option
- User cookie is now for an hour
for anyone wondering I re-wrote Jeffery Ways API class to fit nicely with how WordPress handles external API’s you can find it here solo on githib
next step is to tackle multiple purchase code, I already have a plan on how I want to do it just need to find the time.
chrisakelley said
0.4
- New class for handling the Envato API
- New admin framework
- Added redirect option
- Improved password strength indicator
- Improved localization
- Improved error handling
- Depreciated cw_get_user_by_meta_data
- Removed cw_short_redirect – both use the same filter now + the option
- User cookie is now for an hour
for anyone wondering I re-wrote Jeffery Ways API class to fit nicely with how WordPress handles external API’s you can find it here solo on githib
next step is to tackle multiple purchase code, I already have a plan on how I want to do it just need to find the time.
Super! Really great this piece of work!
What do i need to think about with ‘multiple purchase codes’ ? When one user has bought more items?
