[BETA] phpBB3-Knowledgebase

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Ideas Centre
panhead
Registered User
Posts: 1006
Joined: Sat Dec 20, 2003 8:17 pm

Re: [BETA] phpBB3-Knowledgebase

Post by panhead »

Well, I'm already using it on my live board
No problems using it? I still have the original KB mod, which I want to de-install first.
panhead
Registered User
Posts: 1006
Joined: Sat Dec 20, 2003 8:17 pm

Re: [BETA] phpBB3-Knowledgebase

Post by panhead »

Anyone used the Uninstall functionality of the original mod?
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [BETA] phpBB3-Knowledgebase

Post by mladiucitelj »

panhead wrote:
Well, I'm already using it on my live board
No problems using it? I still have the original KB mod, which I want to de-install first.
No, no major problems using it.
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
panhead
Registered User
Posts: 1006
Joined: Sat Dec 20, 2003 8:17 pm

Re: [BETA] phpBB3-Knowledgebase

Post by panhead »

Thank you, I'll install it after de-installing the original version.
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [BETA] phpBB3-Knowledgebase

Post by mladiucitelj »

But notice that author of this mod do not recommend it to be installed on live board.

I've just taken that risk, but for now I'm satisfied (using it for about 3 months).
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
kazkotx
Registered User
Posts: 21
Joined: Mon Sep 22, 2008 3:23 pm

Re: [BETA] phpBB3-Knowledgebase

Post by kazkotx »

I would love to see your live or test installations of this mod for my own eyes. Please PM me a url.

@mladiucitelj, I wish more people would do what you are doing here http://phpbb.mladiucitelj.si/viewforum.php?f=26 by sharing what tools they are using to accomplish the task. Most people do not. It seems to me that the Internet is about sharing and helping to educate others only helps to improve the end result.
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [BETA] phpBB3-Knowledgebase

Post by mladiucitelj »

PM sent, but I've customized the look of this mod just a little bit.

Yes, that's why I'm publishing this things. Thanks for noticing!
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica

Re: [BETA] phpBB3-Knowledgebase

Post by Jessica »

One of the new features in the latest version allows you to change the article request status color. How do I change that? Or has it not been added yet?
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [BETA] phpBB3-Knowledgebase

Post by mladiucitelj »

It's in latest version. Go to plugins -> Request articles (click settings).
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica

Re: [BETA] phpBB3-Knowledgebase

Post by Jessica »

Thanks!
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica

Re: [BETA] phpBB3-Knowledgebase

Post by Jessica »

The article title when viewing to a category is too big on my board. What part of the css do I change to change its font size? Also, I feel like the Random Article and Latest Article's title is too big, how do I change those?
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [BETA] phpBB3-Knowledgebase

Post by mladiucitelj »

Jessica wrote:The article title when viewing to a category is too big on my board. What part of the css do I change to change its font size?
Go to \styles\your_style\template\kb\plugins and open categories.html and find:

Code: Select all

				<h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('hide_cat', ''); javascript:dE('show_cat', '');" title="{L_SHOW_CAT}"><img src="{T_THEME_PATH}/images/arrow_down.gif" alt=">" />&nbsp;{L_SHOW_CAT}</a></h4>
			</div>
			<div id="hide_cat"  style="display:none;">
				<h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('show_cat', ''); javascript:dE('hide_cat', '');" title="{L_HIDE_CAT}"><img src="{T_THEME_PATH}/images/arrow_up.gif" alt=">" />&nbsp;{L_HIDE_CAT}</a></h4>
Delete two of <h4> and two of </h4>.

Also, I feel like the Random Article and Latest Article's title is too big, how do I change those?
Go to \styles\your_style\template\kb\plugins and open random_article.html (or latest_article.html) and find:

Code: Select all

			<div><h4><a href="{U_RAN_ARTICLE}"><strong>{RAN_ARTICLE_TITLE}</strong></a></h4></div>
Delete <h4> and </h4>.
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica

Re: [BETA] phpBB3-Knowledgebase

Post by Jessica »

mladiucitelj wrote:
Jessica wrote:The article title when viewing to a category is too big on my board. What part of the css do I change to change its font size?
Go to \styles\your_style\template\kb\plugins and open categories.html and find:

