Recent content by typostudy

  1. T

    XF 1.2 which is the proper way to create a moderator

    Thanks, Wulfspider. I went to admin.php?moderators, and see the user:test1(I created through users->create new user, and in user group, I chose 'Registered', in Secondary User Groups, I chose 'Moderating' ) already list under 'Content Moderators', it seems that system will automatically put the...
  2. T

    XF 1.2 which is the proper way to create a moderator

    I am trying to create a user as moderator, I see in users->create new user, under user group:there is one option called 'Moderating', under Secondary User Groups:there is also one option called 'Moderating', I do not know if there is any difference between them. So I tried two ways to create...
  3. T

    questions on 'Creating a add-on to insert tabs in profile page (using hooks) - Part 4'

    I am reading this tutorial: Creating a add-on to insert tabs in profile page (using hooks) - Part 4(http://xenforo.com/community/resources/creating-a-add-on-to-insert-tabs-in-profile-page-using-hooks.335/update?update=488) I have several questions: 1. Step 8 - Input text field and "Send"...
  4. T

    questions on [part 3] Creating a add-on to insert tabs in profile page (using hooks)

    tyteen4a03, Thanks, your answers are very helpful! I have two more questions about it. 1. how to search it in javascript?in frontend, it shows: data-loadurl="members/admin.1/userslike", so a: what is the purpose to use data-loadUrl? b: how does xen:link work? 2. Step 7 - Changing our...
  5. T

    is there any tutorial about making js files in xenforo?

    I am trying to work with js files in xenforo, It seems there are certain rules that u may follow such as: XenForo.register('select.PrefixManager', 'XenForo.PrefixManager'); so I wonder if there is any tutorial about how to make js files in xenforo? I googled on line and community, but did not...
  6. T

    questions on [part 3] Creating a add-on to insert tabs in profile page (using hooks)

    when I review this tutorial: [part 3] Creating a add-on to insert tabs in profile page (using hooks): http://xenforo.com/community/thread...nsert-tabs-in-profile-page-using-hooks.21289/, I got some other questions: Step 5 - Extending the Controller Public - Member 1. class...
  7. T

    how to use the right color with color palette?

    Thanks Tracy, I have tried your suggestions. But I still did not find the area that below color take effect, although I find them in the templates, but in front end I can not find the corresponding places. @tooltipBackground /inline_mod.css @inlineMod /inline_mod.css @secondaryMedium...
  8. T

    how to use the right color with color palette?

    I am trying to make a new style for my xenforo site. Mainly I want to change the color of the site. I want to use the blue as main color and gold. I went to Style Properties: Color Palette, and see there are many options such as @pageBackground, @faintTextColor..., so my question is: how...
  9. T

    questions about 'insert tabs in profile page ' tutorial part 1

    sorry, not quite understand, how to do this?
  10. T

    questions about 'insert tabs in profile page ' tutorial part 1

    Hi tyteen4a03, thanks. For question 2, the full code is: <?php class newProfileTabs_Listener { public static function template_hook ($hookName, &$contents, array $hookParams, XenForo_Template_Abstract $template) { //Swiiitch! switch ($hookName) //the hookname {...
  11. T

    questions about 'insert tabs in profile page ' tutorial part 1

    Hi tyteen4a03, thanks for your answers. For question 1: if I put '#ourTab', the link of the tab is something like xenforo/members/admin.1/#ourTab, If I do not put '#ourTab', the link is xenforo/members/admin.1/, In both situations, when I click the tab, it shows the same page, and the url of...
  12. T

    questions about 'insert tabs in profile page ' tutorial part 1

    I am reading this tutorial: http://xenforo.com/community/threads/creating-a-add-on-to-insert-tabs-in-profile-page-using-hooks.21205/, but got some questions: Questions: 1. Step 6 - Our file Listener.php <li><a href="{$requestPaths.requestUri}#ourTab">Our Tab</a></li> why put #ourTab here? 2...
Top Bottom