<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[terzier WebForum - Zona MyBB]]></title>
		<link>https://www.terzier.com/v1/</link>
		<description><![CDATA[terzier WebForum - https://www.terzier.com/v1]]></description>
		<pubDate>Mon, 20 Apr 2026 05:40:13 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Smooth scroll to Top of Page]]></title>
			<link>https://www.terzier.com/v1/showthread.php?tid=90</link>
			<pubDate>Thu, 15 Oct 2020 19:16:00 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.terzier.com/v1/member.php?action=profile&uid=1">Terzier</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.terzier.com/v1/showthread.php?tid=90</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;body id="top"&gt;</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;a href="#top" onclick="scrollToTop();return false"&gt;Back to Top &amp;uarr;&lt;/a&gt;</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function scrollToTop() {<br />
&nbsp;&nbsp;&nbsp;&nbsp;var position =<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;document.body.scrollTop || document.documentElement.scrollTop;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (position) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;window.scrollBy(0, -Math.max(1, Math.floor(position / 10)));<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollAnimation = setTimeout("scrollToTop()", 30);<br />
&nbsp;&nbsp;&nbsp;&nbsp;} else clearTimeout(scrollAnimation);<br />
}</code></div></div><br />
If you need a plain JavaScript function to add a smooth scrolling back to the top of the page, you can use this script.<br />
<br />
Add an id of "top" to the &lt;body&gt; tag. Like this: &lt;body id="top"&gt;<br />
Add the onclick function to the link. Like this: &lt;a href="#top" onclick="scrollToTop(); return false"&gt;Back to Top ↑&lt;/a&gt;<br />
Then either:<br />
Include the JavaScript function in your markup, preferrably at the bottom before the closing &lt;/body&gt; tag if possible.<br />
Or, create a JavaScript file, place the script in it and call that file from your HTML document (either from the &lt;/head&gt; section, or before the closing &lt;/body&gt; tag if possible.)<br />
Since this script is not part of the UI it can load last and will not negatively affect the user experience or usability of the page.<br />
<br />
demo : <iframe width="800" height="450" src="https://codepen.io/ricardozea/full/5f756e303d5adc25ca3876e6a81c9e57" target="_blank" rel="noopener" class="mycode_url" frameborder="0" allowFullScreen="true" title="CodePen.io"></iframe><br />
<br />
<script src="https://gist.github.com/ricardozea/abb9f98a19f6d04a0269.js"></script>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;body id="top"&gt;</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;a href="#top" onclick="scrollToTop();return false"&gt;Back to Top &amp;uarr;&lt;/a&gt;</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>function scrollToTop() {<br />
&nbsp;&nbsp;&nbsp;&nbsp;var position =<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;document.body.scrollTop || document.documentElement.scrollTop;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (position) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;window.scrollBy(0, -Math.max(1, Math.floor(position / 10)));<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollAnimation = setTimeout("scrollToTop()", 30);<br />
&nbsp;&nbsp;&nbsp;&nbsp;} else clearTimeout(scrollAnimation);<br />
}</code></div></div><br />
If you need a plain JavaScript function to add a smooth scrolling back to the top of the page, you can use this script.<br />
<br />
Add an id of "top" to the &lt;body&gt; tag. Like this: &lt;body id="top"&gt;<br />
Add the onclick function to the link. Like this: &lt;a href="#top" onclick="scrollToTop(); return false"&gt;Back to Top ↑&lt;/a&gt;<br />
Then either:<br />
Include the JavaScript function in your markup, preferrably at the bottom before the closing &lt;/body&gt; tag if possible.<br />
Or, create a JavaScript file, place the script in it and call that file from your HTML document (either from the &lt;/head&gt; section, or before the closing &lt;/body&gt; tag if possible.)<br />
Since this script is not part of the UI it can load last and will not negatively affect the user experience or usability of the page.<br />
<br />
demo : <iframe width="800" height="450" src="https://codepen.io/ricardozea/full/5f756e303d5adc25ca3876e6a81c9e57" target="_blank" rel="noopener" class="mycode_url" frameborder="0" allowFullScreen="true" title="CodePen.io"></iframe><br />
<br />
<script src="https://gist.github.com/ricardozea/abb9f98a19f6d04a0269.js"></script>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Twitter]]></title>
			<link>https://www.terzier.com/v1/showthread.php?tid=71</link>
			<pubDate>Fri, 11 Jan 2019 06:11:15 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.terzier.com/v1/member.php?action=profile&uid=1">Terzier</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.terzier.com/v1/showthread.php?tid=71</guid>
			<description><![CDATA[<blockquote class="mycode_quote"><cite>Quote:</cite>Title: Twitter</blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Short Description:<br />
Twitter Profile for MyBB</blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Regular Expression *<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&#092;[</span><span style="color: #0000BB">twitter</span><span style="color: #007700">&#092;](.*?)&#092;[/</span><span style="color: #0000BB">twitter</span><span style="color: #007700">&#092;]&nbsp;<br /></span></code></div></div></div></blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Replacement *<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&lt;</span><span style="color: #0000BB">a&nbsp;href</span><span style="color: #007700">=</span><span style="color: #DD0000">"https://twitter.com/&#36;1"&nbsp;</span><span style="color: #007700">class=</span><span style="color: #DD0000">"twitter-follow-button"&nbsp;</span><span style="color: #0000BB">data</span><span style="color: #007700">-</span><span style="color: #0000BB">show</span><span style="color: #007700">-</span><span style="color: #0000BB">count</span><span style="color: #007700">=</span><span style="color: #DD0000">"false"</span><span style="color: #007700">&gt;</span><span style="color: #0000BB">Ikuti&nbsp;</span><span style="color: #007700">@&#36;</span><span style="color: #0000BB">1</span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">a</span><span style="color: #007700">&gt;<br />&lt;</span><span style="color: #0000BB">script</span><span style="color: #007700">&gt;!function(</span><span style="color: #0000BB">d</span><span style="color: #007700">,</span><span style="color: #0000BB">s</span><span style="color: #007700">,</span><span style="color: #0000BB">id</span><span style="color: #007700">){var&nbsp;</span><span style="color: #0000BB">js</span><span style="color: #007700">,</span><span style="color: #0000BB">fjs</span><span style="color: #007700">=</span><span style="color: #0000BB">d</span><span style="color: #007700">.</span><span style="color: #0000BB">getElementsByTagName</span><span style="color: #007700">(</span><span style="color: #0000BB">s</span><span style="color: #007700">)[</span><span style="color: #0000BB">0</span><span style="color: #007700">];if(!</span><span style="color: #0000BB">d</span><span style="color: #007700">.</span><span style="color: #0000BB">getElementById</span><span style="color: #007700">(</span><span style="color: #0000BB">id</span><span style="color: #007700">)){</span><span style="color: #0000BB">js</span><span style="color: #007700">=</span><span style="color: #0000BB">d</span><span style="color: #007700">.</span><span style="color: #0000BB">createElement</span><span style="color: #007700">(</span><span style="color: #0000BB">s</span><span style="color: #007700">);</span><span style="color: #0000BB">js</span><span style="color: #007700">.</span><span style="color: #0000BB">id</span><span style="color: #007700">=</span><span style="color: #0000BB">id</span><span style="color: #007700">;</span><span style="color: #0000BB">js</span><span style="color: #007700">.</span><span style="color: #0000BB">src</span><span style="color: #007700">=</span><span style="color: #DD0000">"//platform.twitter.com/widgets.js"</span><span style="color: #007700">;</span><span style="color: #0000BB">fjs</span><span style="color: #007700">.</span><span style="color: #0000BB">parentNode</span><span style="color: #007700">.</span><span style="color: #0000BB">insertBefore</span><span style="color: #007700">(</span><span style="color: #0000BB">js</span><span style="color: #007700">,</span><span style="color: #0000BB">fjs</span><span style="color: #007700">);}}(</span><span style="color: #0000BB">document</span><span style="color: #007700">,</span><span style="color: #DD0000">"script"</span><span style="color: #007700">,</span><span style="color: #DD0000">"twitter-wjs"</span><span style="color: #007700">);&lt;/</span><span style="color: #0000BB">script</span><span style="color: #007700">&gt;&nbsp;<br /></span></code></div></div></div></blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Test Value<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">[</span><span style="color: #0000BB">twitter</span><span style="color: #007700">]</span><span style="color: #0000BB">dr5tein</span><span style="color: #007700">[/</span><span style="color: #0000BB">twitter</span><span style="color: #007700">]&nbsp;<br /></span></code></div></div></div></blockquote>
<br />
Preview:<br />
<a href="https://twitter.com/dr5tein" class="twitter-follow-button" data-show-count="false">Ikuti @dr5tein</a><br />
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>]]></description>
			<content:encoded><![CDATA[<blockquote class="mycode_quote"><cite>Quote:</cite>Title: Twitter</blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Short Description:<br />
Twitter Profile for MyBB</blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Regular Expression *<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&#092;[</span><span style="color: #0000BB">twitter</span><span style="color: #007700">&#092;](.*?)&#092;[/</span><span style="color: #0000BB">twitter</span><span style="color: #007700">&#092;]&nbsp;<br /></span></code></div></div></div></blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Replacement *<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">&lt;</span><span style="color: #0000BB">a&nbsp;href</span><span style="color: #007700">=</span><span style="color: #DD0000">"https://twitter.com/&#36;1"&nbsp;</span><span style="color: #007700">class=</span><span style="color: #DD0000">"twitter-follow-button"&nbsp;</span><span style="color: #0000BB">data</span><span style="color: #007700">-</span><span style="color: #0000BB">show</span><span style="color: #007700">-</span><span style="color: #0000BB">count</span><span style="color: #007700">=</span><span style="color: #DD0000">"false"</span><span style="color: #007700">&gt;</span><span style="color: #0000BB">Ikuti&nbsp;</span><span style="color: #007700">@&#36;</span><span style="color: #0000BB">1</span><span style="color: #007700">&lt;/</span><span style="color: #0000BB">a</span><span style="color: #007700">&gt;<br />&lt;</span><span style="color: #0000BB">script</span><span style="color: #007700">&gt;!function(</span><span style="color: #0000BB">d</span><span style="color: #007700">,</span><span style="color: #0000BB">s</span><span style="color: #007700">,</span><span style="color: #0000BB">id</span><span style="color: #007700">){var&nbsp;</span><span style="color: #0000BB">js</span><span style="color: #007700">,</span><span style="color: #0000BB">fjs</span><span style="color: #007700">=</span><span style="color: #0000BB">d</span><span style="color: #007700">.</span><span style="color: #0000BB">getElementsByTagName</span><span style="color: #007700">(</span><span style="color: #0000BB">s</span><span style="color: #007700">)[</span><span style="color: #0000BB">0</span><span style="color: #007700">];if(!</span><span style="color: #0000BB">d</span><span style="color: #007700">.</span><span style="color: #0000BB">getElementById</span><span style="color: #007700">(</span><span style="color: #0000BB">id</span><span style="color: #007700">)){</span><span style="color: #0000BB">js</span><span style="color: #007700">=</span><span style="color: #0000BB">d</span><span style="color: #007700">.</span><span style="color: #0000BB">createElement</span><span style="color: #007700">(</span><span style="color: #0000BB">s</span><span style="color: #007700">);</span><span style="color: #0000BB">js</span><span style="color: #007700">.</span><span style="color: #0000BB">id</span><span style="color: #007700">=</span><span style="color: #0000BB">id</span><span style="color: #007700">;</span><span style="color: #0000BB">js</span><span style="color: #007700">.</span><span style="color: #0000BB">src</span><span style="color: #007700">=</span><span style="color: #DD0000">"//platform.twitter.com/widgets.js"</span><span style="color: #007700">;</span><span style="color: #0000BB">fjs</span><span style="color: #007700">.</span><span style="color: #0000BB">parentNode</span><span style="color: #007700">.</span><span style="color: #0000BB">insertBefore</span><span style="color: #007700">(</span><span style="color: #0000BB">js</span><span style="color: #007700">,</span><span style="color: #0000BB">fjs</span><span style="color: #007700">);}}(</span><span style="color: #0000BB">document</span><span style="color: #007700">,</span><span style="color: #DD0000">"script"</span><span style="color: #007700">,</span><span style="color: #DD0000">"twitter-wjs"</span><span style="color: #007700">);&lt;/</span><span style="color: #0000BB">script</span><span style="color: #007700">&gt;&nbsp;<br /></span></code></div></div></div></blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Test Value<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">[</span><span style="color: #0000BB">twitter</span><span style="color: #007700">]</span><span style="color: #0000BB">dr5tein</span><span style="color: #007700">[/</span><span style="color: #0000BB">twitter</span><span style="color: #007700">]&nbsp;<br /></span></code></div></div></div></blockquote>
<br />
Preview:<br />
<a href="https://twitter.com/dr5tein" class="twitter-follow-button" data-show-count="false">Ikuti @dr5tein</a><br />
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hapus Breadcumb Navigation dari Index]]></title>
			<link>https://www.terzier.com/v1/showthread.php?tid=51</link>
			<pubDate>Sun, 07 Aug 2016 12:02:34 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.terzier.com/v1/member.php?action=profile&uid=1">Terzier</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.terzier.com/v1/showthread.php?tid=51</guid>
			<description><![CDATA[Trik lama, yang masih bisa dipakai di MyBB 1.8.<br />
<br />
sebelum berlanjut ke pembahasan caranya, silakan perhatikan images berikut  <img src="https://www.terzier.com/v1/images/smilies/xfiles/curlylips.png" alt="Curlylips" title="Curlylips" class="smilie smilie_33" /> <br />
<br />
<span style="font-weight: bold;" class="mycode_b">pada Index, navigation yang seharusnya adalah seperti ini :</span><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.terzier.com/v1/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9" target="_blank" title="">Screenshot_1.png</a> (Size: 12.63 KB / Downloads: 26)
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="font-weight: bold;" class="mycode_b">ketika masuk di forum, akan terlihat :</span><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.terzier.com/v1/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=10" target="_blank" title="">Screenshot_2.png</a> (Size: 12.17 KB / Downloads: 26)
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="font-weight: bold;" class="mycode_b">dihalaman lain, seperti memberlist juga seharusnya akan terlihat :</span><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.terzier.com/v1/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=11" target="_blank" title="">Screenshot_3.png</a> (Size: 12.02 KB / Downloads: 26)
<!-- end: postbit_attachments_attachment --><br />
<br />
lalu, bagaimana caranya membuang tulisan "terzier webForum" tersebut seperti pada forum ini?<br />
berikut caranya  <img src="https://www.terzier.com/v1/images/smilies/xfiles/kiki.png" alt="Kiki" title="Kiki" class="smilie smilie_40" /> <br />
<br />
buka file Global.php kali dengan Notepad, lalu cari kode berikut<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #FF8000">//&nbsp;Add&nbsp;our&nbsp;main&nbsp;parts&nbsp;to&nbsp;the&nbsp;navigation<br /></span><span style="color: #0000BB">&#36;navbits&nbsp;</span><span style="color: #007700">=&nbsp;array();<br /></span><span style="color: #0000BB">&#36;navbits</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">][</span><span style="color: #DD0000">'name'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">&#36;mybb</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">settings</span><span style="color: #007700">[</span><span style="color: #DD0000">'bbname_orig'</span><span style="color: #007700">];<br /></span><span style="color: #0000BB">&#36;navbits</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">][</span><span style="color: #DD0000">'url'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">&#36;mybb</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">settings</span><span style="color: #007700">[</span><span style="color: #DD0000">'bburl'</span><span style="color: #007700">].</span><span style="color: #DD0000">"/index.php"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">rubah&nbsp;menjadi</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">atau&nbsp;edit&nbsp;menjadi</span><span style="color: #007700">:&nbsp;<br /></span></code></div></div></div><br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #FF8000">//&nbsp;Add&nbsp;our&nbsp;main&nbsp;parts&nbsp;to&nbsp;the&nbsp;navigation<br /></span><span style="color: #0000BB">&#36;navbits&nbsp;</span><span style="color: #007700">=&nbsp;array();<br /></span><span style="color: #FF8000">//&nbsp;&#36;navbits[0]['name']&nbsp;=&nbsp;&#36;mybb-&gt;settings['bbname_orig'];<br />//&nbsp;&#36;navbits[0]['url']&nbsp;=&nbsp;&#36;mybb-&gt;settings['bburl'].'/index.php';&nbsp;<br /></span></code></div></div></div><br />
save perubahan tersebut, dan lihat hasilnya. apakah sudah seperti forum ini?  <img src="https://www.terzier.com/v1/images/smilies/xfiles/frown.png" alt="Frown" title="Frown" class="smilie smilie_35" /><br />
<br />
sumber : <a href="https://community.mybb.com/thread-120090-post-867686.html#pid867686" target="_blank" rel="noopener" class="mycode_url">ini </a>dan <a href="https://mybbhacks.zingaburga.com/showthread.php?tid=1716&amp;pid=13399#pid13399" target="_blank" rel="noopener" class="mycode_url">ini</a>]]></description>
			<content:encoded><![CDATA[Trik lama, yang masih bisa dipakai di MyBB 1.8.<br />
<br />
sebelum berlanjut ke pembahasan caranya, silakan perhatikan images berikut  <img src="https://www.terzier.com/v1/images/smilies/xfiles/curlylips.png" alt="Curlylips" title="Curlylips" class="smilie smilie_33" /> <br />
<br />
<span style="font-weight: bold;" class="mycode_b">pada Index, navigation yang seharusnya adalah seperti ini :</span><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.terzier.com/v1/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=9" target="_blank" title="">Screenshot_1.png</a> (Size: 12.63 KB / Downloads: 26)
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="font-weight: bold;" class="mycode_b">ketika masuk di forum, akan terlihat :</span><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.terzier.com/v1/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=10" target="_blank" title="">Screenshot_2.png</a> (Size: 12.17 KB / Downloads: 26)
<!-- end: postbit_attachments_attachment --><br />
<br />
<span style="font-weight: bold;" class="mycode_b">dihalaman lain, seperti memberlist juga seharusnya akan terlihat :</span><br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.terzier.com/v1/images/attachtypes/image.gif" title="PNG Image" border="0" alt=".png" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=11" target="_blank" title="">Screenshot_3.png</a> (Size: 12.02 KB / Downloads: 26)
<!-- end: postbit_attachments_attachment --><br />
<br />
lalu, bagaimana caranya membuang tulisan "terzier webForum" tersebut seperti pada forum ini?<br />
berikut caranya  <img src="https://www.terzier.com/v1/images/smilies/xfiles/kiki.png" alt="Kiki" title="Kiki" class="smilie smilie_40" /> <br />
<br />
buka file Global.php kali dengan Notepad, lalu cari kode berikut<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #FF8000">//&nbsp;Add&nbsp;our&nbsp;main&nbsp;parts&nbsp;to&nbsp;the&nbsp;navigation<br /></span><span style="color: #0000BB">&#36;navbits&nbsp;</span><span style="color: #007700">=&nbsp;array();<br /></span><span style="color: #0000BB">&#36;navbits</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">][</span><span style="color: #DD0000">'name'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">&#36;mybb</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">settings</span><span style="color: #007700">[</span><span style="color: #DD0000">'bbname_orig'</span><span style="color: #007700">];<br /></span><span style="color: #0000BB">&#36;navbits</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">][</span><span style="color: #DD0000">'url'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">&#36;mybb</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">settings</span><span style="color: #007700">[</span><span style="color: #DD0000">'bburl'</span><span style="color: #007700">].</span><span style="color: #DD0000">"/index.php"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">rubah&nbsp;menjadi</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">atau&nbsp;edit&nbsp;menjadi</span><span style="color: #007700">:&nbsp;<br /></span></code></div></div></div><br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #FF8000">//&nbsp;Add&nbsp;our&nbsp;main&nbsp;parts&nbsp;to&nbsp;the&nbsp;navigation<br /></span><span style="color: #0000BB">&#36;navbits&nbsp;</span><span style="color: #007700">=&nbsp;array();<br /></span><span style="color: #FF8000">//&nbsp;&#36;navbits[0]['name']&nbsp;=&nbsp;&#36;mybb-&gt;settings['bbname_orig'];<br />//&nbsp;&#36;navbits[0]['url']&nbsp;=&nbsp;&#36;mybb-&gt;settings['bburl'].'/index.php';&nbsp;<br /></span></code></div></div></div><br />
save perubahan tersebut, dan lihat hasilnya. apakah sudah seperti forum ini?  <img src="https://www.terzier.com/v1/images/smilies/xfiles/frown.png" alt="Frown" title="Frown" class="smilie smilie_35" /><br />
<br />
sumber : <a href="https://community.mybb.com/thread-120090-post-867686.html#pid867686" target="_blank" rel="noopener" class="mycode_url">ini </a>dan <a href="https://mybbhacks.zingaburga.com/showthread.php?tid=1716&amp;pid=13399#pid13399" target="_blank" rel="noopener" class="mycode_url">ini</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Official Threads MyBB]]></title>
			<link>https://www.terzier.com/v1/showthread.php?tid=19</link>
			<pubDate>Sat, 17 May 2014 09:43:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.terzier.com/v1/member.php?action=profile&uid=1">Terzier</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.terzier.com/v1/showthread.php?tid=19</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">KILAS</span><br />