Code: Select all

				<h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('hide_cat', ''); javascript:dE('show_cat', '');" title="{L_SHOW_CAT}"><img src="{T_THEME_PATH}/images/arrow_down.gif" alt=">" />&nbsp;{L_SHOW_CAT}</a></h4>
			</div>
			<div id="hide_cat"  style="display:none;">
				<h4><a href="#" onmousedown="javascript:dE('cat_list', ''); javascript:dE('show_cat', ''); javascript:dE('hide_cat', '');" title="{L_HIDE_CAT}"><img src="{T_THEME_PATH}/images/arrow_up.gif" alt=">" />&nbsp;{L_HIDE_CAT}</a></h4>
Delete two of <h4> and two of </h4>.

Also, I feel like the Random Article and Latest Article's title is too big, how do I change those?
Go to \styles\your_style\template\kb\plugins and open random_article.html (or latest_article.html) and find:

Code: Select all

			<div><h4><a href="{U_RAN_ARTICLE}"><strong>{RAN_ARTICLE_TITLE}</strong></a></h4></div>
Delete <h4> and </h4>.
Thanks

For the first part, I actually meant the article title when going to a cateogry and seeing the list of articles - in the middle.
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [BETA] phpBB3-Knowledgebase

Post by mladiucitelj »

I'll do like that, but don't know if it's the best solution...

Open styles\prosilver\template\kb\view_cat_list.html and find:

Code: Select all

							<dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a>
REPLACE with:

Code: Select all

							<dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><span style="font-size: 100%"><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a></span>
Adjust the font-size percentage if you have to.
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System
User avatar
mladiucitelj
Registered User
Posts: 586
Joined: Sun Dec 12, 2010 12:33 am
Location: Slovenia, Europe

Re: [BETA] phpBB3-Knowledgebase

Post by mladiucitelj »

Even better!

FIND:

Code: Select all

							<dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a>
							<!-- IF articlerow.ARTICLE_UNAPPROVED --><a href="{articlerow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a> <!-- ENDIF -->
								<br /><!-- IF articlerow.ARTICLE_DESC -->{articlerow.ARTICLE_DESC}<!-- ENDIF -->
							</dt>
							<dd class="posts">{articlerow.COMMENTS} <dfn>{L_COMMENTS}</dfn></dd>
							<dd class="views">{articlerow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
							<dd class="lastpost"><span>{articlerow.ARTICLE_AUTHOR_FULL}<br /><!-- IF articlerow.ATTACH_ICON_IMG -->{articlerow.ATTACH_ICON_IMG} <!-- ENDIF -->{articlerow.FIRST_POST_TIME}	</span>
							</dd>
REPLACE WITH:

Code: Select all

							<span style="font-size: 100%"><dt><!-- IF articlerow.ARTICLE_TYPE_IMG --><span class="forum-image"><img src="{articlerow.ARTICLE_TYPE_IMG}" width="{articlerow.ARTICLE_TYPE_IMG_WIDTH}" height="{articlerow.ARTICLE_TYPE_IMG_HEIGHT}" alt="" /></span><!-- ENDIF --><a href="{articlerow.U_VIEW_ARTICLE}" class="topictitle">{articlerow.ARTICLE_TITLE}</a>
							<!-- IF articlerow.ARTICLE_UNAPPROVED --><a href="{articlerow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a> <!-- ENDIF -->
								<br /><!-- IF articlerow.ARTICLE_DESC -->{articlerow.ARTICLE_DESC}<!-- ENDIF -->
							</dt>
							<dd class="posts">{articlerow.COMMENTS} <dfn>{L_COMMENTS}</dfn></dd>
							<dd class="views">{articlerow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
							<dd class="lastpost"><span>{articlerow.ARTICLE_AUTHOR_FULL}<br /><!-- IF articlerow.ATTACH_ICON_IMG -->{articlerow.ATTACH_ICON_IMG} <!-- ENDIF -->{articlerow.FIRST_POST_TIME}	</span>
							</dd></span>
Adjust the percentage...
Don't forget to clear cache, refresh template, theme and imageset, double check all files :)

My mod: [MODDB] Menu System

Return to “[3.0.x] MODs in Development”