The Joomla! Forum ™



Forum rules


Please use the mailing list here: http://groups.google.com/group/joomla-dev-general rather than this forum.



Post new topic Reply to topic  [ 30 posts ] 
Author Message
PostPosted: Thu Apr 23, 2009 5:16 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Thu Apr 23, 2009 5:03 pm
Posts: 2
I have created a topmenu with drop downs. I then created another menu module using the same topmenu except I start it at Level 1. This correctly displays the submenu of the selected parent item. I would like for the title of this menu to be the same as the parent link selected, has anyone found a way to do this?

If you're not familiar with using the same "topmenu" module to create the submenu, see the link below. In my topmenu, I left the start and end levels at the default (0 and 10 I believe). My submenu start and end levels are 1 and 10.
http://www.theartofjoomla.com/magazine/ ... nique.html


Ex:
=============
Events
-> Calendar
-> Upcoming Events
Resources
-> News
-> Archives

If I select Upcoming Events link, I'd like the title for Side Menu to be Events. If I select News, the title would be Resources.

I've searched the internet for this topic and I've found a few others with this question, but was never able to find an answer. If anyone knows how to find the parent link, I can set the menu title using javascript / ajax in the index.php page dynamically.

Any help offered is appreciated, thanks!


Last edited by triadweb77 on Fri Apr 24, 2009 9:35 pm, edited 2 times in total.

Top
 Profile  
 
PostPosted: Fri Apr 24, 2009 9:18 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Thu Apr 23, 2009 5:03 pm
Posts: 2
I was able to figure out my problem, and thought I'd post my solution here for others that might be having the same issue.

In my template folder, I edited my modules.php file (/templates/[My Template]/html/modules.php). The name I used for this particular Menu Module was "Sub-Links", so edit this to match the title set in your module. Then I added a custom "id" to the <h3> tag used to display the title, '<h3 id="this_parent">'
=====

function modChrome_fx( $module, &$params, &$attribs )
{

if( !empty( $module->content) ) : ?>
<div class="moduletable<?php echo $params->get('moduleclass_sfx');?>">
<div class="tog">
<?php if( $module->showtitle != 0 ) : ?>
<?php

if ($module->title != 'Sub-Links')
{ // no change to other modules
echo '<h3>'.$module->title.'</h3>';
}

else
{ // custom code to display Parent link as title of submenu
// if user has javascript disabled, display default title of "Sub-Links"
echo '<h3 id="this_parent"><noscript>'.$module->title.'</noscript></h3>';
}


?>
<?php endif; ?>
</div>
<div class="cont">
<?php echo $module->content; ?>
</div>
</div>
<?php endif;
}
=====

Then in my template's index.php file, I added the following javascript code.

Please note that I have enabled the Breadcrumbs module for my site, so I parse that string to discover the parent link. Some browsers display the tags in lowercase, others in caps, so I did a string replace to make them all caps where necessary. Also in my case this displayed the parent link (level 0) for all sub menus, regardless of the number of levels.

=====
<script type="text/javascript">
function changeText(){

if (document.getElementById('breadcrumb'))
{ // if not on "HOME" page

var breadcrumbText = document.getElementById('breadcrumb').innerHTML;
// remove any extra spaces
breadcrumbText = breadcrumbText.replace( /^\s+|\s+$/g ,'').replace( /\s+/g,' ');
breadcrumbText = breadcrumbText.replace(/a>/g,'A>').replace(/span>/g,'SPAN>');
// Home text is displayed in breadcrumbs string
var splitBreadcrumb = breadcrumbText.split("Home");
var splitLink = splitBreadcrumb[1].split('">');

if(splitLink[1] != null)
{ // submenu selected

var splitLink2 = splitLink[1].split('</A>');
if(document.getElementById('this_parent').innerHTML != null)
document.getElementById('this_parent').innerHTML = splitLink2[0];
}

else
{ // if parent link of submenu is selected
var splitLink3 = splitLink[0].split('&gt; ');
var splitLink4 = splitLink3[1].split('</SPAN>');

if(document.getElementById('this_parent').innerHTML != null)
document.getElementById('this_parent').innerHTML = splitLink4[0];
}

}

}

