| Author |
Message |
nextgen Worker


Joined: Sep 28, 2006 Posts: 130 Location: Maryland
|
Posted:
Wed Apr 21, 2010 5:34 am |
|
With the move of the Forums Includes files in ravennuke into the modules/Forums/includes it made the forums collapsing block throw out errors because it is still looking for the root/includes/constants.php when it is actually now in the modules/forums/includes/constants.php Would someone update the download so all future users can use it and have no issues. I have the debugger from and it shows me a bunch of errors from the block. Here is a screenshot.
 |
|
|
|
 |
Palbin Site Admin

Joined: Mar 30, 2006 Posts: 2403 Location: Pennsylvania
|
Posted:
Wed Apr 21, 2010 5:41 am |
|
Are trying to use this block on a RN site? If so a new block is included in the package. It will not work on a non RavenNuke site unless the jQuery library is loaded. |
|
|
|
 |
nextgen Worker


Joined: Sep 28, 2006 Posts: 130 Location: Maryland
|
Posted:
Wed Apr 21, 2010 7:37 am |
|
a center block that collapses ? I see a side block but no other collapsing blocks. |
|
|
|
 |
nextgen Worker


Joined: Sep 28, 2006 Posts: 130 Location: Maryland
|
Posted:
Wed Apr 21, 2010 7:39 am |
|
It is working fine now, just need to correct the path to the constants.php. No errors at all. Just wanted to post in case others find the same issue. |
|
|
|
 |
Palbin Site Admin

Joined: Mar 30, 2006 Posts: 2403 Location: Pennsylvania
|
Posted:
Wed Apr 21, 2010 1:46 pm |
|
Does your block look like the one here? |
|
|
|
 |
nextgen Worker


Joined: Sep 28, 2006 Posts: 130 Location: Maryland
|
Posted:
Wed Apr 21, 2010 6:08 pm |
|
exactly like that one. Could there be a newer version ? |
|
|
|
 |
Palbin Site Admin

Joined: Mar 30, 2006 Posts: 2403 Location: Pennsylvania
|
Posted:
Wed Apr 21, 2010 8:19 pm |
|
The block on the site in your profile is not using the latest version of the block. I can tell by looking at it. The newest block is included in the package so I am not sure how you got that one. |
|
|
|
 |
luckson New Member


Joined: Aug 02, 2008 Posts: 22 Location: NaGaLim
|
Posted:
Sat Aug 14, 2010 4:06 am |
|
I have problem with this block too! The "Show/Hide" doesn't work when click... M not using the latest RN version though. V2.30.01 RN is the last version i installed/upgraded in 2009.
Any suggestion will be much appreciated.
my site is |
|
|
|
 |
Palbin Site Admin

Joined: Mar 30, 2006 Posts: 2403 Location: Pennsylvania
|
Posted:
Sat Aug 14, 2010 9:28 am |
|
You need to download the main jQuery library, and place it in includes/jquery. Then add the following to header,php between the head tags.
| Code: |
<script type="text/javascript" language="JavaScript" src="includes/jquery/jquery.js"></script>
|
You may need to change "jquery.js" to what ever you call it. I do not think the block requires any plug-ins, but I can not remember. |
|
|
|
 |
luckson New Member


Joined: Aug 02, 2008 Posts: 22 Location: NaGaLim
|
Posted:
Sun Aug 15, 2010 2:27 am |
|
Prolly the problem is with my theme. It works like a charm with Fisubice theme... tested both in IE and Firefox... it looks awkward in Google Chrome though ... |
|
|
|
 |
spasticdonkey RavenNuke(tm) Development Team

Joined: Dec 02, 2006 Posts: 1251 Location: Texas, USA
|
Posted:
Sun Aug 15, 2010 10:00 am |
|
The collapse button seemed to work ok for me on your site using latest of IE and Firefox. Although sometimes other JS errors can cause issues, i got a JS warning in IE with:
| Code: | | <img width="170" height="94" border="0" align="left" src="frontpage/signup.png" style="margin-right: 10px;" onmouseover="this.src=''frontpage/signup1.png'';" onmouseout="this.src=''frontpage/signup.png'';" alt="" /> |
try changing to:
| Code: | | <img width="170" height="94" border="0" align="left" src="frontpage/signup.png" style="margin-right: 10px;" onmouseover="this.src='frontpage/signup1.png'" onmouseout="this.src='frontpage/signup.png'" alt="" /> |
|
|
|
|
 |
|
|
|
|