Hi Guys
Don't know if you can help but I've got a couple of questions.
After successfully installing 2.7 on my live site I made a local copy on my computer (using XP home edition and Wamp) and using the master_green template which Mathias kindly ported for me.
The template uses a two page level level and I have a parent entry in my menu with entries that point to other directories on the site - on my local computer I've tried
http://localhost/tadoddir/ as one of the external links but the browser takes me to this address: "
http://localhost/wb/pages/the-directories/tadod---directory.php" with a 404 not found error.
The folder structure on the computer is E:\wamp\www\tadoddir\ - and WB is: E:\wamp\www\wb\ - any idea as to what the link should point to in the Menu Link editor?
Search
The site has a search box at the top of the page and the code for it is:
<form action="<?php echo WB_URL.'/search/index'.PAGE_EXTENSION; ?>" method="post">
<input type="text" name="string" class="inputbox" size="20" value="<?php echo $TEXT['SEARCh']; ?>search" />
<input type="hidden" name="submit" value="<?php echo $TEXT['SEARCH']; ?>" />
The original has this additional code which is quite cool because when you click into the box it replaces its content ( the word search) with the cursor in its place and then reverses it when you click out of the box:
<input class="inputbox" type="text" name="searchword" size="20" value="<?php echo _SEARCH_BOX; ?>" onblur="if(this.value=='') this.value='<?php echo _SEARCH_BOX; ?>';" onfocus="if(this.value=='<?php echo _SEARCH_BOX; ?>') this.value='';" />
<input type="hidden" name="option" value="search" />
Tried substituting <?php echo _SEARCH_BOX; ?> with <?php echo $TEXT['SEARCH']; ?> but it did not work.
You can see a working example of this on
http://www.joomlademo.de/ with the search box at the top right hand side. Any idea of how to get this to work with WB?
Breadcrumb
One last request please - I'd very much like to have the breadcrumb work like on the
http://riseup.co.nz/index6925.html site - on mine it only show the current page when you are on a child page ie.. Recomended as opposed to Home (arrow) Books (arrow) Recomended
Thank you in advance for your help and assistance.
Jean