window.onload = changeText;
</script>
=====

If you find any errors in my code, or know of a better way to accomplish this, please let me know.

Thanks


Top
 Profile  
 
PostPosted: Mon Mar 29, 2010 8:18 am 
User avatar
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue May 12, 2009 9:13 pm
Posts: 11
Location: San Francisco, CA
I couldn't get this to work on J 1.5.15. I can see that it's not displaying what's inside the H3 tag (src still says "Sub-Links") but not displaying in-browser, so I suppose that's part of the JS working. However it's not replacing it with anything, though breadcrumbs are turned on. Not sure why as I'm not the greatest with JS. What Joomla version are you using?

Have you seen any other solutions to this? I'd really like to get something like this working as well.

_________________
Zap! Squeak! Design!
print.web.identity.illustration
(...and a whole lot of Joomla too)

http://www.zapsqueak.com


Top
 Profile  
 
PostPosted: Mon Mar 29, 2010 7:45 pm 
Joomla! Intern
Joomla! Intern

Joined: Wed Nov 14, 2007 4:45 pm
Posts: 65
This is great, just what I needed!

I did get it to work, one thing that wasn't in the writeup above is in the template index.php file, the module code needs to be changed to style="fx"

So I used the menu in the left module position, here's my code:
<jdoc:include type="modules" name="left" style="fx" />

For the javaScript, I ended up using a different method, since I just need the items in the main menu. I grabbed whatever a link was class containing 'active', and then grabbed the title tag from that. It works well. JQuery would be even easier, but for some reason it was conflicting with the template I am using.

Great work!


Top
 Profile  
 
PostPosted: Mon Mar 29, 2010 8:16 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue May 12, 2009 9:13 pm
Posts: 11
Location: San Francisco, CA
Hey jimb0,

Do you mind posting you're JS so I can give it shot? I think the previous JS might have been conflicting with something in my template.

Thanks!

_________________
Zap! Squeak! Design!
print.web.identity.illustration
(...and a whole lot of Joomla too)

http://www.zapsqueak.com


Top
 Profile  
 
PostPosted: Mon Mar 29, 2010 8:28 pm 
Joomla! Intern
Joomla! Intern

Joined: Wed Nov 14, 2007 4:45 pm
Posts: 65
I'm no JS pro, but what I have works:

var mainId = document.getElementById("ja-mainnav");
var links = mainId.getElementsByTagName("a");
for(var i=0; i<links.length; i++){
var temp = links[i].getAttribute("class");
if(temp==null){
temp = links[i].getAttribute("className");
}
if( temp.indexOf("active") >= 0 ) {
mainVal = links[i].getAttribute("title");
}
}

if(document.getElementById('this_parent') ) {
if(document.getElementById('this_parent').innerHTML != null) {
if(mainVal!="" && mainVal!=null) {
document.getElementById('this_parent').innerHTML = mainVal;
} else {
document.getElementById('this_parent').innerHTML = "Menu";
}
}
}

Im looking for all a links in a div with id of ja-mainnav
Then I get the a with class of active. IE needs 'classname', and others 'class'


Top
 Profile  
 
PostPosted: Mon Mar 29, 2010 8:33 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue May 12, 2009 9:13 pm
Posts: 11
Location: San Francisco, CA
Awesome, thanks! I'll give it a shot.

_________________
Zap! Squeak! Design!
print.web.identity.illustration
(...and a whole lot of Joomla too)

http://www.zapsqueak.com


Top
 Profile  
 
PostPosted: Tue Mar 30, 2010 9:40 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue May 12, 2009 9:13 pm
Posts: 11
Location: San Francisco, CA
It works, but sadly my menu system is proving to be too complicated to get it to work the way I want it too (Superfish Menu + 4 Levels Deep). Went back to using individual modules with different titles instead. Thanks for the tips though, I'll definitely keep it in mind for the simpler menus I come across.

_________________
Zap! Squeak! Design!
print.web.identity.illustration
(...and a whole lot of Joomla too)

http://www.zapsqueak.com


Top
 Profile  
 
