Jump to content

Leaderboard

  1. Courage

    Courage

    Enthusiast


    • Points

      2

    • Posts

      177


  2. Skreamzja

    Skreamzja

    Community Regular


    • Points

      1

    • Posts

      579


  3. Tony

    Tony

    Administrator


    • Points

      1

    • Posts

      5,256


  4. Justin™

    Justin™

    Retired Staff


    • Points

      1

    • Posts

      369


Popular Content

Showing content with the highest reputation on 08/07/2014 in all areas

  1. Preview: AdminCP > Look and Feel > [your skin] -> Board Index -> boardIndexTemplate Find <foreach loop="side_blocks:$side_blocks as $block"> {$block} </foreach> Add before: <if test="memberbox:|:$this->memberData['member_id']"> <div class='ipsSideBlock clearfix'> <h3>Welcome, <a href="{parse url="showuser={$this->memberData['member_id']}" seotitle="{$this->memberData['members_seo_name']}" template="showuser" base="public"}" title='{$this->lang->words['your_profile']}'> {$this->memberData['members_display_name']}</a></h3> <div class='_sbcollapsable'> <center class='desc member_title'> <if test="$this->memberData['title'] != ''"> {$this->memberData['title']}<br /> </if> <br /> <a href="{parse url="showuser={$this->memberData['member_id']}" seotitle="{$this->memberData['members_seo_name']}" template="showuser" base="public"}" title='{$this->lang->words['your_profile']}'> <img src='{$this->memberData['pp_main_photo']}'></a> <br /><br /> <center> <span style=' font-size: 14px;'>{$this->memberData['prefix']}{$this->memberData['g_title']}{$this->memberData['suffix']}</span><br /><br /> Posts: {$this->memberData['posts']}<br /> Profile views: {$this->memberData['members_profile_views']}<br /> Member No.: {$this->memberData['member_id']}<br> Joined: {parse date="$this->memberData['joined']" format="joined"} <br /><br /> Your IP: {$_SERVER['REMOTE_ADDR']} <br /><br /> <div style='background:#0f2437 ;padding: 7px; color: #fff; font-weight: bold'>{$this->memberData['pp_reputation_points']} </div> </center> </div> </div> </if> To change background color from Reputaton, just edit: <div style='background:#0f2437 ;padding: 7px; color: #fff; font-weight: bold'>{$this->memberData['pp_reputation_points']}</div>
    1 point
  2. Beautiful custom Courage, .. to me it looks
    1 point
  3. Username: laracroftonline First Name: Manuela Age: 23 Rate your English out of 10: 9 Additional languages spoken: Dutch Software specialization: Windows Server/Desktop/Linux/Wordpress and SEO IPB skills: 8 XenForo skills: 7 vBulletin skills: 7 WordPress skills: 8 HTML / CSS skills: 7 Other qualifications: I worked for a few small hosting companies on the helpdesk and peformed server installs at small businesses Created working spaces for cliënts. What can you bring to the team? I'm fully available as im now looking for a job. I can help you on getting bigger in wordpress support and the small parts of IPB. I'm a good solver and a thinker for finding a solution. I'm a great listener and i'm willing to do small video tutorials of how to install stuff and configure it. I can help with teamviewer or vnc if the user can't find the problem!
    1 point
  4. To change Licensed to text, AdminCP > System Settings > System > General Configuration > Show as licensed to... And to delete that copyright text, AdminCP > Look & Feel > [your skin] > Global Templates > globalTemplate. Search and delete {parse replacement="skinlink"}Daca nu ai inteles, iti zic si varianta in limba romana.
    1 point
  5. 1. Go to: ACP > Looks and Feel > Skin Name > Board Index > boardIndexTemplate2. Find: <td class='col_c_stats ipsType_small'> <ul> <li><strong>{$forum_data['topics']}</strong> {$this->lang->words['topics']}</li> <li><strong>{$forum_data['posts']}</strong> {$this->lang->words['replies']}</li> </ul> </td>3. Replace With: <td style='width: 7%;'><span class='nstatsNumber'>{$forum_data['topics']}</span><span class='nstatsText'>{$this->lang->words['topics']}</span></td><td style='width: 7%;'><span class='nstatsNumber'>{$forum_data['posts']}</span><span class='nstatsText'>{$this->lang->words['replies']}</span></td>4. Go to: ACP > Looks and Feel > Skin Name > CSS > ipb_styles.css5. Add: .nstatsNumber, .nstatsText {display: block;text-align: center;color: #acacac;line-height: 23px;text-transform: uppercase;font-size: 16px;}.nstatsText {color: #d5d5d5;font-size: 11px;}
    1 point
  6. We've had several inquiries on how to place an overlay across a specific category, to denote that only certain user groups can view said category. A perfect example would be the "Customers Only" category displayed on the IPBForumSkins site. To mimic the snapshot above, read on! Navigate to: ACP > Look & Feel > -Your Skin- > Board Index > boardIndexTemplate Find the following line: <foreach loop="forums:$_data['forum_data'] as $forum_id => $forum_data"> Add directly below that line: <if test="$cat_data['id'] = 1"> <php>$groups = array(1, 2, 3);</php> <if test="in_array($this->memberData['member_group_id'], $groups)"> <style type='text/css'> #category_XX.category_block { position: relative; } #category_XX:after { content: "Customers Only"; background: url("{style_images_url}/transw80.png") repeat; background: rgba(255, 255, 255, 0.8); position: absolute; top: 0; left: 0; right: 0; bottom: 0; font-size: 30px; line-height: 350px; text-align: center; z-index: 10; cursor: normal; } </style> </if></if> Next, you'll need to make a few edits.. Which groups will this overlay display for? Find this line: <php>$groups = array(1, 2, 3);</php> And adjust the group numbers. Group numbers are displayed next to the group's name on the Manage Member Groups page located in your ACP. An example group number would be: (ID: 1) Which category will this overlay apply to? You'll need to change which category this overlay will apply to. There are two methods to determining the category 'number'. One way, would be to click on the category name on your board index. The category number is contained within the URL.. ex: {your_url}/forum/1-general-discussion/ The category number is 1. Another method, would be to 'edit' the category within the ACP (via the Manage Forums page), and at the end of the URL, you will see f=# (where # is a number). To edit which category displays, find and replace the XX located within the code (two instances), with the category number. Lastly, you'll need to upload (via FTP) a transparent image for the overlay.. found here: http://i.imgur.com/owF8hud.png FAQs How do I change the displayed text? Change the content: value by changing "Customers Only" to whatever you like. Can I use this for multiple categories? Yes! Simply copy/paste the #content containers and edit the category number. Do I need to grant groups permission to see the category? That is recommended, yes. Otherwise, this tutorial is pointless. How do I change the transparency color? You'll need to tweak the rgba colors. For darker skins, the recommended value would be 0, 0, 0, 0.3. You can use ColorPicker.com to obtain the R, G, and B values. Remember, A stands for Alpha, which determines opacity. Have more questions? Feel free to post them!
    1 point
  7. Go to admin -> skin_cp -> cp_skin_global.php and find: and replace it with this: Save and go to admin -> applications -> core -> extensions -> dashboardNotifications.php and find: and replace with this: Save and you're done. In general, this works for 3.2.x, 3.3.x and 3.4.x.
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...