Recent content by Mic

  1. M

    XF 1.1 reCaptcha always loading...

    Hi, When I activate the reCaptcha in my Sign In form, I always see the message: ReCAPTCHA verification is loading. Please refresh the page if it does not load. I did also a test with new public and private keys (in ReCaptcha.php) and I have the same problem. Mic
  2. M

    Custom User Fields - Is it possible to create a checkbox that will be selected by default?

    Hi, Is it possible to create a checkbox that will be checked by default? Right now, I don't see the option.
  3. M

    Multi Server - Load Balancing - Session Affinity Control?

    Hi Bill, Did you find something? I have the same problem here. Mic
  4. M

    XenForo_Model_User->isFollowing(...) problem?

    OK, I understand. By adding the commas, it will work for the first and the last item in the list.
  5. M

    XenForo_Model_User->isFollowing(...) problem?

    Hi, Is it possible that this function is not working when I only have one follower? /** * Returns whether or not the specified user is being followed by the follower * * @param integer $userId User being followed * @param array $follower User doing the following * * @return boolean */ public...
  6. M

    Xen Notices [Deleted]

    Is it possible when a user deletes a notification to not be redirected to a specific page? I only want to close the confirmation pop-up and stay on the same page. if ($this->isConfirmedPost()) { $notificationModel->dismissNotification($notificationId)...
  7. M

    Language selector in Register Form?

    I am able to show the language selector in this page. But, when I click on the link, it does not pop-up the selector window. It redirect to a full page. I just want to see the pop-up. This is what I added at the top of my register_form template. <div id="languageSelector"> <a...
  8. M

    Language selector in Register Form?

    We just want to allow the user to switch to the correct language at any time.
  9. M

    Language selector in Register Form?

    Hi, Is it possible to show and use the language selector in the register form?
  10. M

    How to set the Cometchat UI language based on the current user language?

    I am using two languages in XenForo. The user is able to select the one he wants. Now, I want to adjust Comechat language to the current user language. Is it possible?
  11. M

    you_have_x_new_unread_conversations with %d ???

    Hi, I don't understand how the value (%d) in that phrase is replaced. In navigation_visitor_tab: ... <a href="{xen:link conversations}" rel="Menu" class="navLink NoPopupGadget">{xen:phrase inbox} <strong class="itemCount {xen:if {$visitor.conversations_unread}, '', 'Zero'}"...
  12. M

    How to get a user custom field value in php?

    Inside my add-on. I found a way to get the value. $userFieldModel = new XenForo_Model_UserField; $values = $userFieldModel->getUserFieldValues($visitor['user_id']); $myValue = $values['my_custom_field_id'];
Top Bottom