berawal sejak tanggal 18 Maret 2008, adalah waktu dimana <a href="https://www.gookil.com" target="_blank" rel="noopener" class="mycode_url">gookil</a> aktif lagi dari renewal domainnya, pada saat itu pulalah aku mulai mempergunakan resmi MyBB. meskipun pada tahun² sebelumnya, aku sudah menggunakan MyBB sebagai salah satunya cms forum engine yang terbaik. <img src="https://www.terzier.com/v1/images/smilies/xfiles/heart.png" alt="Heart" title="Heart" class="smilie smilie_39" /> seantero dunia maya <img src="https://www.terzier.com/v1/images/smilies/xfiles/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_29" /><br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">APA dan KENAPA</span><br />
MyBB, atau yang lebih sering dikenal sebagai <a href="https://www.mybb.com" target="_blank" rel="noopener" class="mycode_url">MyBulletin Board</a>, adalah software (menurutku) terbaik dari segala macan jenis cms forum yang beredar di Dunia Maya. meskipun banyak kompetitor lainnya seperti (sebagian kecil saja) : [Free] <a href="https://www.phpbb.com" target="_blank" rel="noopener" class="mycode_url">PhpBB3</a>, <a href="https://www.simplemachines.org/" target="_blank" rel="noopener" class="mycode_url">SMF</a> dan [Paid] <a href="https://www.vbulletin.com/" target="_blank" rel="noopener" class="mycode_url">Vbulletin</a>, <a href="https://www.xenforo.com/" target="_blank" rel="noopener" class="mycode_url">xenForo</a> dan lain sebagainya, MyBB tetaplah di atas awan jika akan harus bertaruh dengan software kompetitor yang sudah aku sebutkan itu. <br />
<br />
maka dari itu, dengan alasan kuat inilah aku ambil keputusan untuk menggunakan MyBB sebagai landasan website pribadiku. tanpa bermaksud untuk promosi berlebih, karena aku tidak akan menjabarkan kekurangan dan kelebihan dari software ini. ada baiknya, jika penasaran lebih baik langsung saja menggunakan. ada baiknya, gunakan di localhost dulu. <img src="https://www.terzier.com/v1/images/smilies/xfiles/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_29" /><br />
<br />
<br />
PORSI/KATEGORI<br />
tidak banyak kategori yang akan aku buat di website ini. apa yang ada, berdasarkan kesimpulan yang aku ambil. terlebih apabila membahas seputar MyBB itu sendiri, bisa didapatkan di <a href="https://www.mybb-id.com/" target="_blank" rel="noopener" class="mycode_url">MyBB Indonesia</a>. bila ada tulisan (post) yang sama, dari forum <a href="https://www.mybb-id.com/" target="_blank" rel="noopener" class="mycode_url">MyBB Indonesia</a> dan di website ini, itu semua memang aku tulis ulang. siapapun boleh menanyakan baik di website ini langsung ataupun di <a href="https://www.mybb-id.com/" target="_blank" rel="noopener" class="mycode_url">MyBB Indonesia</a><br />
<br />
<br />
mungkin, hanya ini saja awal dari tulisanku di kategori MyBB <img src="https://www.terzier.com/v1/images/smilies/xfiles/wink.png" alt="Wink" title="Wink" class="smilie smilie_21" /><br />
<br />
Jika ada pertanyaan seputar MyBB, jangan sungkan² untuk bertanya. <div align="center"><div style="margin: 5px 20px 20px; width: 60%;"><div style="text-align: right; padding: 4px; background: #72B73A; repeat-x scroll 0% 0% transparent; border: 1px solid #2C6302; -moz-border-radius:5px; color:#ffffff; text-shadow:0 -1px #4B7926; font-weight:bold; ">Spoiler: <input type="button" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }" style="width: 45px; font-size: 10px; margin: 0px; padding: 0px;" value="Show"></div><div class="quotecontent"><div style="border-right: 1px solid #000000; border-width: 0px 1px 1px; border-style: none solid solid; border-color: #000000; padding: 4px; -moz-border-radius:5px; display: none;">tentunya, dengan membuat thread baru.</div></div></div></div>
<br />
 <img src="https://www.terzier.com/v1/images/smilies/xfiles/kiki.png" alt="Kiki" title="Kiki" class="smilie smilie_40" />]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">KILAS</span><br />
