Profile Privacy?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Charlie_Brown
    Senior Member
    • Dec 2006
    • 1275
    • 4.1.x

    Profile Privacy?

    I upgraded my test forum and all went well but I don't really see the profile privacy?

    I can see the few other new stuff still messing around with it.
    Last edited by Charlie_Brown; Sun 12 Oct '08, 6:14pm. Reason: Problem is fixed
  • Charlie_Brown
    Senior Member
    • Dec 2006
    • 1275
    • 4.1.x

    #2
    Originally posted by Charlie_Brown
    I upgraded my test forum and all went well but I don't really see the profile privacy?

    I can see the few other new stuff still messing around with it.
    Ok I figured it out these 2 mods need disabled so if anyone has these 2 mods installed disable them.

    Icons for UserCP

    UserCP Navbar Menu

    Comment

    • jumpD
      Senior Member
      • May 2004
      • 128
      • 3.8.x

      #3
      Icons for UserCP probably doesn't need to be uninstalled. You most likely just need to add the changes to it's template since it uses a different template.

      Comment

      • Charlie_Brown
        Senior Member
        • Dec 2006
        • 1275
        • 4.1.x

        #4
        All I know is when I turned these 2 things off it works as needed. Thanks though for the info.

        Comment

        • jumpD
          Senior Member
          • May 2004
          • 128
          • 3.8.x

          #5
          Just open USERCP_SHELL_ICONS and find near the top

          Code:
              <if condition="$show['customizelink']">
              <tr><td class="$navclass[customize]" nowrap="nowrap">
                  <table border="0" cellspacing="0" cellpadding="0">
                      <tr>
                          <td width="20">
                              <img border="0" src="$stylevar[imgdir_misc]/usercp_icons/vcard_edit.png" width="16" height="16"></td>
                          <td>
                          <a class="smallfont" href="profile.php?$session[sessionurl]do=customize">
                          $vbphrase[customize_profile]</a></td>
                      </tr>
                  </table>
              </td></tr>
              </if>
          Below that add

          Code:
              <if condition="$show['privacylink']">
              <tr><td class="$navclass[privacy]" nowrap="nowrap">
                  <table border="0" cellspacing="0" cellpadding="0">
                      <tr>
                          <td width="20">
                      <img border="0" src="$stylevar[imgdir_misc]/usercp_icons/lock.png" width="16" height="16" /></td>
                          <td><a class="smallfont" href="profile.php?$session[sessionurl]do=privacy">$vbphrase[profile_privacy]</a></td>
                      </tr>
                  </table>
              </td></tr>
              </if>
          Then you can turn Icons for UserCP back on.

          Comment

          • Charlie_Brown
            Senior Member
            • Dec 2006
            • 1275
            • 4.1.x

            #6
            Hmm didn't fix it at all.

            Comment

            • Charlie_Brown
              Senior Member
              • Dec 2006
              • 1275
              • 4.1.x

              #7
              Ok I added the eedit in the wrong place it works now than you.

              Comment

              • choccyclaire
                Senior Member
                • Jan 2008
                • 333

                #8
                Originally posted by jumpD
                Just open USERCP_SHELL_ICONS and find near the top

                Code:
                    <if condition="$show['customizelink']">
                    <tr><td class="$navclass[customize]" nowrap="nowrap">
                        <table border="0" cellspacing="0" cellpadding="0">
                            <tr>
                                <td width="20">
                                    <img border="0" src="$stylevar[imgdir_misc]/usercp_icons/vcard_edit.png" width="16" height="16"></td>
                                <td>
                                <a class="smallfont" href="profile.php?$session[sessionurl]do=customize">
                                $vbphrase[customize_profile]</a></td>
                            </tr>
                        </table>
                    </td></tr>
                    </if>
                Below that add

                Code:
                    <if condition="$show['privacylink']">
                    <tr><td class="$navclass[privacy]" nowrap="nowrap">
                        <table border="0" cellspacing="0" cellpadding="0">
                            <tr>
                                <td width="20">
                            <img border="0" src="$stylevar[imgdir_misc]/usercp_icons/lock.png" width="16" height="16" /></td>
                                <td><a class="smallfont" href="profile.php?$session[sessionurl]do=privacy">$vbphrase[profile_privacy]</a></td>
                            </tr>
                        </table>
                    </td></tr>
                    </if>
                Then you can turn Icons for UserCP back on.
                Many thanks for this.

                Comment

                Related Topics

                Collapse

                Working...