Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. If you want me to try and install it. Pm me an url and admin login.
  2. Are you sure you cleared cache? I do not get that error when viewing your site using the mobile skin.
  3. Without knowing the errors it is impossible to say. You didn't need to delete all those things. Just tell the install to overwrite the existing tables.
  4. Usually bad programming so you can use ftp or file manager and edit the initdata.php file changing this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); to this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_ERROR | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING );
  5. What does the message say under those tabs. I can't make it out.
  6. Have you checked to be sure the version you are using is compatible with the version of ipb you are using? If you want pm the url and admin login and I will look at it. I see you didn't fix this setting Awards > Manage Awards Manage Awards Editing Award: First 100 Badge Group Check all you want to have awards .. Which groups will have this badge displayed (only effective for award in the badge grouping) It may be a bug in the settings
  7. So we are back to where we started. When you create the assignment group it asked for Group Reference Key That is what you use in the if statement above. Lets say you put groupAssignment so it would look like change to <if test="authorcfields:|:$author['custom_fields'] != """> <ul class='custom_fields'> <foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data"> <if test="authorgroups:|:$group != 'groupAssignment'"> <foreach loop="customFields:$author['custom_fields'][ $group ] as $field"> <if test="$field != ''"> <li> {$field} </li> </if> </foreach> </if> </foreach> </ul> </if>
  8. I do not understand. If you put stats field in the group you do not want to display it will not show. If you put it in a group you are not blocking it will show...
  9. If you have an admin login and want me to look pm me the info,
  10. try this <if test="in_array($author['member_group_id'],array(4,6))"><style type="text/css">.ipsUserPhoto { border: 1px solid red; }</if> <if test="avatar:|:$author['member_id']"> <li class='avatar'> <if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )"> <a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'> </if> <if test="hasVariable:|:$this->settings['member_topic_avatar_max']"> <img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' /> <else /> <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' /> </if> <if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )"> </a> </if> </li> <else /> <li class='avatar'> <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' /> </li> </if> <if test="in_array($author['member_group_id'],array(4,6))"></style></if>
  11. ok in template global template > userinfpane find <if test="avatar:|:$author['member_id']"> <li class='avatar'> <if test="canSeeProfiles:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )"> <a itemprop="url" href="{parse url="showuser={$author['member_id']}" template="showuser" seotitle="{$author['members_seo_name']}" base="public"}" title="{$this->lang->words['view_profile']}: {$author['members_display_name']}" class='ipsUserPhotoLink'> </if> <if test="hasVariable:|:$this->settings['member_topic_avatar_max']"> <img itemprop="image" src='{$author['pp_main_photo']}' class='ipsUserPhoto ipsUserPhoto_variable' /> <else /> <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' /> </if> <if test="canSeeProfiles2:|:$this->memberData['g_is_supmod'] OR ( $this->memberData['g_mem_info'] && ! IPSMember::isInactive( $author ) )"> </a> </if> </li> <else /> <li class='avatar'> <img itemprop="image" src='{$author['pp_thumb_photo']}' class='ipsUserPhoto ipsUserPhoto_large' /> </li> </if> Add the css to this < li there are 2 of them. <li class='avatar'> Use an <if statement like this for each group <if test="in_array($author['member_group_id'],array(4,6))"> new css here </if> make one for all groups you want to use for new css..
  12. Yes if you put all the custom profile fields in a custom profile group you made.
  13. Are you talking about the circle?? Do you always want the avatar in a circle?? Do you know css? Have you created and tested the css for the border??
  14. There are only 2 unless you create a new one. If you create a new one you will have to give it the key so use that key you used to create it in the if statement.
  15. So if 100 breaks it try something smaller until you get what you need.
  16. in template skin_shoutbox_hooks > hookGlobalShoutbox find <h3 class='maintitle'> <a class='toggle right' href='#' title='{$this->lang->words['toggle_shoutbox']}'>{$this->lang->words['toggle_shoutbox']}</a> <a href="{parse url="app=shoutbox" seotitle="false" base="public"}" title='{$this->lang->words['view_main_shoutbox']}'>{$this->settings['shoutbox_title']}</a> <if test="showPopupLink:|:$this->settings['shoutbox_popup']"><a href="#" id="shoutbox-popup-button" title="{$this->lang->words['open_popup']}"><img src="{$this->settings['img_url']}/shoutbox/popup.png" alt="{$this->lang->words['open_popup']}" /></a></if> </h3> Before the </h3> add something like this <a href="http://yoursite.com/index.php?showtopic=??" title="View Shoutbox Rules">[ ShoutBox Rules ]</a> The ?? is the topic id for the shoutbox rules.
  17. Ok. In the userinfopane template find <if test="authorcfields:|:$author['custom_fields'] != """> <ul class='custom_fields'> <foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data"> <foreach loop="customFields:$author['custom_fields'][ $group ] as $field"> <if test="$field != ''"> <li> {$field} </li> </if> </foreach> </foreach> </ul> </if> change to <if test="authorcfields:|:$author['custom_fields'] != """> <ul class='custom_fields'> <foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data"> <if test="authorgroups:|:$group != 'contact' and $group !='profile_info'"> <foreach loop="customFields:$author['custom_fields'][ $group ] as $field"> <if test="$field != ''"> <li> {$field} </li> </if> </foreach> </if> </foreach> </ul> </if> You can use one or both of these statements $group != 'contact' and $group !='profile_info' just remove the and and the one you want to show... You have the same type statements in template profiles > profilemodern
  18. Do you mean group like contact methods or a field like location?
  19. I am not sure if he meant his links or the links entered in a url tag.
  20. Send me a pm with admin login and url and I will take a look.
  21. try in acp &gt; members &gt;&nbsp;Custom Profile Fields Make this a private profile field? Yes If yes, field only visible to profile owner, super moderators and admins. If 'no', members can search within this field. Make Admin and Super Moderator Editable/Viewable Only? No If yes, will override the above options so only admins and super moderators can see and edit this field.&nbsp;If enabled, the field will not show on the registration form!
×
×
  • Create New...