Jump to content

Adriano Faria

Clients
  • Posts

    31,847
  • Joined

  • Days Won

    475

Community Answers

  1. Adriano Faria's post in How to Promote Our Picks?? was marked as the answer   
    Have you enabled it in the ACP? If don’t, type Picks in the ACP search and enable it.
  2. Adriano Faria's post in "About me" in the profile was marked as the answer   
    It’s the profile field. If the user fill this field (or any other Editor profile field) will appear as a new tab in user profile. 
  3. Adriano Faria's post in What is wrong with this code? was marked as the answer   
    See the method attachmentLookup. It’s wrong. 
    Open same extension from any other and compares to yours.
  4. Adriano Faria's post in Missing Source button on editor was marked as the answer   
    Enable HTML posting for your group. 
  5. Adriano Faria's post in anyone know what error 4X196/3 is..? was marked as the answer   
    /* If we don't have any available payment methods, show an error */ if ( \count( $paymentMethods ) === 0 and !$amountToPay->amount->isZero() ) { \IPS\Output::i()->error( 'err_no_methods', '4X196/3', 500, 'err_no_methods_admin' ); }  
  6. Adriano Faria's post in Files/Download - Query to return info was marked as the answer   
    downloads_files contains file information, like file name, submitter, date, path, category, number of comments/reviews, ratings, etc.
    downloads_fields and downloads _ccontent contains extra fields information. 
    downloads_downloads contains information about who downloaded a file and when.
  7. Adriano Faria's post in How to get MArketplase support topics "infobox"? was marked as the answer   
    ACP -> Community -> (Forums) Settings -> Topic Summary Settings
  8. Adriano Faria's post in Enable "Recent Profile Visitors" by default? was marked as the answer   
  9. Adriano Faria's post in Possible to auto send a private message to new users? was marked as the answer   
  10. Adriano Faria's post in A "Who posted" block? was marked as the answer   
    Not out of the box.
    This plugin adds a block but not a sidebar block:
     
  11. Adriano Faria's post in Integração do RD Station com o Invision Community was marked as the answer   
    @Karina Harumi, o idioma oficial aqui é inglês. Dificilmente alguém irá traduzir e postar.
    Use o Google Translator e edite seu post. Suas chances aumentarão.
  12. Adriano Faria's post in Widget visibility settings? was marked as the answer   
    Make sure your configuration method starts with:
    public function configuration( &$form=null ) { $form = parent::configuration( $form );  
  13. Adriano Faria's post in Cannot change friendly URLs was marked as the answer   
  14. Adriano Faria's post in Usergroup icons that show next to usernames was marked as the answer   
    Edit the group and add the FA icon in the Group Formatting. Example:
    Will produce:

     

     
    You can also give users the ability to add their own FA icons:
     
  15. Adriano Faria's post in How to clean up attachment files after deleting content? was marked as the answer   
    Orphaned attachments are deleted regularly on a task that runs once per day, if I’m Not mistaken. 
    If you want to test it, go to Tasks and find one related to attachments or clean and run the task.
    EDIT: The task is cleanupattachments and runs at every 12 hours.
  16. Adriano Faria's post in restrict moderated members from posting in a forum was marked as the answer   
    Version 1.0.1 submitted to the marketplace:

    User can't create new topics in the chosen forums:


    Or reply to existing topics in chose forums:

  17. Adriano Faria's post in Manual approve new members was marked as the answer   
    Yes, on ACP go to Notifications Settings and find A new member requires admin validation on Member Accounts. 
    On a side note, take a look at this plugin:
    It can save you some time.
  18. 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: 
     
  19. 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. 
  20. Adriano Faria's post in Large database after update my ips was marked as the answer   
  21. 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. 
  22. 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. 
  23. 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.
  24. 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; }  
×
×
  • Create New...