PostPosted: Tue Mar 30, 2010 9:53 pm 
Joomla! Intern
Joomla! Intern

Joined: Wed Nov 14, 2007 4:45 pm
Posts: 65
Yeah sounds like it could get complicated. A jquery pro may be able to help with that.


Top
 Profile  
 
PostPosted: Fri May 28, 2010 7:39 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Mon Mar 23, 2009 12:55 pm
Posts: 31
Wouldn't it be easier to change the breadcrumb-module to sow instead of all levels only the first level? and then put this module above the horizontal menu-module which starts on level 1.

If anyone has a solution please post it. The solution above is to complicated for many of us.

Any help is apreciated, thanks!


Top
 Profile  
 
PostPosted: Fri May 28, 2010 12:20 pm 
Joomla! Intern
Joomla! Intern

Joined: Wed Nov 14, 2007 4:45 pm
Posts: 65
That may work by hacking the breadcrumbs component to take out the links, and to show only the top item.

But my method works well, I use Javascript or Jquery to target the active menu item, and then display that as the title.


Top
 Profile  
 
PostPosted: Sat Jul 03, 2010 9:18 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Jul 03, 2010 8:42 pm
Posts: 3
Hey guys,

This is my first time using Joomla! and first time posting on the forums. This thread helped me figure out how I plan to do what you guys are doing: change my Sub Menu Title dynamically.

However, I have run into a problem. For some reason, I cannot get my JavaScript to function. The code looks pretty straightforward to me, and I am surprised that it's not functioning. Does Joomla! by default block setting innerHTML? That's the only thing I could figure is preventing my code from working.

Any help would be greatly appreciated!

This is the method that I am using:

In modules.php (this part works perfectly):

This adds an id to the header of my Sub Menu. The id is called "changeme".

Code:
function modChrome_hlo($module, &$params, &$attribs)
{
   $headerLevel = isset($attribs['headerLevel']) ? (int) $attribs['headerLevel'] : 3;
   if (!empty ($module->content)) : ?>
      <div class="moduletable<?php echo $params->get('moduleclass_sfx'); ?>">
         <?php if ($module->showtitle) : ?>
            <?php
               echo '<h'.$headerLevel.($module->title=="Sub Menu"?' id="changeme">':'>');
               echo $module->title.'</h'.$headerLevel.'>';
            ?>
         <?php endif; ?>
         <?php echo $module->content; ?>
      </div>
   <?php endif;
}


JavaScript:

This is the part that seems to be not working. Even though the code looks good to me, and should be working correctly. Even if I manually set var currentMenuItemText = 'TEST';, nothing happens. This is what is leading me to believe that Joomla! by default is somehow blocking any attempts to set an elements innerHTML.

Code:
function changeText() {
    var currentMenuItemText = document.getElementById('current').getElementsByTagName('span')[0].innerHTML;
   document.getElementById('changeme').innerHTML = currentMenutItemText;
}

window.onload = changeText();


Top
 Profile  
 
PostPosted: Sat Jul 03, 2010 11:02 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Jul 03, 2010 8:42 pm
Posts: 3
Update:

FireBug is telling me that getElementId is returning null. It appears to return null for any id that I plug into the function, even id's that are directly coded into the php template file. Not sure what is going on...


Top
 Profile  
 
PostPosted: Sat Jul 03, 2010 11:48 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Jul 03, 2010 8:42 pm
Posts: 3
Haha, Ok. So, I solved my own problem. Hopefully, this will be a lesson to any other javascript newbies who come across the thread.

In the window.onload statement, if you place parentheses after the function (e.g., "changeText()"), then the function runs IMMEDIATELY. In this case, that means the function runs before the page is loaded.

If you use window.onload correctly, and you do not place parentheses after the called function (e.g., "changeText"), then the function will run after the page is fully loaded.

Thus, as it applies to my code, here is the correct & working JavaScript:

Code:
function changeText() {
    var currentMenuItemText = document.getElementById('current').getElementsByTagName('span')[0].innerHTML;
    document.getElementById('changeme').innerHTML = currentMenuItemText;
}
window.onload = changeText;