berawal sejak tanggal 18 Maret 2008, adalah waktu dimana <a href="https://www.gookil.com" target="_blank" rel="noopener" class="mycode_url">gookil</a> aktif lagi dari renewal domainnya, pada saat itu pulalah aku mulai mempergunakan resmi MyBB. meskipun pada tahun² sebelumnya, aku sudah menggunakan MyBB sebagai salah satunya cms forum engine yang terbaik. <img src="https://www.terzier.com/v1/images/smilies/xfiles/heart.png" alt="Heart" title="Heart" class="smilie smilie_39" /> seantero dunia maya <img src="https://www.terzier.com/v1/images/smilies/xfiles/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_29" /><br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b">APA dan KENAPA</span><br />
MyBB, atau yang lebih sering dikenal sebagai <a href="https://www.mybb.com" target="_blank" rel="noopener" class="mycode_url">MyBulletin Board</a>, adalah software (menurutku) terbaik dari segala macan jenis cms forum yang beredar di Dunia Maya. meskipun banyak kompetitor lainnya seperti (sebagian kecil saja) : [Free] <a href="https://www.phpbb.com" target="_blank" rel="noopener" class="mycode_url">PhpBB3</a>, <a href="https://www.simplemachines.org/" target="_blank" rel="noopener" class="mycode_url">SMF</a> dan [Paid] <a href="https://www.vbulletin.com/" target="_blank" rel="noopener" class="mycode_url">Vbulletin</a>, <a href="https://www.xenforo.com/" target="_blank" rel="noopener" class="mycode_url">xenForo</a> dan lain sebagainya, MyBB tetaplah di atas awan jika akan harus bertaruh dengan software kompetitor yang sudah aku sebutkan itu. <br />
<br />
maka dari itu, dengan alasan kuat inilah aku ambil keputusan untuk menggunakan MyBB sebagai landasan website pribadiku. tanpa bermaksud untuk promosi berlebih, karena aku tidak akan menjabarkan kekurangan dan kelebihan dari software ini. ada baiknya, jika penasaran lebih baik langsung saja menggunakan. ada baiknya, gunakan di localhost dulu. <img src="https://www.terzier.com/v1/images/smilies/xfiles/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_29" /><br />
<br />
<br />
PORSI/KATEGORI<br />
tidak banyak kategori yang akan aku buat di website ini. apa yang ada, berdasarkan kesimpulan yang aku ambil. terlebih apabila membahas seputar MyBB itu sendiri, bisa didapatkan di <a href="https://www.mybb-id.com/" target="_blank" rel="noopener" class="mycode_url">MyBB Indonesia</a>. bila ada tulisan (post) yang sama, dari forum <a href="https://www.mybb-id.com/" target="_blank" rel="noopener" class="mycode_url">MyBB Indonesia</a> dan di website ini, itu semua memang aku tulis ulang. siapapun boleh menanyakan baik di website ini langsung ataupun di <a href="https://www.mybb-id.com/" target="_blank" rel="noopener" class="mycode_url">MyBB Indonesia</a><br />
<br />
<br />
mungkin, hanya ini saja awal dari tulisanku di kategori MyBB <img src="https://www.terzier.com/v1/images/smilies/xfiles/wink.png" alt="Wink" title="Wink" class="smilie smilie_21" /><br />
<br />
Jika ada pertanyaan seputar MyBB, jangan sungkan² untuk bertanya. <div align="center"><div style="margin: 5px 20px 20px; width: 60%;"><div style="text-align: right; padding: 4px; background: #72B73A; repeat-x scroll 0% 0% transparent; border: 1px solid #2C6302; -moz-border-radius:5px; color:#ffffff; text-shadow:0 -1px #4B7926; font-weight:bold; ">Spoiler: <input type="button" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';        this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }" style="width: 45px; font-size: 10px; margin: 0px; padding: 0px;" value="Show"></div><div class="quotecontent"><div style="border-right: 1px solid #000000; border-width: 0px 1px 1px; border-style: none solid solid; border-color: #000000; padding: 4px; -moz-border-radius:5px; display: none;">tentunya, dengan membuat thread baru.</div></div></div></div>
<br />
 <img src="https://www.terzier.com/v1/images/smilies/xfiles/kiki.png" alt="Kiki" title="Kiki" class="smilie smilie_40" />]]></content:encoded>
		</item>
	</channel>
</rss>