Title: dscottangle's Replies | WordPress.org

---

# dscottangle

  [  ](https://wordpress.org/support/users/dscottangle/)

 *   [Profile](https://wordpress.org/support/users/dscottangle/)
 *   [Topics Started](https://wordpress.org/support/users/dscottangle/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dscottangle/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dscottangle/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dscottangle/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dscottangle/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dscottangle/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Gallery Voting] Top Rated images in Date Range – Specifically: last week | month | year](https://wordpress.org/support/topic/top-rated-images-in-date-range-specifically-last-week-month-year/)
 *  Thread Starter [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/top-rated-images-in-date-range-specifically-last-week-month-year/#post-3824728)
 * I think that would work perfectly, and in a drop-down it certainly wouldn’t feel
   over done.
 * You’re always on the ball…
 * Thanks Dude,
 * Scott
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Gallery Voting] "400 Bad Request", header field & cookies???](https://wordpress.org/support/topic/400-bad-request-header-field-cookies/)
 *  Thread Starter [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [13 years ago](https://wordpress.org/support/topic/400-bad-request-header-field-cookies/#post-3750150)
 * You are a total star!!! Thanks for everything… well… regarding NextGen Voting…:
   ~)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Gallery Voting] "400 Bad Request", header field & cookies???](https://wordpress.org/support/topic/400-bad-request-header-field-cookies/)
 *  Thread Starter [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [13 years ago](https://wordpress.org/support/topic/400-bad-request-header-field-cookies/#post-3750133)
 * Thanks Shaun,
 * I can get it to happen fairly consistently. However, you may be perfectly correct
   with it being a local dev issue.
 * To recreate, ‘all’ I need to do is:
    1. Open a few different galleries in separate tabs
    2. Vote on several images on the first tab
    3. Move to second tab and vote on several images
    4. Repeat above step until all opened tabs have been gone through
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Gallery Voting] "400 Bad Request", header field & cookies???](https://wordpress.org/support/topic/400-bad-request-header-field-cookies/)
 *  Thread Starter [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [13 years ago](https://wordpress.org/support/topic/400-bad-request-header-field-cookies/#post-3750038)
 * Okay, I was able to get the site working with FF again by clearing out the Recent
   History, but obviously this isn’t something I want to happen with my users. (
   i.e. read: what have I done wrong to cause this mess?) :~)
 * Happy Times…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Achievements for WordPress] Using Achievements to 'Promote' user role](https://wordpress.org/support/topic/using-achievements-to-promote-user-role/)
 *  Thread Starter [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [13 years ago](https://wordpress.org/support/topic/using-achievements-to-promote-user-role/#post-3693176)
 * Thanks Mike, I like how you’re expanding the ‘perceptive scope’ – _sorry, I just
   couldn’t think how else to word it :~P_ – by suggesting ways it might work.
 * Using karma points would work for some things, but for others it would need to
   be more specific, e.g. a member who has submitted 20 original and ‘suitable’ 
   photos to the community gallery may earn a promotion to Photographer, with the
   same authority to self-publish (at least with regards to images) as the Author
   role. Of course this type of promotion could only be awarded based on a _specific_
   type of activity.
 * Perhaps there’s scope here for an A4WP (nod to Mike) add-on to act as intermediary
   between A4WP and a user-role plugin (e.g. Membership+, etc…), so that when an
   achievement is triggered, by award or event, it will check to see if the users
   role needs to be added to|amended.
 * I fully accept that this might be an unreasonable feature expectation, but I’m
   a concepts guy, so it’s in my remit to stretch, push and challenge.
 * However, I think adding this kind of functionality – i.e. _automatically adjusting
   the scope of a users role based upon their actual activity_ – has huge potential
   for enhancing a dynamic, community based website.
 * This could even be further extended with the possible future feature of users
   |members being able to award each other ‘helping’ points (or, whatever) and possibly
   elevating someone to a Moderator role by community consensus – for example.
 * Just thoughts I’m throwing out into the ether, but with a sense of hope as well.
 * Later,
 * Scott
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Achievements for WordPress] Using Achievements to 'Promote' user role](https://wordpress.org/support/topic/using-achievements-to-promote-user-role/)
 *  Thread Starter [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [13 years ago](https://wordpress.org/support/topic/using-achievements-to-promote-user-role/#post-3693121)
 * This is all I’ve been able to find – I really hope it’s helpful…
 * [Found at StackExchange](http://wordpress.stackexchange.com/questions/4725/how-to-change-a-users-role)
 * **Concept**
 *     ```
       // NOTE: Of course change 3 to the appropriate user ID
       $u = new WP_User( 3 );
   
       // Remove role
       $u->remove_role( 'subscriber' );
   
       // Add role
       $u->add_role( 'editor' );
       ```
   
 * **Example Usage**
 *     ```
       $blogusers = get_users('&role=student');
   
       foreach ($blogusers as $user) {
   
           $thisYear = date('Y-7');
           $gradYear = date(get_the_author_meta( 'graduation_year', $user->ID ).'-7');
   
           if($gradYear < $thisYear) {
               $u = new WP_User( $user->ID );
               // Remove role
               $u->remove_role( 'student' );
   
               // Add role
               $u->add_role( 'adult' );
           }
       }
       ```
   
 * Again, this comes from people who know far more about it than I.
 * – Scott
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Templates not available for Calendar Page. WILL BUY ECP if this is solvable!](https://wordpress.org/support/topic/templates-not-available-for-calendar-page-will-buy-ecp-if-this-is-solvable/)
 *  [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/templates-not-available-for-calendar-page-will-buy-ecp-if-this-is-solvable/#post-3249274)
 * As a Thesis 2 user, and HUGE fan of _The Event Calendar_, all I can say is THANK
   YOU.
 * I really look forward to your 3.0 release…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [script with juquery.com problem , slow load page !!!](https://wordpress.org/support/topic/script-with-juquerycom-problem-slow-load-page/)
 *  [dscottangle](https://wordpress.org/support/users/dscottangle/)
 * (@dscottangle)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/script-with-juquerycom-problem-slow-load-page/#post-3069135)
 * I’ve found the same issue and it appears to be in the ubermenu.php from the ubermenu
   plugin…
 * You might find [this article](http://wpmu.org/beware-fake-jquery-calls-in-wordpress-plugins-from-the-repo/)
   intersting. It’s not about juquery specifically, but I think it realates…

Viewing 8 replies - 1 through 8 (of 8 total)