Solutions
-
Adriano Faria's post in Pages Tab in ACP Does Not Show? was marked as the answerYou don’t have it, thus it doesn’t show.
You have to purchase it. After that install it:
-
Adriano Faria's post in To turn off guest users from looking at the member profile was marked as the answerAdmin CP -> Applications -> click in System -> Profile -> click in the padlock-> remove Guests from the selection.
-
Adriano Faria's post in Large database after update my ips was marked as the answer
-
Adriano Faria's post in (4.5) Where is the option for anonymous logins? was marked as the answerAccount Settings-> Security and Privacy.
It’s an account feature from now on.
-
Adriano Faria's post in Reaction in topicRow - Counting author reactions only was marked as the answerI’ll send a PM with the template when I reach my PC, if no one else helps here first.
-
Adriano Faria's post in How to use the Links Directory? was marked as the answerIf 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.
-
Adriano Faria's post in Adding a field to registration was marked as the answerQuick 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; }