Advertisement
-
Posts
579 -
Joined
-
Last visited
-
Days Won
25
Community Answers
-
Skreamzja's post in Remove original portal from Navbar was marked as the answer
WRONG.
ACP > Hooks and Applications > Portal > Edit > Tab Restrictions and disable it from showing in the tab from there.
-
Skreamzja's post in Applications icons was marked as the answer
Well I don't really know why you keep saying my code never worked for you?
Hmm.
So here is what your going to do.
ACP > Looks and Feel > Skin Name > ipb_styles.css
and copy / paste this to the bottom of the board.
#nav_app_forums a:before { content:""; display:inline-block; margin:-6px 8px -5px 0; background:url(http://icons.iconarchive.com/icons/ahdesign91/icloud/16/Contacts-Group-icon.png) no-repeat top left; width:16px; height:16px; } and then remove the code you previously added.
-
Skreamzja's post in Edit Single Profile Page HTML was marked as the answer
Can you give an example of what you are trying to add? But I can tell you this it is from the AdminCP. You can achieve it from the skin templates for profiles. You would need to edit it in the modernProfile template.
-
Skreamzja's post in some help with my first skin rip please was marked as the answer
your missing out some code on line 64. you need to get rid of this part of the code ( <div id='user_navigation' class='not_logged_in'> ) because your calling the default not logged in code instead of your custom bar. that's all I can see right now with a quick glance since I'm not home to help you out any further than that.
-
Skreamzja's post in Adding /forums/ or /community/ to domain was marked as the answer
I don't really know why everyone is fanny assing around with answers and sending you around the long way.
Create a new directory called "forums" or "community" what ever you want, you can call it "pussyholes" it doesn't even matter. Once that directory is created in your public_html your then going to want to move all your forum contents into that folder.
As easy as that? Yeah just a few more tweaks now.
Go into your newly created directory and locate your global_config.php file and change the url of your board to add the name as the end.
For instance I create a new directory called forums. so I'm going to change it in my global_config.php to "http://www.mydomain.com/forums".
That's all you need to do in the FTP server now. Now log your self into the admin cp of your forum board " remember to put the new directory " then /admin.
Go to global configuration in system settings and change the links there aswell.
Boom done.
Now just create a redirect page via cpanel from the public_html to your new directory called "forums" or "community" or w.e you want to call it.
Job done.
-
Skreamzja's post in User awards on postbit was marked as the answer
It just means adding the username to the userInfoPane.....
<if test="$author['member_id']"> <span itemprop="creator name" class="author vcard">{parse template="userHoverCard" group="global" params="$author"}</span> <else /> {$author['members_display_name']} </if> there is the code that needs adding. Place it where ever you want it to show in the userInfoPane.
-
Skreamzja's post in What is the cod for this? was marked as the answer
Here is the exact code you need.
<div class="error message" style="margin-bottom: 5px"> <marquee onmouseout="this.setAttribute('scrollamount', 6, 0);" onmouseover="this.setAttribute('scrollamount', 0, 0);" direction="left" scrollamount="6"> <span onmouseout="this.style.opacity=0.3;this.filters.alpha.opacity=30" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=10" style="opacity: 0.3;"> <!-- START PARTENERI --> Here is where your image codes go blah blah blah <!-- STOP PARTENERI --> </span> </marquee> </div> -
Skreamzja's post in Adding slideshow or make the max template wider was marked as the answer
You need to go to
ACP > SYSTEM SETTINGS > MAXXX SKIN > SETTINGS and change the width there.
-
Skreamzja's post in Buying IPBoard was marked as the answer
I would if you are going to purchase it now, because when 4.0 comes out the price is going to rise from all there hard work and more functionality they have put into the upgrade.
Also you won't be able to use nulled IP.Nexus or anything on your board because if they find out they will revoke your license without a second thought or letting you know.
-
Skreamzja's post in Inbox Amount and Notification Amount was marked as the answer
/admin/applications/members/modules_public/ajax/messenger.php change the following
$topics = $this->messengerFunctions->getPersonalTopicsList( $this->memberData['member_id'], 'all', array( 'sort' => 'date', 'offsetStart' => 0, 'offsetEnd' => 10 ) ); to the following
$topics = $this->messengerFunctions->getPersonalTopicsList( $this->memberData['member_id'], 'all', array( 'sort' => 'date', 'offsetStart' => 0, 'offsetEnd' => 5 ) );
-
Skreamzja's post in Extend author_info was marked as the answer
Sorry also missed out the important part im half asleep here its 2am.
change the following
.post_wrap { to the following
.column_view .post_wrap { and then you mess with some background hex colors.
-
Skreamzja's post in How i fix the Userlist was marked as the answer
http://webflake.sx/topic/609-active-usernames-replaced-with/ -
Skreamzja's post in How resize theme? was marked as the answer
you can show/hide the side bar blocks on any theme with a small template edit.
ACP > LOOKS AND FEEL > SKIN NAME > BOARD INDEX > BOARDINDEXTEMPLATE it should be near enough at the top where this code will be displayed.
If you are looking to show the sidebar blocks then just simple ctrl + f and find
hide and change it to
show if you are trying to hide the sidebars from showing then you do the opposit find the following
show and change to
hide simple template edit.
-
Skreamzja's post in problem with the forum and the topics was marked as the answer
For suhosin errors there are two ways to fix them,
If you are on a vps you could fix them your self if not contact your host to fix them ( or even if you are on a vps your host should fix them if you don't know how. )
or you can create a new php.ini file in your admin folder and add the correct suhosin to fix your issues.
-
Skreamzja's post in How do I remove /_/ from IP.Content URL? was marked as the answer
then you can achieve this by moving the contents in your "forum" directory to your "public_html".
remember to change the url in the conf_global.php file and then some global settings in your admin cp system settings.
-
Skreamzja's post in Log In As Member was marked as the answer
You don't need a hook.
ACP > MEMBERS > CLICK MEMBERS NAME > LOGIN IN and then go to the community board and your logged in as that member.
-
Skreamzja's post in How to fix this? was marked as the answer
width problems solved. You just got table issues with your shoutbox.
-
Skreamzja's post in "If You Would Like To Thank The Poster For This Download, Please Press The "Like This" Button Instead Of Posting. Thanks!" how to remove? was marked as the answer
ACP > Looks and Feel > Skin Name > TopicView > post then find the following
If You Would Like To Thank The Poster For This Download, Please Press The "Like This" Button Instead Of Posting. Thanks! and just remove the line of code.
-
Skreamzja's post in Little bugs and erros can anyone help? was marked as the answer
This has now all been resolved. You can mark this thread as answered.
-
Skreamzja's post in Navigation bar text color was marked as the answer
ACP > Looks and Feel > Skin Name > CSS > ipb_styles.css find the following
#community_app_menu > li > a { and then change the color hex code.
-
Skreamzja's post in How to change opacity was marked as the answer
You can change opacity simply by css. I'll give you an example. I'm going to use the primary_nav for an example
#primary_nav { opacity: 0.7; { and then if you want it to be full opacity on hover you just add a new element.
#primary_nav:hover { opacity: 1; } Hope that helps what you are trying to do.
-
Skreamzja's post in Moving announcement system positioning was marked as the answer
Done. can be marked solved.
-
Skreamzja's post in How to remove from template? was marked as the answer
remove this line of code.
{parse template="copyright" group="forum" params=""} -
Skreamzja's post in Skin System Setting Remove was marked as the answer
The first thing you must do is edit conf_global.php. In conf_global.php find
define( 'IN_DEV', 0 ); and change to
define( 'IN_DEV', 1 ); then go into your ACP > System Settings > blah blah till your where you want to remove the skin settings and remove it XD.
ONCE Finished remember to change it back to 0
-
Skreamzja's post in IPB CSS not working? was marked as the answer
just over write what it's currently saying,
Admin CP > Looks and Feel > Skin Name > CSS > ipb_styles.css find the following;
.post_body { and then add a new margin-left so for instance;
.post_body { margin-left: 10px; } and then adjust it to how for you want it away from the left hand side.