<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Changing: $LANG[BookMess6] and $TPL[GB_JUMPMENU] in Guestbk"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Changing: $LANG[BookMess6] and $TPL[GB_JUMPMENU] in Guestbk"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Changing: $LANG[BookMess6] and $TPL[GB_JUMPMENU] in Guestbk</title>
				<description><![CDATA[ Hi<br /> <br /> I'm using the advanced guestbook (2.2) on Lunarpages (host) and am unable to figure out how to modify these files:  $LANG[BookMess6] and $TPL[GB_JUMPMENU]<br /> <br /> I would like to change the 'bookmess6' to read differently than the default script (text) that is currently there.   I would also like to add a link back to my website in the dropdown located in $TPL[GB_JUMPMENU]<br /> <br /> Any guidance would be *greatly* appreciated!<br /> <br /> Thanks...]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2596/6856.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2596/6856.php</link>
				<pubDate><![CDATA[Sat, 27 Dec 2003 21:13:44]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ To change the bookmess6 take a look in the language folder and change it.<br /> <br /> and on your second question:<br /> <br /> Here is what you have to do: <br /> <br /> 1.) open /guestbook/lib/gb.class.php in your favorite ascii editor <br /> and look for the Jumpmenu code. It starts around line 73 <br /> <br /> [code]function generate_JumpMenu&#40;&#41; &#123; <br />         $menu_array&#91;&#93; = &quot;&lt;select name=\&quot;entry\&quot; onChange=\&quot;urlJump&#40;'self',this&#41;\&quot; class=\&quot;select\&quot;&gt;&quot;; <br />         $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;http&#58;//www.mydomain.com/\&quot; class=\&quot;select\&quot;&gt;Back To Home&lt;/option&gt;&quot;; <br />         $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;0\&quot; selected&gt;&quot;.$this-&gt;db-&gt;LANG&#91;&quot;FormSelect&quot;&#93;.&quot;&lt;/option&gt;&quot;; <br />         if &#40;$this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93; &lt; $this-&gt;total&#41; &#123; <br />             $remain = $this-&gt;total % $this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93;; <br />             $i = $this-&gt;total-$remain; <br />             while &#40;$i &gt; 0&#41; &#123; <br />                 $num_max = $i; <br />                 $num_min = $num_max-$this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93;; <br />                 $num_min++; <br />                 $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;$remain\&quot;&gt;$num_min-$num_max&lt;/option&gt;&quot;; <br />                 $i = $num_min-1; <br />                 $remain += $this-&gt;db-&gt;VARS&#91;&quot;entries_per_page&quot;&#93;; <br />            &#125; <br />         &#125; <br />         $menu_array&#91;&#93; = &quot;&lt;/select&gt;&quot;; <br />         $menu_array&#91;&#93; = &quot;&lt;input type=\&quot;submit\&quot; value=\&quot;&quot;.$this-&gt;db-&gt;LANG&#91;&quot;FormButton&quot;&#93;.&quot;\&quot; class=\&quot;input\&quot;&gt;&quot;; <br />         return $menu_array; <br />     &#125; <br /> [/code]<br /> <br /> Replace http://www.mydomain.com/ with your homepage URL <br /> <br /> 2.) Now to add a javascript function to the guestbook header <br /> go to your templates folder and find header.php and add this between the &lt;head&gt;Put below code somewhere between these&lt;/head&gt; tags<br /> <br /> [code]&lt;head&gt;&lt;script language=&quot;Javascript&quot;&gt; <br /> &lt;!-- <br /> function urlJump&#40;target,selObj&#41; &#123; <br /> var optionValue = selObj.options&#91;selObj.selectedIndex&#93;.value; <br /> var isURL = /http&#58;/; <br /> var regMatch = isURL.test&#40;optionValue&#41;; <br /> if&#40;regMatch == true&#41; &#123; <br /> eval&#40;target+&quot;.location='&quot;+selObj.options&#91;selObj.selectedIndex&#93;.value+&quot;'&quot;&#41;; <br /> &#125; <br /> &#125; <br /> // --&gt; <br /> &lt;/script&gt; <br /> &lt;/head&gt; <br /> [/code]<br /> <br /> It works, I have tried it. for the other links though, you will not be using the "Go" button, as it is an auto-jump select type <br /> <br /> I don't use it on my site, because I don't need it.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2596/6862.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2596/6862.php</link>
				<pubDate><![CDATA[Sun, 28 Dec 2003 10:45:11]]> GMT</pubDate>
				<author><![CDATA[ Jam'n]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi Jam'n... thanks for all your help.. before reading your reply I broke the code myself after a long while.   I realized that the jump menu was meant for the numbered pages in the guestbook (ie: entries 1 - 20, 21 - 22, etc), not to add new links to other pages, so I simply made my logo the 'link' back to my home page.   <br /> <br /> I had looked all over for the bookmess6, including in the language folder, and it was no where to be found.. so I simply overrode the whole thing and typed my text straight in. <br /> <br /> The beginners way, but done to my liking!<br /> <br /> Thanks again.....]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2596/6880.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2596/6880.php</link>
				<pubDate><![CDATA[Wed, 31 Dec 2003 02:07:12]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ An easyier way is to remove LANG Bookmess maually and type your own links direct to the template. Dont wory about font style classes they will match other text already there as span is applied to table cell.<br /> <br /> ###Easy####]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2596/7393.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2596/7393.php</link>
				<pubDate><![CDATA[Tue, 17 Feb 2004 12:47:23]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>bookmess6</title>
				<description><![CDATA[ I have looked hard myself for this bookmess in lang. Finally, I found out it was in the local language file. For example, if you use English for your guestbook, you have to open english.php file for all the customizable texts.<br /> <br /> -Yiyan]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2596/8725.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2596/8725.php</link>
				<pubDate><![CDATA[Tue, 22 Jun 2004 15:51:30]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
	</channel>
</rss>