If you combine this with the edit to module.php that I posted earlier, this JavaScript will grab the text from the span that is inside the current menu item. It will then assign that text to the inner html of the header tag that I assigned an id of "changeme."

This allows a very simple way to keep your sub menu title dynamic.

If you don't have the main menu or the submenu on all pages, use this code:

Code:
function changeText() {
   if (document.getElementById('current')) {
      var currentMenuItemText = document.getElementById('current').getElementsByTagName('span')[0].innerHTML;
      if (document.getElementById('changeme')) {
         document.getElementById('changeme').innerHTML = currentMenuItemText;
      }
   }
}
window.onload = changeText;


Top
 Profile  
 
PostPosted: Tue Jul 06, 2010 1:17 pm 
Joomla! Intern
Joomla! Intern

Joined: Wed Nov 14, 2007 4:45 pm
Posts: 65
I like your method, I may use it on a future project. Good work!


Top
 Profile  
 
PostPosted: Fri Jul 23, 2010 2:21 pm 
Joomla! Intern
Joomla! Intern

Joined: Wed Nov 14, 2007 4:45 pm
Posts: 65
Your method works well. I tried it for another site, and I like it.

For my site I only need the selected main nav title, so here's my function:

Code:
function changeText(){
    var mainId = document.getElementById("ja-mainnav");
    var links = mainId.getElementsByTagName("a");
    var modules = getElementsByClass ('active', null, "a");
    var modulesTitle = modules[0].getAttribute("title");
   
    if(document.getElementById('changeme') ) {
        if(document.getElementById('changeme').innerHTML != null) {
            if(modulesTitle!="" && modulesTitle!=null) {
                document.getElementById('changeme').innerHTML = modulesTitle;
            } else {
                document.getElementById('changeme').innerHTML = "Menu";
            }
        }
    }
}


The Joomla team should add our awesome code to the next release ;P


Top
 Profile  
 
PostPosted: Sun Aug 22, 2010 12:17 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Oct 24, 2007 8:28 pm
Posts: 5
been trying to implement this.. and cant get it to work.... does anyone have all the code... clearyl working.

thanks


Top
 Profile  
 
PostPosted: Fri Nov 12, 2010 4:59 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Fri Nov 12, 2010 4:56 pm
Posts: 2
Tag this code to the end of the file "\modules\mod_mainmenu\mod_mainmenu.php"

$menu = &JSite::getMenu();
$active = $menu->getActive();
$module->title = $active->name;

No need for Javascript hacks. :)


Top
 Profile  
 
PostPosted: Tue Jan 18, 2011 5:07 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Fri Oct 07, 2005 1:02 am
Posts: 191
Hi cjdell,

Your solution worked for me actually. I could not get the other js solutions to work.
But i would like to know if it's possible to get the title of the parent menu item instead of the active one.

thanks


Top
 Profile  
 
PostPosted: Tue Jan 18, 2011 9:01 pm 
User avatar
Joomla! Guru
Joomla! Guru

Joined: Wed Nov 16, 2005 2:02 am
Posts: 588
Location: Breklum - Nordfriesland
From my templatetool class:
Code:
    /**
     * Get the current menu item's top level parent's name
     *
     * @since   1.1
     * @param   string    $default  The default name
     * @return  string    Menu item name
     */
    public static function getTopLevelMenuName( $default='' )
    {
        $menu = JSite::getMenu();
        $current = $menu->getActive();
        if ( !is_object( $current ) ) {
            return $default;
        }
        while ( $current->parent != 0 ) {
            $current = $menu->getItem( $current->parent );
        }
        return $current->name;
    }


Top
 Profile  
 
PostPosted: Wed Jan 19, 2011 2:35 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Fri Oct 07, 2005 1:02 am
Posts: 191
Thanks a lot nibra,
but i'm a bit confuse where the code you gave should go and incorporate with the previous answers.
I tried a few things but always get an error which i guess means that i am not placing it correctly.


Top
 Profile  
 
PostPosted: Wed Jan 19, 2011 3:50 am 
User avatar
Joomla! Guru
Joomla! Guru

