Jump to content
WebFlake

Thorn

Apprentice
  • Posts

    33
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. Thorn's post in Hide referrer was marked as the answer   
    Yes, I've seen something like this before.  Let me grab the code for it.

    That should do the trick.  If you want to use something other than anonym.to, just go to their site and get their JS file (if they have one) and replace the links in the code above with the new domain.  Hope I helped!
  2. Thorn's post in A few questions. was marked as the answer   
    For that, it would be better not to do it in my opinion.  It's good training for your moderators, and all they have to do it check mark it > select to leave a copy > move the topic.  You could do this but you're talking a lot of custom PHP coding here, wouldn't be easy.
     
    Again a ton of work would need to be put into this, and I know no PHP so I can't help.  However, I do know PHP would be needed to do this.
     
    As for your final question about upgrading users I feel the best way to do this is get your dedi to contact your site's DB and grab all members from the specific group and add them to VIP.  This would probably be done with MySQL I believe.  You could also go about it by running a custom PHP file, once again, after they donate.
     

     
    Overall, a ton of work would need to go into this and there's no easy way into it.  Your cheapest bet is to just get more moderators that moderate constantly, but you could find and pay a PHP developer experienced with IPB to make all these additions for you, but it would most likely be expensive.
  3. Thorn's post in userInfoPane question was marked as the answer   
    It would be done by adding the "float: left;" styling to the labels and "float: right;" to the amounts.  You would also need the "display:inline-block;" and 100% width effects to the parenting <li> tag.
     
    This CSS should do the trick:
    div.author_info > .user_details > ul.custom_fields li { width: 100%!important; display: inline-block!important; } div.author_info > .user_details > ul.custom_fields li > .ft { float: left!important; } div.author_info > .user_details > ul.custom_fields li > .fc { float: right!important; } You may need to mess with the margin to get it perfectly aligned, but that code should do the trick.  Just add it anywhere in your ipb_styles.css template.
×
×
  • Create New...