» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 89
0 members and 89 guests
No Members online
Most users ever online was 611, 03-21-2008 at 10:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Rimonabant
www.rimonabant-weight-loss.com
Football Betting - best nfl betting promotions at sportsbook.com.
Poker Chips - Clay and composite poker chips for home games.

Register Now! Contact Us

About this Page
This is a discussion on Using HTML in reviews module within the Nuke 7.x - Modules forums, part of the PHP-Nuke 7.x category; How can I use html to format my reviews in the reviews module? I am running raven's 7.6 ...



Go Back   Nukemods Forum » PHP-Nuke 7.x » Nuke 7.x - Modules

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-29-2005, 08:29 PM
Junior Member
 
Join Date: Mar 2003
Posts: 39
Using HTML in reviews module
How can I use html to format my reviews in the reviews module? I am running raven's 7.6 pack.
__________________
- Cyberkiller
http://www.jerlabs.net
Php-Nuke 6.5
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 12-30-2005, 03:16 AM
coldblooded's Avatar
Super Moderator
 
Join Date: Jan 2002
Location: USA
Posts: 618
Hi Cyber. I typed up a test review in Dreamweaver, pasted it into the reviews module and all the HTML worked fine. What problem are you having with it?
__________________
The more we learn... the more we realize how little we actually know.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 12-30-2005, 11:20 AM
Duke's Avatar
Super Moderator
 
Join Date: Dec 2005
Location: Under your bed
Posts: 1,001
Send a message via AIM to Duke
The only thing I can think of is maybe he wants to create tables inside of the module, other than that, I'm drawing a complete blank.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 12-30-2005, 04:17 PM
Junior Member
 
Join Date: Mar 2003
Posts: 39
Here's the review on my old 6.5 install,
http://www.jerlabs.net/modules.php?n...wcontent&id=10

Here's the review on my new 7.6 install to make the site more secure,
http://www.worldofwarcraftforums.net...owcontent&id=5

Copy/pasted it directly but its not intepreting the
Code:
, 


[img]http://www.worldofwarcraftforums.net/securejerlabs/images/reviews/ceramique/1.jpg[/img]
Among other things.
__________________
- Cyberkiller
http://www.jerlabs.net
Php-Nuke 6.5
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 01-01-2006, 03:30 AM
Junior Member
 
Join Date: Mar 2003
Posts: 39
Got it working correctly,

Thanks!
__________________
- Cyberkiller
http://www.jerlabs.net
Php-Nuke 6.5
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 01-01-2006, 12:00 PM
Duke's Avatar
Super Moderator
 
Join Date: Dec 2005
Location: Under your bed
Posts: 1,001
Send a message via AIM to Duke
If your looking for a way to get text to wrap around your image, here's some handy little code that I use on my newspage at Lifesupporters.net all the time:

[TABLE][TBODY][TR][TD]
[a href="http://www.______________"target=_blank][IMG height=? alt="?" src="http://www.________________.gif" width=? border=0][/A][/TD]
[TD]
[P]Description goes here…
[/P][/TD][/TR][/TBODY][/TABLE]

I use it in my weblinks area as well so I can add a small 110 x 56 banner of the site with text to the right of it. Using this code saves space and leaves far less empty areas on your pages.

LEGEND:

Replace:

[ = <

] = >
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 01-01-2006, 02:54 PM
coldblooded's Avatar
Super Moderator
 
Join Date: Jan 2002
Location: USA
Posts: 618
Originally Posted by Cyberkiller
Got it working correctly,

Thanks!
If you get a moment, could you post your solution so others with the same problem can find it?
__________________
The more we learn... the more we realize how little we actually know.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 01-01-2006, 03:12 PM
Junior Member
 
Join Date: Mar 2003
Posts: 39
In config.php
I had to add
"p"=>1
"img"=>2

To the allowed html part

This allows the

& <img source> tags too be used, which is why my reviews weren't formatting properly.
__________________
- Cyberkiller
http://www.jerlabs.net
Php-Nuke 6.5
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 01-03-2006, 11:21 PM
Junior Member
 
Join Date: Oct 2005
Location: Chicago
Posts: 11
Originally Posted by Cyberkiller
In config.php
I had to add
"p"=>1
"img"=>2

To the allowed html part

This allows the

& <img source> tags too be used, which is why my reviews weren't formatting properly.
I'm having the same problem, I added "p"=>1 "img"=>2 like he said, Now my reviews "Preview" correctly, but once their posted they return to the jumbled formatting and you can see all the html.

Check it out here:
http://rottenzombie.com/nuke/modules...owcontent&id=3

Like I said, it previews fine... I'm stumped. Below is my allowable html, let me know if anything's wrong. Feel free to try to post something so you will see what I mean about it previewing right. Thanks for any help

Quote:
$AllowableHTML = array("b"=>1,
"i"=>1,
"a"=>2,
"em"=>1,
"p"=>1,
"img"=>2,
"br"=>1,
"strong"=>1,
"blockquote"=>1,
"tt"=>1,
"li"=>1,
"ol"=>1,
"ul"=>1);
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 01-05-2006, 01:18 PM
Junior Member
 
Join Date: Oct 2005
Location: Chicago
Posts: 11
Is there another review module that anyone can recommend? I'm running phpnuke version 7.8

Apparently I'm the only one having the above problem after updating my allowed html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Reviews module name asdfghh Nuke 6.5 to 6.9 - Modules 4 10-11-2004 11:51 AM
Reviews module with search Polo Open topics 1 07-08-2003 04:32 AM
Easy fix on the Reviews module? Kristic Site design 2 06-13-2003 11:44 PM
Reviews Module needed to be modified Kristic Nuke 6.5 to 6.9 - Modules 2 06-13-2003 11:35 AM
reviews module, hack? reino4 Site design 11 05-26-2003 07:19 AM


All times are GMT -5. The time now is 06:33 PM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31