Joined: Wed Nov 16, 2005 2:02 am
Posts: 588
Location: Breklum - Nordfriesland
That code belongs in a helper class. I use to store that class in the template folder. Let's say, you call the class MyTemplateTools in the file mytemplatetools.php in your template folder. Then in your template index.php, just say
Code:
require_once dirname( __FILE__ ) . '/mytemplatetools.php';
echo MyTemplateTools::getTopLevelMenuName( 'Home' );


Top
 Profile  
 
PostPosted: Wed Jan 19, 2011 10:47 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Fri Nov 12, 2010 4:56 pm
Posts: 2
nibra wrote:
That code belongs in a helper class. I use to store that class in the template folder. Let's say, you call the class MyTemplateTools in the file mytemplatetools.php in your template folder. Then in your template index.php, just say
Code:
require_once dirname( __FILE__ ) . '/mytemplatetools.php';
echo MyTemplateTools::getTopLevelMenuName( 'Home' );


So in bobthebob01's case the solution would be:

Code:
require_once dirname( __FILE__ ) . '/mytemplatetools.php';

$module->title = MyTemplateTools::getTopLevelMenuName( 'Home' );


Top
 Profile  
 
PostPosted: Fri Jan 21, 2011 9:11 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Fri Oct 07, 2005 1:02 am
Posts: 191
Well guys, i would like thank you very much for your help.
I must say that still could not get this to work. Feel kind of stupid about it.

But by researching more, i found this thread on the forum: viewtopic.php?p=1614528 which offer an even simpler way of achieving the result.

No need to add any javascript to the header, no need to have templatetools.php file a functions and calling it in the header. And no need no need to modify "\modules\mod_mainmenu\mod_mainmenu.php".

It just output what i needed.

but thanks to all the helps.

Cheers

ps: don't forget to set the "show title" when editing the menu module in the admin panel to "no"


Top
 Profile  
 
PostPosted: Tue Oct 04, 2011 6:33 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Tue Oct 04, 2011 6:19 pm
Posts: 2
cjdell wrote:
nibra wrote:
That code belongs in a helper class. I use to store that class in the template folder. Let's say, you call the class MyTemplateTools in the file mytemplatetools.php in your template folder. Then in your template index.php, just say
Code:
require_once dirname( __FILE__ ) . '/mytemplatetools.php';
echo MyTemplateTools::getTopLevelMenuName( 'Home' );


So in bobthebob01's case the solution would be:

Code:
require_once dirname( __FILE__ ) . '/mytemplatetools.php';

$module->title = MyTemplateTools::getTopLevelMenuName( 'Home' );


I am working on making my menus have dynamic names like you all were working on here in this posting...

I see what you are saying but it is not working for me either. This is what i have done:

1. Added the following code to the mod_mainmenu.php

$menu = &JSite::getMenu();
$active = $menu->getActive();
$module->title = $active->name;

2. I added the following code to a file I created called "mytemplatetools.php" and have placed this file in the root of my template.

/**
* Get the current menu item's top level parent's name
*
* @since 1.1
* @param string $default The default name
* @return string Menu item name
*/
public static function getTopLevelMenuName( $default='' )
{
$menu = JSite::getMenu();
$current = $menu->getActive();
if ( !is_object( $current ) ) {
return $default;
}
while ( $current->parent != 0 ) {
$current = $menu->getItem( $current->parent );
}
return $current->name;
}

3. I added the following to the head of my index.php of my template.

require_once dirname( __FILE__ ) . '/mytemplatetools.php';
$module->title = MyTemplateTools::getTopLevelMenuName( 'Home' );

Am I doing this all correctly so far? I am still getting the active links as the title of my menu module. I want that title to be the parent to that menu.

If you could help me...i would greatly appreciate it.

Steve M.


Top
 Profile  
 
PostPosted: Fri Oct 14, 2011 9:40 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Oct 07, 2009 12:21 pm
Posts: 15
Hi Guys, I was just looking to do the same, read through the posts and decided to pull all the ideas you had into one easy solution

