Announcement

Collapse
No announcement yet.

I can't edit my profile HELP!!!!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • I can't edit my profile HELP!!!!

    Every time I try to change my details I get an error message stating that either my account has been suspended or is awaiting approval. Surely if that was the case I would not be able to post on these forums. All I want to do is update my info, add a signature and add an avatar. Any help would be much appreciated.
    Give a man a fish, he eats for a night. Teach a man how to fish, he eats for a lifetime.

  • #2
    Thanks

    I guess the admins fixed this post-haste as I can and have edited my profile. Thank You!!!
    Give a man a fish, he eats for a night. Teach a man how to fish, he eats for a lifetime.

    Comment


    • #3
      technically, you fixed it yourself the moment you surpassed 10 posts lol. There is a requirement for editing profiles, which is 10 total posts. We really need a note to be attached to the USER CP section of Quakeone, that in not too gaudy but definitely VISIBLE about this.

      When you enter the User CP you see this messag displayed near the top
      Originally posted by Quakeone.cmo User CP
      "Welcome in your Control Panel, Mindf!3ldzX. You can manage you settings, edit your informations and much more!
      Select above what you want to do, then check the drop down menu for more options."

      How about this....
      Welcome in your Control Panel, Mindf!3ldzX. You can manage you settings, edit your informations and much more! YOU MUST HAVE A TOTAL OF TEN (10) POSTS BEFORE YOU CAN EDIT/MODIFY YOUR PROFILE! Select above what you want to do, then check the drop down menu for more options.
      Want to get into playing Quake again? Click here for the Multiplayer-Startup kit! laissez bon temps rouler!

      Comment


      • #4
        Originally posted by Mindf!3ldzX View Post
        We really need a note to be attached to the USER CP section of Quakeone, that in not too gaudy but definitely VISIBLE about this.
        Finally did this. Hopefully people read it.

        Comment


        • #5
          @solecord - What if it only gave you the 10 post count message if you have less than 10 posts? The post count is displayed right on that same page, it should be cake to write a conditional statement. You could even add a little posts remaining message.

          Code:
          $allow_num = (10 - $user_post_count);
          $message = 'Welcome to your Control Panel, $user_name. '
          $message.= ($allow_num > 0)
          	? '<strong>You have $allow_num posts remaining before you can edit your profile.</strong>'
          	: "You can manage your settings, edit your profile and much more! Select above what you want to do, then check the drop down menu for more options.";
          Last edited by MadGypsy; 06-30-2014, 08:14 AM.
          http://www.nextgenquake.com

          Comment


          • #6
            holy shit that was fast
            Want to get into playing Quake again? Click here for the Multiplayer-Startup kit! laissez bon temps rouler!

            Comment


            • #7
              Originally posted by MadGypsy View Post
              @solecord - What if it only gave you the 10 post count message if you have less than 10 posts? The post count is displayed right on that same page, it should be cake to write a conditional statement. You could even add a little posts remaining message.

              Code:
              $allow_num = (10 - $user_post_count);
              $message = 'Welcome to your Control Panel, $user_name. '
              $message.= ($allow_num > 0)
              	? '<strong>You have $allow_num posts remaining before you can edit your profile.</strong>'
              	: "You can manage your settings, edit your profile and much more! Select above what you want to do, then check the drop down menu for more options.";
              Doesn't work that way. It's a vB "language" definition. Don't have access to post counts there.

              Comment


              • #8
                @solecord - Ah, yeah that would probably take too much work to include the post count data in that spot. You could always fake it with JQuery. The ol last minute switcheroo.
                http://www.nextgenquake.com

                Comment

                Working...
                X