Jump to content

Adriano Faria

Clients
  • Joined

Solutions

  1. Adriano Faria's post in Pages Tab in ACP Does Not Show? was marked as the answer   
    You don’t have it, thus it doesn’t show. 
    You have to purchase it. After that install it: 
     
  2. Adriano Faria's post in To turn off guest users from looking at the member profile was marked as the answer   
    Admin CP -> Applications -> click in System -> Profile -> click in the padlock-> remove Guests from the selection. 
  3. Adriano Faria's post in Large database after update my ips was marked as the answer   
  4. Adriano Faria's post in (4.5) Where is the option for anonymous logins? was marked as the answer   
    Account Settings-> Security and Privacy. 
    It’s an account feature from now on. 
  5. Adriano Faria's post in Reaction in topicRow - Counting author reactions only was marked as the answer   
    I’ll send a PM with the template when I reach my PC, if no one else helps here first. 
  6. Adriano Faria's post in How to use the Links Directory? was marked as the answer   
    If you're talking about this resource, it's just like create a topic. Create a category, give permission for those can create the link (record) and then click to create a new link. Give a title, the URL and the content and hit save. You're done. The app will add a screen capture of the site as the image record.
  7. Adriano Faria's post in Adding a field to registration was marked as the answer   
    Quick example, obviously not tested:
    /** * Build Registration Form * * @return \IPS\Helpers\Form */ public static function buildRegistrationForm( $postBeforeRegister = NULL ) { $form = parent::buildRegistrationForm( $postBeforeRegister ); $form->add( new \IPS\Helpers\Form\Text( 'field_name', NULL, TRUE ), 'password_confirm' ); return $form; } /** * Create Member * * @param array $values Values from form * @param array $profileFields Profile field values from registration * @param array|NULL $postBeforeRegister The row from core_post_before_registering if applicable * @return \IPS\Member */ public static function _createMember( $values, $profileFields, $postBeforeRegister = NULL ) { $member = parent::_createMember( $values, $profileFields, $postBeforeRegister ); $member->field_name = $values['field_name']; $member->save(); return $member; }