modify templates/mytemplate/html/module.php
here you will see the various templates for how modules are layed out. for ease I created a new one (copy and paste the rounded one) and did my modifications to that, then in my template index.php I changed the module style to the new module name I created. here is my solution (cant take much credit as I've just used the information that everyone has posted but simplified it).

There is an additional bit of code that I've added to detect whether the $active-name is the parent and if not to displat the parent name, otherwise the title of the module will keep changing depending upon which sub-menu item has been selected.

Code:
function modChrome_xhtmlclearfix($module, &$params, &$attribs)
{
   if (!empty ($module->content)) : ?>
      <div class="moduletable<?php echo $params->get('moduleclass_sfx'); ?> clearfix">
      <?php if ($module->showtitle != 0) :
         if ($module->title != 'Sub-Links') { // no change to other modules
      ?>
         <h3><?php echo $module->title; ?></h3>
        <?php
      }else{ // custom code to display Parent link as title of submenu
         $menu   = &JSite::getMenu();
         $active   = $menu->getActive();
         if (isset($active->id) && $active->parent) { // continue if active menu has a parent
              $parent = $menu->getItem($active->parent); // lookup parent node by it's id
            $name = $parent->name;
         }else{
            $name = $active->name;
         }
      ?>
         <h3><?php echo $name ?></h3>
        <?PHP
      }
      ?>
      <?php endif; ?>
         <?php echo $module->content; ?>
      </div>
   <?php endif;
}

And that's it! no javascript and only one file to modify.


Top
 Profile  
 
PostPosted: Mon Jul 30, 2012 3:04 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Fri Oct 07, 2005 1:02 am
Posts: 191
Hi,

I'm re-opening this thread as i'm looking to do the same in Joomla 2.5.
I've tried but this but it was not working on joomla 2.5
Does anybody succeeded or find an alternative?

thanks


Top
 Profile  
 
PostPosted: Sat Aug 25, 2012 8:02 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Sep 30, 2009 5:53 pm
Posts: 18
Here's what I came up with that's currently working for Joomla 2.5. I like it because it doesn't modify any core libraries or functions and it also only requires modifications to one file: "templates\%TEMPLATE_NAME%\html\modules.php"

Here's the function that gets the top level menu title
Code:
function getTopLevelMenuTitle(){
   $app = JFactory::getApplication();
   $menu = $app->getMenu();
   $active = ($menu->getActive()) ? $menu->getActive() : $menu->getDefault();
   $items = $menu->getItems('id', $active->tree[0]);
   return (count($items) == 1) ? $items[0]->title : 'Learn More';
}


Next, you simply need to call that function in the modChrome... function.
Code:
function modChrome_fx( $module, &$params, &$attribs )
{
   if( !empty( $module->content) ) : ?>
      <div class="moduletable<?php echo $params->get('moduleclass_sfx');?>">
            <?php
               if( $module->showtitle != 0){
                  if($params->get('moduleclass_sfx') == ' dynamic_menu')
                     echo '<h3>' . getTopLevelMenuTitle() . '</h3>';
                  else
                     echo '<h3>' . $module->title . '</h3>';
               }
            ?>
         <div class="cont">
            <?php echo $module->content; ?>
         </div>
      </div>
      <?php endif;
}


Finally, as you probably see from the code, you now need to add the appropriate module suffix (in my case " dynamic_menu" where the space is important) to the menu modules for which you want the title dynamically set. Let me know if you have any questions and I'll do my best to answer them.


Top
 Profile  
 
PostPosted: Mon Aug 27, 2012 4:48 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Fri Oct 07, 2005 1:02 am
Posts: 191
As one said: Dude... you rock! lol

Thank you very much dkrrunner for the clear explanation. I'll try it and will let you know.
But if it worked for you, i don't see why it should not for me. Unless it's a discriminatory script !! lol

Cheers


Top
 Profile  
 
PostPosted: Tue Oct 09, 2012 6:54 pm 
User avatar
Joomla! Guru
Joomla! Guru

Joined: Wed Feb 28, 2007 5:40 am
Posts: 785
Location: Connecticut, USA
bobthebob01 wrote:
As one said: Dude... you rock!

+1 to that :)

_________________
betweenbrain™ | http://www.betweenbrain.com
Construct Template Development Framework | http://construct-framework.com/


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 30 posts ] 



Who is online

Users browsing this forum: No registered users and 13 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group