Hi,
I've tried BBCode and html to do italics within a quote, but when the quote shows up in my sidebar it displays the codes, not italicized text.
Thanks,
Paul
no text styling in Random Quote plugin
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: no text styling in Random Quote plugin
Hi!
Could you show us the page where this is happening? Did you enable BBCode for comments?
Regards,
Garvin
Could you show us the page where this is happening? Did you enable BBCode for comments?
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
Paul Czege
- Posts: 3
- Joined: Tue Jul 17, 2007 1:34 am
Hi Garvin,
Both Markup: BBCode and Markup: Serendipity event plugins are set to "yes" for Entry Body, Extended Body, Comment, and HTML Nugget.
See exposed BBCode appearing in quotes in the right sidebar of my site here: http://paulczege.nfshost.com/
Would actually prefer to use html, rather than BBCode for text styling in quotes if possible.
Thanks,
Paul
Both Markup: BBCode and Markup: Serendipity event plugins are set to "yes" for Entry Body, Extended Body, Comment, and HTML Nugget.
See exposed BBCode appearing in quotes in the right sidebar of my site here: http://paulczege.nfshost.com/
Would actually prefer to use html, rather than BBCode for text styling in quotes if possible.
Thanks,
Paul
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Aaaah, now I understand. Sorry, I somehow did not get the reference that you were talking about the Random Quotes plugin!
If you'd like to beable to pass raw HTML to the quotes, I suggest you editthe file 'serendipity_plugin_randomquotes.php' and search for this:
replace that with:
I could also add a configuration option to the plugin tomorrow, if the above is too complicated for you.
Bestregards,
Garvin
Aaaah, now I understand. Sorry, I somehow did not get the reference that you were talking about the Random Quotes plugin!
If you'd like to beable to pass raw HTML to the quotes, I suggest you editthe file 'serendipity_plugin_randomquotes.php' and search for this:
Code: Select all
$quotes_array[$i]['quote'] = htmlspecialchars(trim($exp[0]));
Code: Select all
$quotes_array[$i]['quote'] = trim($exp[0]);
Bestregards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
Paul Czege
- Posts: 3
- Joined: Tue Jul 17, 2007 1:34 am