Finally i reinstall the theme since the beginning and it solved. I dont know why happened this. :S
Thank you very much for your pattience!!
edited by: donkeyro, Nov 10, 2006 - 12:53 PM
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- mesteele101 created topic »Zikula 1.3.3 - Selecting a category in Pages not working« 04:19 PM
- nestormateo responded to »Fillters in Clip« 06:33 AM
- damon responded to »Can the Updated Version Check be Turned Off (Z 1.3)« 03:19 AM
- frw responded to »Bug in the SMTP mail transfer protocol - Port 25 - Zikula 1.2.9« 22. May
- mdee responded to »Short URL questions« 22. May
- mesteele101 responded to »Problem in Database Connection« 21. May
- Herr.Vorragend responded to »Clip Documentation and Doubt« 19. May
Zikula Blog
- Anatomy of Open Source Projects on Mar 07
- Continuous Review on Mar 01
- Not Invented Here on Feb 24
- How to Contribute Your Code at Github on Jan 13
- 10 Steps to Coding-Nirvana: Tips for Successful Module Writing on Nov 12
- Submitting Bug Report Tickets That Get Results on Aug 17
- Cozi Tricks #1: Syntax Highlighting on Aug 07
Login
Dynamenu 2.0 released - Dynamic multi-menu block
Go to page [-10 -1] 1 - 2 - 3 ... 40 - 41 - 42:
-
**unknown user**
- Rank: Registered User
- Registered: Mar 16, 2002
- Last visit: Dec 07, 2006
- Posts: 2
Has anyone had success with integrating Dynamenu in Openstar 4.0.4?
I was getting errors and the page did not fully render. I then noticed that Openstar's v4blib has it's own version of layersmenu-browser_detection.php, layersmenu-common.inc.php, layersmenu-process.inc.php, plainmenu.inc.php, PHPLIB.php, treemenu.inc.php, & layersmenu.inc.php. So I changed Nate's dynamenu.php to point at those files instead, and still get the error:
Quote
PHP Fatal error: Cannot redeclare class template_phplib in .../openstar/includes/v4blib/phplayersmenu/lib/PHPLIB.php on line 29
-
**unknown user**
- Rank: Registered User
- Registered: Mar 16, 2002
- Last visit: Dec 07, 2006
- Posts: 2
Woo hoo! I fixed it. All I had to change was the location of the phplayers libraries and change "include" to "include_once" in dynamenu.php. Here's the final code (starting on line 160):
Code
// Include necessary libraries for all menu types
//include ("includes/blocks/dynamenu/lib/PHPLIB.php" );
//include ("includes/blocks/dynamenu/lib/layersmenu-common.inc.php" );
//include ("includes/blocks/dynamenu/lib/layersmenu.inc.php" );
//include ("includes/blocks/dynamenu/lib/treemenu.inc.php" );
//include ("includes/blocks/dynamenu/lib/plainmenu.inc.php" );
include_once("includes/v4blib/phplayersmenu/lib/PHPLIB.php");
include_once("includes/v4blib/phplayersmenu/lib/layersmenu-common.inc.php");
include_once("includes/v4blib/phplayersmenu/lib/layersmenu.inc.php");
include_once("includes/v4blib/phplayersmenu/lib/treemenu.inc.php");
include_once("includes/v4blib/phplayersmenu/lib/plainmenu.inc.php");
The original code is commented out, and the new code is directly beneath it.
I love this menu and now I can continue to use it!
-Stephen
edited by: elliottsb, Dec 07, 2006 - 05:22 PM -
- Rank: Registered User
- Registered: Mar 05, 2007
- Last visit: Apr 24, 2007
- Posts: 2
Hello. I'm not sure where to post this, but I have the vertical version of Dynamenu installed in a way that when the user clicks on level-1 item A, that section opens to display the level-2 items, then if the user clicks on level-1 item B, section B expands, but section A remains expanded.
Is there a way to have section A collapse when section B is expanded so only one section is expanded at a time?
If not Dynamenu, does anyone know of a solution for this?
Help on this would be GREATLY appreciated.
An example of the navbar behavior that I expect can be seen at http:// http://www.s…default.asp?GID=200
-
- Rank: Registered User
- Registered: Mar 19, 2004
- Last visit: May 25, 2007
- Posts: 17
elliottsb
Woo hoo! I fixed it. All I had to change was the location of the phplayers libraries and change "include" to "include_once" in dynamenu.php. Here's the final code (starting on line 160):
snip...
.../snip
The original code is commented out, and the new code is directly beneath it.
I love this menu and now I can continue to use it!
-Stephen
Thanks a lot - your solution works graet and solved my problem with the admin-item of v4bCategories (opening results in downloding the index.php
)
Now it seems to work fine.
-
**unknown user**
- Rank: Registered User
- Registered: Mar 16, 2002
- Last visit: May 11, 2007
- Posts: 1
I've got Dynamenu up and working - it was just what I was looking for a near or two back, but didn't find at the time. Now I've worked with it, I am very appreciative!
My only issue relates to vertical spacing. Even using the default .css my vertical tree menu has, effectively, a blank line between the entries which messes up the effect.
You can see it at http://fava.worldvet.org in the site I'm developing.
I'd appreciate any help/advice that anyone could give me...
Nick
EDIT: Just to clarify, my issue as best I can identify it is that some of my existing CSS definitions are impacting on the rendering of the Dynamenu block - not that Dynamenu is doing anything 'wrong'. I'm using a near unmodified version of the xBluev3 theme (Xanthia), but chop and change as I might, I can't seem to make the space between shrink...
FINAL EDIT: Solved my own problem... It *was* in my other styles, in the way thewas being handled. I fixed it and I'm *really* enjoying this menuing system. Thanks, Nate!
edited by: nwallingford, May 12, 2007 - 03:44 PM -
**unknown user**
- Rank: Freshman
- Registered: Mar 16, 2002
- Last visit: Oct 21, 2009
- Posts: 51
HI
Downlaoded the latest version for 0.7.6.4 postnuke. Running xtralite theme - the basic one while i setup the site. Put in :
echo $GLOBALS['dmfooter'];
In the footer.php above the foot command at the bottom
Issue now is the drop downs show at the bottom of the screen and not at the top - as have it set to horizonatl menu
Any ideas?
Scott -
- Rank: Registered User
- Registered: Jan 28, 2008
- Last visit: Oct 21, 2009
- Posts: 45
You need to add the appropriate CSS from the dynamenu CSS file to your theme's CSS.
I suppose I didn't need to answer a question that was six months old...
edited by: enchanted_illusions, Jun 18, 2008 - 01:29 PM -
**unknown user**
- Rank: Registered User
- Registered: Mar 16, 2002
- Last visit: Jul 19, 2008
- Posts: 3
Yea I am new to Zikula. Does Dynamenu work with 1.0. I am having install problems. Some the directory structure mentioned in the readme don't match exactly what I have. Basically a generic install of Zikula 1.0. I created the directories that did not exist and followed the instruction in the readme but when I create a new block, Core/Dynamic Menu is not there. Any help/guidance would be most appreciated and my apologies if this has been answered elsewhere or I just did plain did not see the answer here.
Thanks
Go to page [-10 -1] 1 - 2 - 3 ... 40 - 41 - 42:
- Moderated by:
- Support
