Monday 25 July 2005 @ 9:26 pm
I have a random quote plugin to throw into the fray. It’s getting pretty popular now, thanks to everyone who uses it and says it doesn’t suck
Features
- It uses the database to store quotes, not a text file.
- It has a spiffy administrative interface (screenshot).
- You can call up a random quote, or a specific quote in your pages
- New: You can make a page with all your quotes.
- You can turn certain quotes “off,” without actually deleting them
- The quote layouts are done with CSS, so you can stick them anywhere and style them yourself (or follow my instructions below)
Installation Instructions
- Download the latest version (1.3) here.
- Get all the files out of the archive
- Copy the file wp-quotes.php to your wp-content/plugins/ directory
- Copy the file edit-quotes.php to your wp-admin/ directory
- Go to the Plugins section of your WordPress admin, and activate the plugin
- Go to the Manage section, and click on “Quotes.” It will create the database and add a few quotes to get you started.
- This part might be tricky. You have to decide where to stick your quotes, and modify the theme file to do it. Here’s an example for putting the quote in the sidebar like you see on this site:
- In your admin interface, go to the Presentation tab, then click on Theme Editor
- Click on the Sidebar Template link on the right hand side.
- Find out where you want to stick your quotes in the code, create a heading for it, then insert the following:
<?php wp_quotes_random(); ?>
API
wp_quotes_random();: Displays a random quote, in a div with classes as indicated in the installation instructionswp_quotes($id);: Displays a specific quote by quote ID. Useful if you want to embed a quote in a page, maybe?<!--wp_quotes_page-->: Putting this in any post or page entry will spew the entire list of quotes in your database
Of course, you can customize everything about this through CSS. Here’s the classes and IDs to use:
CSS Customization
- The Random Quotes
- The quote is identified and enclosed by a div, CSS element id wp_quotes.
- The actual quote is in a div, of the class wp_quotes_quote.
- The author is in a div, of the class wp_quotes_author.
- The Quotes Page (example)
- The quote is identified and enclosed by a div, class wp_quotepage.
- The actual quote is in a div, of the class wp_quotepage_quote.
- The author is in a div, of the class wp_quotepage_author.
- The horizontal rules are of the class wp_quotepage_hr. You can turn it off by setting
display: nonein the CSS. - The Powered By blurb is a div, of the class wpquotes_poweredby. I’d like you to leave it, but hey, I understand, so you can make it disappear just like the hr above.
The CSS I use on this site
#wp_quotes
{
margin-left: -10px;
}
#wp_quotes div.wp_quotes_quote
{
}
#wp_quotes div.wp_quotes_author
{
text-align:right;
font-style: italic;
margin-top: 5px;
}
div.wp_quotepage
{
font-size: 14px;
width: 80%;
margin-left: 40px;
}
div.wp_quotepage_quote
{
}
div.wp_quotepage_author
{
margin-left: 40px;
font-style: italic;
}
hr.wp_quotepage_hr
{
width: 70%;
margin-top: 15px;
margin-bottom: 15px;
margin-left: 15px;
}
div.wpquotes_poweredby
{
text-align: center;
font-size: 0.8em;
margin-top: 12px;
}
Revision History
- 1.3 - September 1, 2005
- Another css screw-up fixed, as well as proper instructions
- 1.2 - August 12, 2005
- The CSS class id wp_quotes was screwed up, this is just a fix for that.
- 1.1 - August 11, 2005
- Added the <!–wp_quotes_page–> for page of quotes functionality
- Now inserts a few quotes into the database
- 1.0 - July 27, 2005
- Initial Release!
Troubleshooting
- I can’t see the quote editing/adding form!: See this post.







[…] Here is a random quote plugin that let’s you manage the plugins yourself. […]
I get undefined function error. Where is the function ‘…random()’ supposed to be defined?
It’s defined in the wp-quotes.php file. Make sure you’ve activated the plugin on your plugins page. And make sure it’s wp_quotes_random().
If it’s still not working, let me know, maybe I can help you out more.
Works great! Thanks!!
I use it for now on a testsite, because i have to add 100 more quotes
I think there is a problem with the CSS, i added it to my theme-css, but it dont come up with the classes..,i will check it tomorrow.
it’s not working for me either. this shows up on my page:
It’s activated
Try removing the spaces from the tag code.
ie…
Use this instead
For some reason when exectuted the tag with the spaces fails to produce. It works once the spaces are removed. : )
Hey –
You’re absolutely right. There should be no space between the < and the ?. It should be <?. I’ve corrected the instructions, thanks for pointing this out.
I just started using Word Press. This was so easy to install & to start using. Thank you for a great plug-in
Thanks
I am using this on my site right now
http://www.thegoogleblog.com
I may be putting my quote list up for download in SQL and/or CSV format later this week (by 8/7 most likely). I’ve got a lot of requests for this, so people can start off with more than nothing. I’ll let you all know when that’s available and ready. I might create another plugin out of it.
OK great plugin, except I have a problem using it on my online blog.
Here is the background. One a WP blog set up offline on my home box it works OK. The blog is WP ver 1.5.1.2
My online blog is WP ver 1.5.1.3. The plugin activates and the table is in the data base as advertised. When I go to the manage > quotes screen it shows the “add quote” section empty. The title is there but no display of a text box or other options as my offline blog has.
Below that is the “manage quotes” section and obviously because no quotes are added as yet it just says “You haven’t entered any quotes yet.”
Is it possible the “Admin Tiger” (www.orderedlist.com) CSS I use for the admin section of the online blog is causing it? If so it would be the first time it has caused a problem and I use a very long list of plugins.
As I said I use a long list of plugins and if one of those is causing the problem it might be easier if you check this page rather than listing them here.
http://cranialcavity.net/fullthrottle/wp/index.php/comment-policy/wordpress-plugins-utilized/
Thanks.
Hey –
I tested it with the Tiger Admin (which is a pretty cool plugin, I might use it more often..), but it worked fine. Can you load the page up, and do a view source and send that to me at vermicin @t gmail d.t com? Or give me an account on there so I can troubleshoot it? I promise not to mess anything up
Dunstan I sent the source code you requested a number of hours ago, are you in receipt of it?
Since then I have re-installed the plugin but that has not cleared up the previously reported problem.
Hey Marc –
I tried to email you back, but it’s bounced several times. The source code looks fine, so I’ll need a login.. email me at the same address with the info and I’ll take a look at it.
(this section of the site is not live yet.)
The quote is working fine — but I can’t get it to “attach” to the stylesheet. I tried putting it in the theme’s style sheet, and I also tried putting it in the header of the index.php file.
Any suggestions?
Thanks
Ah, I figured it out. Styles are working now!
Great plugin!
Nice- was going to try something like this myself, but as life is short I gladly used yours (it’s better than I would’ve done anyway).
Couple of things that I think would help users (especially those not so clued up with how WP and MySQL work):
-> Mention in the installation that you they have to initialise the plugin.
-> Load an example comment into the db for users, otherwise a MySQL error appears (empty table) until you put somethign in there. That’d also make it clearer what’s going on in the admin.
-> Tell people where to find the comments in the admin.
Cheers. c*
That’s a great idea, chillstar. I’ll integrate that into the next revision!
Absolutely LOVE it! My only issues is thus:
I cannot get the author of the quote & quote on the same line for some odd reason. Let me know. Shoot me an email.
[…] wp-quotes […]
Say, way cool plugin!
I am not able to edit the css? I have added your css and still it seems it doesn’t apply?
Here is what it reads when viewing the source:
The most extraordinary thing in the world is an ordinary man and an ordinary woman and their ordinary children.
G.K. Chesterton
Any ideas on this?
tGriff
The most extraordinary thing in the world is an ordinary man and an ordinary woman and their ordinary children.
G.K. Chesterton
The source
Hmmm,
when I send the source it doesn’t show up on this comment.
The source says the div is named “wp_quotes\”" the div class=”wp_quotes_quote” the author is: cass=”wp_quotes_author”
Nice plugin! It’s fun to use.
One thing I’ve noticed (version 1.2) on my installation is that when I login and go to add a quote, it just returns to the Manage Posts page in the panel without adding the quote or giving any kind of message. However, if I click Edit for an existing quote and save it without making any change, then I’m able to add new quotes fine.
It’s odd, though, that no one else has mentioned this. Maybe it’s something with the way PHP is set up on my host (Dreamhost).
Also, another nice addition might be to add something like a “source” field, so that, in addition to the author, you could add the TV show, movie, or song that it comes from when quoting from such a source.
I downloaded version 1.2 but it is still labled as 1.1 in the file so I am not sure if it is indeed 1.2 mislabled or still 1.1
In any event, thanks for the great plug-in.
Also, I am embedding the quote into the sidebar like so:
I get xhtml validation errors, which seem to indicate that maybe it is expecting to return to a section?
Any suggestions how to edit your spew quote section to address that?
Matt: It should tell you that the quotes were added.. that seems like a weird bug.
xyth: yep, it’s mislabled.. its 1.2
I can’t see your code, so I don’t konw what’s wrong… but as far as I can tell, the xhtml is correct…
I looked at your site, and you have something like this:
<h2>heading</h2>
<ul>
{your stuff}
</ul>
basically, get rid of the UL tags, and it should validate fine .. the UL without an LI tag is an invalid nest in xhtml, so it’ll probably freak out
The ul tags are nested inside LI tags in my sidebar. If I remove the ul tags and leave the li, it validates, but the content is placed wrong. Just wasn’t sure if your code might be fussy if it landed inside a li / ul nesting. I will fiddle with it. Thanks again.
NM, went li ul li and that fixed it. FYI, still get a validation error on 1.2 that I don’t get on 1.0. It is not happy with how the Div id=wp_quote is being declared. Looks like a leading space is getting in there. However, 1.0 works swimmingly, so I’ll run with that. Cheers.
I was able to overload the wp_quotes_random function to take be able to pull quotes from a specific category. I had to make changes to the DB and the two files to handle the extra field “category”. This is a great way to separate be able to pull a random quote from only a portion of the list and still be able to access the whole list.
function wp_quotes_random($category = "any_category") {
global $wpdb;
$categoryMod = ($category == "any_category") ? "" : " and category='".$category."'";
$sql = "select * from " . WP_QUOTES_TABLE . " where visible='yes'".$categoryMod;
$result = $wpdb->get_results($sql);
if ( !empty($result) )
wp_quotes_spew($result[mt_rand(0, count($result)-1)]);
}
I would have sent this in an e-mail, but I couldn’t find an address.
What do I need to hack in order to make users with Level 6 be able to manage the quotes?
i found it: wp-quotes.php, line 24, change 8 to 6.
Nice plugin. Just a note, though. There is an extra set of quotes surrounding the variable $encloseDiv on line 66 or so. The wp_quotes_spew function prototype already has the qoutes passed as a parameter.
Keep up the good work!
You have a great little plugin here! Thanks a ton for the effort!! It’s actually a whole column in my blog.
Maybe if enough people plead nicely, you would add a few more fields and options? Like a ‘from’ field (as in, quote is from X book/etc.), a link field (to link to something related to the quote, if not a link option on ‘author’ and/or ‘from’), some kind of number field (for example my quotes range from 15 words to a long paragraph; if I could categorize them by length then maybe I could put an IF in the PHP and call a diff stylesheet option; or one could have categories of quotes and pull from one cat on a given page).
Thanks for the vool plug-in. It works fine for me but I can not vlaidtae the xhtml file. can you give me some hint. Thanks
Hi,
found the error finally. Please remove the ” ”
in the folwng function in the plug in
“>
Rrmove the “” in the above tag, in the function wp_quotes_spew. Cool Plugin.
Is anyone else having trouble getting the <!–wp-quotes_page–> to work properly?
[…] i’ve also been playing around with some wordpress plugins, one of which you can find at the bottom of the sidebar. it displays a random quote from the library i’m slowly building. it’s simple, well-done, and pretty. if you’re into that sort of thing, check it out here. […]
In section API you have <!–wp-quotes_page–> instead of <!–wp_quotes_page–>
I section API there’s a inccorect <!–wp-quotes_page–> instead of <!–wp_quotes_page–>
In the file wp-quotes.php, line 66, you have to remove the double quotes around to produce actually valid HTML.
My first plug-in. I don’t think that my future adventures with plug-ins will be as painless as this: even a doofus like me got it up and running in less than 5 minutes. Thanks.
[…] More Information and Download […]
hey, the isnt working, and nither is .
all i get is a blank screen after the title of the page.
any help?
I’ve only been working with Wordpress for a few weeks. Your plugin is just one more reason WP rocks!
Dude, you rock. Fantastic plugin… your work is sweet!! Thanks so much!
Matt (and Dustin), re: comment #24…
The reason you (and I) aren’t getting new quotes in appears to be that the post goes to edit.php instead of edit-quotes.php and so it goes nowhere. I’m using 1.3 and having the same behavior. I’m going to try and hack it into success, so wish me luck!
-Matthew
So it appears that the reason is that the URL from the submenu is /wp-admin/edit.php?page=edit-quotes.php and so PHP_SELF is grabbing /wp-admin/edit.php and leaving the page argument off. If you go to /wp-admin/edit-quotes.php instead, the form posts fine. Looks like somehow the plugin needs to differentiate?
I haven’t been able to fix it but at least this is a workaround…
This is strange. the quotes used to look like this:
Every government degenerates when trusted to the rulers of the people alone. The people themselves, therefore, are its only safe depositories.
-Thomas Jefferson, Notes on the State of Virginia, Query 14, 1781
Now they look like this:
Every government degenerates when trusted to the rulers of the people alone. The people themselves, therefore, are its only safe depositories.
Thomas Jefferson, Notes on the State of Virginia, Query 14, 1781
Any idea why? All I did was change servers.
Excellent plug-in, thanks! If you’re considering future-features, I’m in agreement with Palyne’s request in #34 for a “source” or “from” field in addition to Author, to identify a book/film/etc., and would be very pleased if future releases supported categorization per hofii (#30). Would be nice if the radio-buttons stuck on, too, so that they didn’t always default to visible=no when editing.
All that said, it’s working very nicely as it is
I cannot get the random quote display to ‘pick up’ the styling in my css file. I’ve used your own css with some colour for instance thrown in, but nothing changes. Your counsel would be appreciated. Thanks
[…] Bad Behavior (as previously noted - only two comment spams since installation) Easier custom field insertion when writing posts Easier display of custom fields in posts Random Quotes […]
[…] Damit die Maschine ein bisschen mehr zu tun bekommt, habe ich jetzt mal noch 2 Plugins für wp installiert. Es ist sicher aufgefallen, zumindest die übergrossen «Quotes» hier oben. Fragen sich sicher alle ob das jetzt die Überschrift ist… ein bisschen Verwirrung muss sein. Ermöglicht durch wp-quotes. Nice. […]
suggestion/request:
support for multiple quote databases. i’d like to call a random quote from one set in one place on my site, and another random quote from another distinct set in another place. and i’d like to do it without installing another plugin.
alternatively, is there a way to call a quote from a defined (by me) subset of my database?
thanks for a superb plugin. keep up the exemplary phping.
cheers
-matt.
[…] Random Quotes […]
Hello,
I downloaded and installed random quotes plugin, everything went well. Thanks to your concise directions, easily found the page to add quotes. Added a quote. Hit “Save”. Took me back to the first “Manage” page. Tried again. Hit “Save”. Same thing. It says “You haven’t entered any quotes yet.” I would try the editing existing quotes run-around if it would let me store any to begin with…tried deleting and reinstalling, to no avail. I’m using 1.5.2.
Upon further investigation, it dawned on me that the php file “WP_QUOTES_TABLE” is not being automatically created as needed, which is why nothing is happening when I submit a quote. If it is being created, I have no clue as to which directory it is being created in, and if is is the directory it needs to be in.
[…] wp_quote: Ein Plugin um zufällig ein Zitat aus einer Sammlung anzuzeigen. […]
Hi,
I like this plugin and I’m wondering if there’s any way to run two instances of it against the same database. After wp_quotes was running fine, I made copies of both files and named them ‘wp-jokes.php’ and ‘edit-jokes.php’.
Everything worked fine and the “manage” tab showed a “joke” interface as well, which created a database called wp_jokes.
Now, when I try to stick my jokes on sidebar, in this way: “” nothing is displayed
Has anyone tried anything like this?
I forgot to mention that i did a universal search and replace on both files (replaced every “quotes” with “jokes”).
Also, the block of code that I had posted wasn’t shown. It was “question-mark php wp_jokes_random”…
[…] The Random Quotes Plugin is pretty cool. Except I cant add anymore quotes sigh I was able to add one by changing the permissions. But now I cant add anymore ?? I dunno. I ‘m lost on that one lol I’d like to have a collection of them. As it is now, I can only have 4. […]
GREAT PLUG IN!
For those that are having trouble with the CSS not working … remove the extra #wp_quotes before the div entries .. see below:
#wp_quotes
{
margin-left: -10px;
}
div.wp_quotes_quote
{
}
div.wp_quotes_author
{
text-align: center;
font-style: italic;
margin-top: 5px;
color: #707070;
}
div.wp_quotepage
{
font-size: 14px;
width: 80%;
margin-left: 40px;
}
div.wp_quotepage_quote
{
}
div.wp_quotepage_author
{
margin-left: 40px;
font-style: italic;
}
hr.wp_quotepage_hr
{
width: 70%;
margin-top: 15px;
margin-bottom: 15px;
margin-left: 15px;
}
div.wpquotes_poweredby
{
text-align: center;
font-size: 0.8em;
margin-top: 12px;
}
All should be fine after that!
Best,
MLG
[…] Well, I went ahead and found a random quotes generator for my site that actually works, so I’ve added that to the upper right corner. Right now it’s mainly sayings from the Fathers and Mothers of the Desert, but I plan on adding more quotes later. I’m still having some issues where people using IE can’t see my Flickr photos, so I’ll try to figure that out when I have more time. […]
WordPress Random Quote Plugin
If you are looking for a plugin adding random part of text in your blog, look no further and get Dustin Barnes’ plugin.
It uses the database to store quotes, not a text file.
You can call up a random quote, or a specific quote in your pages
…
[…] Random Quotes […]
[…] Se non si è di sinistra a vent’anni e di destra a cinquanta, non si è capito niente della vita, diceva profeticamente Ennio Flaiano qualche decennio fa, accanto all’altrettanto profetica affermazionedel 1970Fra 30 anni l’Italia non sarà come l’avranno fatta i governi, ma come l’avrà fatta la TV. Dunque dunque, cosa hanno a che fare questi aforismi con il mio blog? Il nesso c’è. Da oggi, sulla barra laterale, sotto il link “Autore” è apparsa una piccola sezione dedicata alle citazioni. Grazie a questo grazioso plugin, è possibile inserire aforismi e citazioni nel blog per poi visualizzarne uno a caso. […]
Nice plugin - very easy to use. I’m not sure if it’s been mentioned - there are far too many comments to look through… but, it’d be good to have the option to pass a parameter to the functions that display the quotes which will put the quote/quotes into a PHP array as opposed to printing out the HTML so that we can use our own markup. For example, I want to be able to link the Author name to a web search and put quote marks around the actual quote…
Cheers!
Fantastic plugin for WP! Clear instructions, easy to install and exactly what I was looking for. Good stuff.
[…] Random Quotes […]
[…] Random Quotes […]
I am very new at this so bear with me. I followed your instructions and the quote shows up on my site. I added the css stuff to the css file. However the quotes are not showing with the css edits. Like the author in italized format. How do I put the “div.wp_quotes_quote and div.wp_quotes_author” in the sidebar so the customization works?
This is how I have it now.
Random Quotes
[…] Random Quotes […]
[…] right corner. There’s still a quote page if you want to see the whole list. [link] Relatedposts: […]
Your plug-in was totally painless to install. Thanks so much for sharing it. I’d been online EVERYWHERE to find one, since I don’t have the wits to create one, your treasure here is greatly appreciated.
Thanks!!!
[…] ZombieRobot’s wp_quotes plugin: offers me the capability to include random quotes as you now see to the top right corner of this site. What’s more, at any time I can edit the quote database from deep within the recesses of my WP’s system. In the future my hope is to either edit this plugin or find another one that will allow users to submit quotes for moderator’s approval that they believe I would find interesting and pertinent to my writings. […]
[…] Random Quotes功能:随机显示引用的精彩段子。 示例:本站首页上置顶位的随机显示引用语句。(也可放在侧边栏。暂已停用) […]
I made an add-on to Random quotes.
Added code is (to insert at bottom of wp-quotes.php) :
define('WP_QUOTES_BEST', '');
function wp_quotes_best_quote($data) {
$start = strpos($data, WP_QUOTES_BEST);
if($start!=false) {
global $wpdb;
$sql = "select * from " . WP_QUOTES_TABLE . " where visible='yes'";
$valid_quotes = $wpdb->get_results($sql);
$scores_array = array();
foreach($valid_quotes as $quote) {
$quote_score = 0.0;
similar_text($data, $quote->quote, $quote_score);
$scores_array[] = array($quote, $quote_score);
}
$selected_quote = $scores_array[0];
foreach($scores_array as $quote_infos) {
if($selected_quote[1]" . wp_quotes_spew($selected_quote[0]);
}
return $data;
}
function wp_quotes_insert_head($content) {
print("\n\t\n");
}
add_filter('the_content', 'wp_quotes_best_quote', 95);
/*
Adds action to insert stylesheet
*/
add_action('wp_head', 'wp_quotes_insert_head', 95);
Once this code is inserted, adding “” will include dynamically in the post tthe best matching quote, according to the “similar_text” php function.
I use it on my blog, and it works nice, expected that the quote is inserted at the post beginning (??? maybe a bug in my code)
[…] Random Quotes v1.3 by Dustin Barnes - Nice little plug-in which allows you to display random quotes. Also comes with a simple admin interface for managing quotes. You can see random quotes on the bottom of my side bar. […]
Thanks a lot for your nice little plugin. It works very well and it’s very easy to use.
I have modified the latest 1.3 version in order to add a wp_quotes_daily_random() function that displays a random quote of the day (it means that the same random quote will be displayed all day long). If you are interested in the modifications I have made to your code, you can get the modified files here:
http://www.neirrek.com/wp-quotes/wp-quotes-1.3-with-daily-quote.zip
(all modifications are commented and pointed by a — ADDED — or — MODIFIED — ‘tag’)
You just have to replace the 2 files in your WordPress plugins and admin directories and the plugin will automatically be updated. Then replace your call to the wp_quotes_random() function in your template by a call to the wp_quotes_daily_random() function in order to see the result (the same quote is always shown, even if you refresh your page). Don’t hesitate to integrate this feature to the next version of your plugin if you find it useful
[…] Pour ce faire, j’ai installé la version 1.3 du plugin Random Quote pour WordPress développé par Dustin Barnes à laquelle j’ai apporté quelques modifications afin d’afficher une citation du jour aléatoire plutôt qu’une citation aléatoire changeant à chaque rechargement de la page. […]
[…] www.zombierobot.com/wp-quotes/ […]
[…] 要把 Quotes 给弄回来。因为之前使用的 Another Random Quote 插件每次显示的字符数有限,一些句子都是精简过以后录入的,所以这回换用 Random Quotes 之后干脆都录入完整版本的。 […]
can this be modified to display one different quote per each day?
Hi, thanks for this nice plugin.
I’m looking for a quotes manager that would optionally match the quote table against the post’s tags for each post; any idea? Ideally, it would interface with Ultimate Tag Warrior. Given the current tagomania I thought this could be popular…
[…] I use the Random Quotes plugin which allows you to embed random quotes into your pages. In case my visitors don’t realize that a random quote is generated every time the page is refreshed, I added the following code to my K2 theme sidebar.php file, right below the About stuff. […]
[…] I’ve add two new plugins I hope you like them. One it the poll plugin. You can have a poll on your blog and people can vote on stuff.. The other one is a Private Notes which is like PM’s on a Forum. Update I’ve add some more plugins.The CA-Credit Plugin it thanks your guest for their comments. The Random Quote Plugin which gives you a random quote everytime you refresh. The Sticky Plugin which will keep a post on top. [link] […]
[…] 较原来的模版,又在sidebar里加了点东西: My Bookmarks,Photos,books,movies,引用|声音。增加了插件:wp-quotes(见引用|声音),comment_hacks。 […]
I updated to WP 2.0 tonight and its given me some weird activity with this plugin. When you go directly to a page it displays the quote just fine (its in my Heading if you want to look. Click to another page, then push the “Back” button and it gives me an undefined function error. Hit reload and the page is again shown fine. Any ideas?
Hmmmm….I played around with the new 2.0 installation of WP tonight and this issue seemed to have disappeared for me after I updated the Permalinks settings (no change made to it, just updated it). You can check out how I use your plugin at http://lostinafog.com/blog. Thanks for a cool lil plugin!
Hi,
I was wondering is there a way for there to be “section” like a category for the quotes? That way if someone were to put or something like that, then only those quotes from that category would display. Is that possible ? Thanks…
wow, this plug in was super easy to install and I usually can’t ever get plug-ins to work!! Thanks for sharing, I love it!
Got it working, was very easy.
I also modified it to provide “Quote of the Day” instead of random quote. I only have 31 quotes in the database right now, but will continue filling it until there is a years worth. Then I’ll set it julian date instead of day-of-month.
Great plugin!
Thanks from me, too.
Can you say more about how does the randomizer work? I have about 200 quotes; some seem to appear more often than others, though that could simply be my misperception.
[…] WP-Quotes that picks up random quotes from a repository and lets you display anywhere in your template. The quotes are stored in a database and a polished admin interface is provided to handle the quotes. It provides features like disabling certain quotes without deleting them and displaying the quote using CSS, so you can control it completely. In addition to this you can pick up specific quotes or all the quotes. […]
Hi,
This would be cool :
Having the ability to import Quotes from a file or RSS feed. With the files it would be cool if it alowed for a file on the web and or a file on your computer. With bolth it would be cool if it allowed for the quote autor importing too. It’s an idea.
Great plugin. I’m using it on my site and thanks for the hard work you’ve done.
As an assist, I thought I’d point out that some browsers don’t like underscores in CSS definitions. Using underscores in div’s might not be the best idea. Just a heads up!
Thanks again.
Blast
[…] Random Quotes功能:随机显示引用的精彩段子。 示例:本站首页上置顶位的随机显示引用语句。(也可放在侧边栏。暂已停用) […]
thank youuuuuuuuuuuuuuuuuu
is there someway to just pull in the quote or part of the quote and not all the other stuff? and what about just the quote and not a wrapping div tag?
I’d like to be able to grab the first 5 words of a random quote and display it inline, and link it to my quotes page that shows all the quotes.
possible? Ideas on how? Help appreciated!
[…] Random Quotes 随机显示名言功能,可以自定义,效果见本Blog首页顶端的内容,每次刷新更新内容。 tags: list, plugin, wordpress […]
[…] Random quotes now handled by Random Quotes rather than my own code. […]
I have a question how do I change the perfix of the Database “wp-quotes” to “wp2_quotes” because the DonkieQuotes also used the same perfix.
Tell me which lines and which files I have to change.
Thanks
Rocky
I have a question how do I change the database or files so it doesn’t conflict with my other plugin DonkieQuotes which using the same name. Tell me which lines or files I have to change.
Thanks
Rocky
What’s the character limit of the second text box? Is it possible to get rid of this limitation?
[…] 6、Random Quotes 如侧栏所示,用来随机显示摘录的言论。 […]
[…] ik gebruik nu WP Quotes, te vinden op Zombierobot […]
[…] Various plugins to make things easier on me (adsense, mutunes, kramer, Google Sitemaps, Random Quotes) […]
[…] […]
upgraded to WP 2.0.2 and have a weird new problem. When I go to the Manage page and click on “quote” which used to take me to a nice page to manage my quote list and add new ones, now it takes me out of admin to my front page….hmmmm…any ideas? It says the page is my …wp-admin/edit-quotes.php page….but it isn’t
once again I have discovered that the mere fact of posting my problem here leads to a quick fix. I’d deleted the edit-quotes.php file during the upgrade, leaving my wp installation thinking I was nuts. I am nuts, but the problem is now fixed. Thanks…I guess…
I really love this plug-in and use it to keep my header file always different (at least to the tune of 76 quotes so far).
[…] I like a rotating description under my blog title, so I grabbed wp_quotes, a WordPress plugin that grabs random quotes from a list you enter, and replaced the part of the header template that says <?php bloginfo(’description’); ?> with <?php wp_quotes_random();?>, but the random description wasn’t toeing the style line no matter how much I edited the header template. It turns out the documentation admits to a double-<div> wrapper in <?php wp_quotes_random();?>’s output. The extra <div>s kind of negate any styling you try to apply to the quote, and though you can define the styles for wp_quotes’s <div>s, I found it easier to stumble around in the wp_quotes php and erase the extra code it puts around the quotes. This is probably un-semantic and poor coding practice, but it makes things less annoying for me. […]
I like it! Much appreciated!
Is there a max number of quotes you can add?
(I thought I read it somewhere, but can’t find it again.. sorry).
Little bug :
edit-quotes.php now is supposed to be in the admin area, but every time there is an upgrade for wordpress the admin area is deleted. Edit-quotes.php should be placed in a directory like “wp-quotes” with the plugin file too.
Other then that good plugin!
[…] ik gebruik nu WP Quotes, te vinden op Zombierobot […]
I’ve taken Rick Dooling’s mod of your plugin to add a category or topic and expanded it to add another function to display the quotes in a category. I’m not sure how many new features you are adding to your plugin, but if you want to see mine, please email me.
Thank you, jim
[…] Men nu kører den store chucknorrisfacts.com quote randomizer som jeg selv har modded med en quotes db fra zombierobot så må vi se om jeg finder nogle andre interessante mods osv. senere. Om ikke andet så er det jo stadig sjovt. Og det er det! […]
[…] This site now has a random quote displayed after the random picture. This was taken from : http://www.zombierobot.com/wp-quotes/ . […]
[…] Curious, I checked out WP-Quotes WordPress Plugin and found that I really liked it. And since I now needed a replacement, it was worth the try. […]
How about widgetizing this plugin?
[…] Random Quotes 推荐指数:★★★功能:随机显示引用的精彩段子。 示例:已停用。 […]
gratz on the plugin, I am very much looking forward to getting it working.
Using: WP v2.0.2 and wp-quotes v. 1.3
I uploaded the 2 files and activated the plugin in admin. However, when I go to the ‘manage’ tab I don’t see anything about quotes.
Do I need to adjust permissions? If so, where and to what? If not, any suggestions as to what else I am doing wrong?
Thanks!!! Email me or post your replies. I greatly appreciate it!
[…] Random Quotes 功能:随机显示引用的精彩段子。 […]
I appreciate your plugin! Thank you very much!
[…] Random Quotes功能:随机显示引用的精彩段子。 示例:本站首页上置顶位的随机显示引用语句。(也可放在侧边栏。暂已停用) […]
Thanks for the great plugin! I use WP 2.0.2 and it works without problems. @benjo: No adjusting of permission needed.
I decided to use your plugin not for quotes, but for proverbs and sayings in english-german =) Nice idea, huh? Thanks again for my new plaything that I can now fill up with all my already collected proverbs, sayings, idioms and stuff…
Great plugin, thanks! A couple of notes: I’m trying to use this to display 2-3 specific quotes on specific pages. To achieve this, I’m using conditional statements, like this:
if ( is_home() ) {
wp_quotes(’7′);
echo “”;
wp_quotes(’5′);
echo “”;
wp_quotes(’6′);
echo “”;
}
elseif ( is_single(’advice’) ) {
wp_quotes(’8′);
echo “”;
wp_quotes(’9′);
echo “”;
wp_quotes(’10′);
echo “”;
}
else {
wp_quotes(’7′);
echo “”;
wp_quotes(’5′);
echo “”;
wp_quotes(’6′);
echo “”;
}
This works fine on the home page, but on the ‘advice’ page, nothing is displayed. I know the conditional code is working though, as I can insert echo “Yes, this is the advice post!” and it prints as expected. I do have quotes with those IDs inserted in the DB. Any ideas as to why I can’t get the quotes to display on other posts?
A few people mentioned validation errors. I experienced this as well because I was calling multiple quotes on a given page, resulting in multiple DIVs with the same ID. To remedy, I simply opened the plugin file, and edited line 63:
function wp_quotes_spew($quote, $encloseDiv=’class=”wp_quotes”‘, $quoteDiv=’wp_quotes_quote’, $authorDiv=’wp_quotes_author’)
(Note use of “class” instead of “id”.
cheers
SAM
UPDATE: Conditional statements and wp_quotes does work with pages:
if ( is_home() ) {
wp_quotes(’7′);
wp_quotes(’5′);
wp_quotes(’6′);
}
elseif ( is_page(’about’) ) {
wp_quotes(’8′);
wp_quotes(’9′);
wp_quotes(’10′);
}
I just can’t get wp_quotes to work with a conditional statement based on single posts:
if ( is_single(’advice’) ) {
wp_quotes(’8′);
wp_quotes(’9′);
wp_quotes(’10′);
}
Quotes are not displayed on the post ‘advice’. This works though:
if ( is_single(’advice’) ) {
echo “Success!”
}
Does anyone have this working with is_single?
TIA!
SAM
I love this so much, but now we need a widget. No one else has a quote one - except that Simpson thing, and who wants Bart?
[…] Plugins: Spam Karma 2 - Trackback und Comment Spam Bekämpfung WPG2 - Worpress / Gallery2 Integration Random Quotes - Zufällige Weisheiten […]
Great plugin and great interface to manage it!! really a nice work.
I use WP 2.0.2 and wp_quotes 1.3 and it worked all flawlessly, no change of permission needed, but then I installed it via ssh and not via ftp …
Just a feature request: I agree with many other that would like to see also a category field, so that I could show only certain categories on certain pages.
is it possible to use your CSS quote generator in Myspace.com? i’ve been trying to get one working for a while, but their sites don’t allow java. just not sure where to upload the file for the test itself. let me know if you have a workaround for this
[…] [Update]: Sweet, I got a random quote selection plugin, installed it, and modified the header to use its output instead of the site description. This newfangled blog technology is themoney; I wish I’d started using it sooner. […]
Great all works fine. Took a moment to figure I had to drop the CSS code into the template CSS file but i got there in the end.
I would love an additional upload function to add a whole quotes file to the database. I imagine even I could do that via MySQL but I won’t get around to it and I have hundreds of quotes….
Disregard my issue with single posts! It was a conflict with another plugin.
I love this plugin, but I am have a trouble adding quotes to the database. When I click on save, it takes me back to the manage posts page and doesn’t save the quote. I got lucky one night and was able to save several, but now it won’t let me again. Any suggestions?
[…] Random Quotes: This plugin allows you to embed random quotes into your pages. Being used in the bottom right corner for the Shakespeare Quotes. […]
[…] Zombie Robot wp_quotes: Random Quote PluginIt uses the database to store quotes, not a text file. It has a spiffy administrative interface (screenshot). You can call up a random quote, or a specific quote in your pages; New […]
[…] А плагин этот называется Random Quotes. […]
I am getting validation errors when I put this code into my sidebar:
Classic Quotes
Error Line 233 column 26: document type does not allow element “div” here; assuming missing “li” start-tag.
Error Line 236 column 5: end tag for “li” omitted, but OMITTAG NO was specified.
Gah, sorry about double posts…I fixed it anyhow.
BTW I have a nice suggestion for this great plugin. It would be cool to be able to post a quote, without the author, and the user can click the quote to see who the author is - kind of like a little quiz. They can guess before clicking to see author.
Also, a way for users to input quotes.
Sweet plugin! Even cooler that one is able to enter/manage quotes while wp-quotes.php is deactivated. Just one question: Is it a bug or a feature that edit-quotes.php then creates a new table called WP_QUOTES_TABLE and stores stuff there?
Thanks for this plug in the runners on our site will enjoy the motivation they get from our daily advise.
I’m having the same problem Tammy has. I can’t edit the quote database at all - either to add new quotes or remove the provided ones.
I’m using WordPress 2.0.2.
Thanks!
Cyn
I’d like to use this plugin, but what I really need is a function to pull the first [n] characters from a random quote and to have that link to call up the quotes page with that quote displayed.
So, if you are monitoring these comments, could you indicate whether or not this is possible? How would you go about it? Any chance you are going to update the plugin with new functions like these? I’d pay to get them.
[…] 1) live comment preview. there is no respectable blog without it anymore 2) new smilies. they are hilarious, and time-saving too! 3) random quotes at the bottom. for those that take the pains to scroll all the way down, some comic relief. 4) Wetfloor, a plugin that gives a partial reflection of whatever images you may have in the post. […]
could you consider adding methods to sort the quotes by author? That would SO rock. I’ve modified the plugin to work with a “short” version of the quote and author so that I can display a “teaser” of a quote that is clickable to the page. I’ve also managed to modify the management of the data to incorporate it into the add/edit functions.
I just duplicated your random and spew functions, renamed and made a few mods to the output structure to accommodate where the shortened “teaser” data is displayed… AND I have managed to set up a link around the shortened teaser output that passes the quoteID value.
quoteID; ?>” title=”quote); ?> - author;?>”>shortauthor ?> shortquote); ?>
It seems to be passing the right value (I’ve compared the number against that of the quote in the data table)
??? But how can I GET the value passed as “x” to the quotes page and either have that be the first quote shown OR show that as a single quote (above the loop?) and then follow up with the regular spew.
So,
1) would love it if you set up some way to sort by author
2) if you can help me/make suggestions on how to GET the value I’m passing from the linked teaser text and use it in
BTW, it would be nice if the comments here were most recent to past, rather than the opposite…
Cool plugin. Thanks
[…] まず、Zombie Robotから上記プラグインをダウンロードして、解凍します。 […]
I downloaded this plugin, but for some reason, I cannot get the quotes to display when I put the line into a text widget. Is there no way that this will work?
[…] I just installed a great WP plugin, wp_quotes. You’ll see it in the sidebar to the right. I’ll add some quotes to the database, it only has 3 different quotes now
(No Ratings Yet) Loading … […]
I install the mod and everything works good on the index page, but the script has an error if you try to go to any other pages and says that it’s a fatal error, undefined function.
How can I fix this?
wp_quotes_page does nothing so far as I can tell. I see that you have an example of it running on this site, but nothing I’ve tried works. I’m using wordpress 2.0.2
If you want one of those annoying scrolling texts, replace the div-stuff under ‘* Actually spews a quote’ in wp-quotes, with this:
>
“>quote; ?>
author) )
{
?>
“>author;?>
(I just added the marquee tags and removed the nl2br-function)
scrolling text:
>
“>quote; ?>
author) )
{
?>
“>author;?>
never mind. don’t know how to display this code here. sorry. zombierobot?
BTW: I’m having the same problem Cynthia and Tammy have. I can’t edit the quote database at all - either to add new quotes or remove the provided ones.
I’m using WordPress 2.0.2.
I made a crude solution, though: http://www.robertbuzink.nl/journal/2006/06/15/form-to-upload-quotes-for-wp-quotes-plugin/
If you want SCROLLING TEXT quotes with wp-quotes, see: http://www.robertbuzink.nl/journal/2006/06/15/wp-quotes-scrolling-text/
hi Dustin,
I found out why for some people the adding of quotes to the database doesn’t work. It’s the action = statement in the form (line 317 in edit-quotes.php). It sends the form-data to the same page the form is on. When the url is like this: ‘wp-admin/edit.php?page=edit-quotes.php’ it gets fucked up. When you replace this with ‘action=’edit-quotes.php’, everything works just fine.
ok Dustin,
Forget about the stuff above. The only solution I found to the inability-to-add-quotes-problem is making sure the address is ‘wp-admin/edit-quotes.php’ and not ‘wp-admin/edit.php?page=edit-quotes.php’.
Replacing the form-action and even redirecting in .htaccess don’t work
I’d like to second mAtt’s idea from Oct. 25, 2005 - I’m using this for random taglines, but I’d also like to be able to have a quotes page/database, and I’d like them to be separate.
So, being able to manage distinct “groups” or “categories” of quotes would be useful.
[…] Zombie Robot ” wp_quotes: Random Quote Plugin … You can call up a random quote, or a specific quote in your pages … quotes “off,” without actually deleting them. The quote layouts are done with CSS, so you can … […]
If you have a lot of quotes like I do, wp-quotes can get a slugish when displaying a random quote due to a poor SQL query. I made a little change as follows (use this to replace the old
wp_quotes_random()function:function wp_quotes_random()
{
global $wpdb;
$sql = “select * from ” . WP_QUOTES_TABLE . ” where visible=’yes’ ORDER BY RAND() LIMIT 0,1″;
$result = $wpdb->get_results($sql);
if ( !empty($result) )
wp_quotes_spew($result[0]);
}
The difference is that the old query pulls all fields on all rows (in my case approaching 1k) and selects 1 at random. This query selects 1 random quote. Should also cut down on memory consumption in cases with large quote databases.
IMHO it’s a worthwhile and quick fix. Hope this helps anyone optimizing their blog.
Hey Dustin!
Great plugin you have here! I was wondering you’re specifically checking for “admin” access before letting someone view this on the Manage toolbar. If so, could I make a change so that “editors” could see that as well. If so, where would I make that change at?
Thanks!
Sorry, the above is wrong (likely will be a bit slower as it creates a temporary table in memory)…. but this seemed to help me out:
function wp_quotes_random()
{
global $wpdb;
$offset = $wpdb->get_results( ” SELECT FLOOR( RAND()*COUNT(`quoteid`) ) AS offset FROM ” . WP_QUOTES_TABLE);
$result = $wpdb->get_results( ” SELECT * FROM ” . WP_QUOTES_TABLE . ” LIMIT ” . $offset[0]->offset . “, 1 ” );
if ( !empty($result) )
wp_quotes_spew($result[0]);
}
Yes it’s 2 queries rather than 1, but both are very fast and won’t pull several hundred records.
This is likely slower if you have a smaller database, or a lot of RAM because of the extra query. But if you don’t want to retrieve everything to display 1 query, this is the best route.
[…] Random Quotes very simple and smarty plugin for diplay random quotes I installed. […]
[…] Random Quotes - I like this, always will - have a look at some of the quotes at the bottom of this page. This is whistle… but sometimes fun. […]
EXCELENT!!!!
THANK YOU FOR SHARING THIS!!!
Gracias..
RANDOM QUOTES RULES!!!!!
Saludos.
[…] As I suppose I’m not appending too much content frequently in here, I’ll try to use some plugins and tricks to make the site look a little more dynamic. For now, I’ve just implemented Dustin’s Random Quote Plugin version 1.3; I just hope I’ll remember to update the plugin in the future, for I’d like the randomizing engine to be more effective using the MySQL rand() feature, just like Dustin has told it would be in the future. […]
[…] […]
[…] Szukałem pluginu do Wordpress’a, który umożliwiłby mi wygodne zarządzanie cytatami i ich wyświetlanie na stronie dokładnie tak jak chcę. Ostatecznie mój wybór padł na Random Quotes. […]
I have the same problem as thomas, commenter #150
“I downloaded this plugin, but for some reason, I cannot get the quotes to display when I put the line into a text widget. Is there no way that this will work?”
I’m using the Tarski theme. Can anyone help… please?
WOW! Just what I wanted…and simple to put in my blog.
Thanks!
[…] Ripristinate le citazioni random e con l’occazione ho cambiato il plugin passando a wp-quotes. […]
[…] Zombie Robot ” wp_quotes: Random Quote Plugin Categories. Monthly Archives. Random Quote. The problem with defending the purity of the English language is that English is about as pure as a cribhouse whore. … You can call up a random quote, or a specific quote in your pages … quotes “off,” without actually deleting them. The quote layouts are done with CSS, so you can … technorati tags: Quote Stock Quote Auto Insurance Quote Freight Quote Health Insurance Quote […]
[…] Zombie Robot » wp_quotes: Random Quote Plugin wp_quotes: Random Quote Plugin (tags: wordpress plugin quotes plugins wp_plugins database blog plug-ins lazysheep) […]
Is there some way to have the full page of quotes show the quotes in random order so that the last quote may sometimes be somewhere else than last? s
Also, I’ve modified the functions and db table to include a short quote and “author says” field that I’m using as a quote “excerpt” in the top of all pages. I’m using nifty to show the full title text on hover — and whenever there’s a formatted line break in the quote, it’s displaying a . I’ve tried formatting the quotes using the character entities but it still just displays that.
I even tried using \n like you might use in javascript to force the line break instead of but alas… no joy. Maybe I’m doing it wrong? Ideas, anyone?
help much appreciated,
Casey
BTW, it would be nice if your comments were organized the opposite way - newest to oldest. imo.
[…] Random Quotes […]
Why do you use an enumerator instead of a boolean value to indicate whether a quote is visible?
Nice one,
How about a form for users to submit quotes. captcha protected if possible…
:)
One of the easiest plugins to install and use.
Would have been even better if it used semantically correct
Love it - thanks!
Hey,
Your plugin doesn’t work with the latest WordPress Sidebar Widgets plugin (1.0.20060711)
[…] Nuestro sistema de rotación es en una adaptación del genial plugin Random Quotes. […]
[…] Random Quotes Per inserire testo “random” all’interno della pagina […]
[…] Random Quotes 1.3 This plugin allows you to embed random quotes into your pages. It also has a spiffy management tool in the administrative console. By Dustin Barnes. […]
When adding a new quote and pressing submit I sometimes get thrown to a Manage>Posts page and quote is not added. At that time I can repeat submitting again and again and always the same.
What I need to do is edit an existing quote and save it and then add a new one and this way it works. But it does not happen always.
Great plugin! Thanks.
[…] Random Quotes 随机显示小短句,不能放到BLOG里面的可以扔到里面 […]
fff
[…] I’ve installed a number of new plugins, an in-page lightweight mp3 player that let’s me link to an mp3 and people can download the mp3 or play it directly from the page. I also installed wp_quotes which does the little random sub-header at the top of my blog. I installed breadcrumb navigation, which, actually isn’t all that impressive. I’m not sure how useful that is. […]
any chance on getting an update to work with the latest wordpress version with widget support?
[…] I have a new toy. Look to your right on the sidebar for the Quote of the Day. I was wanting a quote program that would let me put in my own quotes. If figured someone had to have had the same weird idea as me and I was right. Zombie Robot has a word press plug in that was simple enough for me to understand it. Now I’m off to start finding quotes! […]
Um, I don’t really know my way around CSS, but I’m hoping you can help me.
I want to implement this plugin, and have the text output in my footer, as a sort of subtle dynamic area. I have the plugin installed, and functioning, but I have no idea how to style it so that all I get is plain text. Ideally, the text would be subject to the same CSS that the rest of the footer text is, but I can’t figure out how to make that work.
Any ideas?
[…] Added a quotes plugin and added some quotes (about 50 quotes) to the plugin. […]
[…] Jeg snublet over Zombie Robot sin plugin for sitater i går kveld, og tenkte jeg skulle legge til dette på XmasB.com. Denne plugin tar ting litt videre enn andre plugins i det den bruker MySQL for å lagre sitatene. Full styring over sitater finnes dermed for admin av siden, og man kan legge til eller fjerne sitater fra en side. […]
[…] I was looking for a quotes plugin to put a random tagline in the title of the blog, and came across wp_quotes. It works pretty good, but doesn’t display just plain quotes - it’s used mainly for taglines or just a “random quote” thingy on the sidebar. Small edit of the php fixed that: […]
Hey Dust,
The plugin worked pefectly, no problems at all! I was able to install the 1 line of code nicely into my sidebar. Thanks!
[…] Random Quotes: I love this. It’s designed to display a random quote from a list you make in a handy admin-panel interface, but in theory, I think it could be used to display random images or other hunks of code. I use it for the different ‘About’ blurbs you see on the top right corner of this site. […]
Thank you, this works really well. It’s easy to customize and I love the humor in the control panel’s responses.
This is great. The Random Text plug-in ceased to work when I switched my hosting to GoDaddy, but this plug-in works great. I just wish I could have multiple instances running. I like to have my blogtitle rotate as well as the descriptions. If anyone knows how to do this (changing the database in the code?) let me know.
[…] Functionally, the site runs on the open source wordpress blogging cms. In addition, I’ve also added the official comments plugin and the random quotes plugin. The wordpress implementation is fairly straightforward, two exceptions being custom page templates for each section and some header tweaking to produce the navigation visual elements. […]
is there a way to have two calls one in header and one in sidebar and have each one call only certain quotes ? I tried to use exclude=1 but didn’t work
I’m just getting started with wordpress and have installed wp-quotes only to get the message ‘no input file specified’.
Now i’m just guessing here, but since i’m hosted by godaddy, i need to make another MySQL database through their interface and point the script to look at that DB - any idea what i’d change in the script to do that?
This looks great. I’ll be putting it to use right away!
I Can`t get it to work with the latest version of WP…??
I can activate it, but i do not see it in the Manage section.
PIP
[…] Random Quotes: Para colocar citas/frases aleatorias, viene con panel de administracion. […]
[…] Random Quotes […]
[…] Random Quotes - This plugin allows you to embed random quotes into your pages. […]
[…] As you can see now, on my sidebar, down down at the very bottom…i’ve found (and managed to install) a nice plugin: Random Quote, which you can download from here […]
Hey
Thank you for the plugin, very nice and easy to install and use.
The ‘default’ quote:”An invasion of armies can be resisted, but not an idea whose time has come.” is from Victor Hugo, in ‘Histoire d’un crime’, if you were wondering
Cheers,
Giacomo
GREAT! this is perfect… only one thing, how can i make the quotes page to apear in random order?
[…] Wieder konnten ein paar Punkte aus der Todo-Liste abgehakt werden. Mit der Hilfe von Google, del.icio.us und WordPress.org kam ich auf eine Vielzahl nützlicher Links, die mir auf der Suche nach brauchbaren Plug-ins weiterhelfen konnten. Installiert wurden unter anderem: SimpleTags: Dieses nützliche Tool erleichtert das Tagging bei Technorati. Was ein Tagging ist? “Think of a tag as a simple category name. People can categorize their posts, photos, and links with any tag that makes sense.” Mehr direkt bei Technorati Help. Related Posts: Zeigt unter jedem Beitrag verwandte/ähnliche Inhalte auf dem wortspielzeug-Weblog an. WP-ContactForm. Eine einfache Art und Weise, um in WordPress in Kontaktformular zu implementieren. Random Quotes: In der Navigation unterhalb von Menu finden sich seit heute Zitate zu Themen, die hier auf wortspielzeug.ch (mehr oder minder intensiv) behandelt werden. Die meisten stammen bis jetzt aus dem Buch Exploratives Lernen von Verena Steiner. […]
Good work!
Hey! I’ve managed to install the plugin and get it working, but I have a problem. I have called the plugin in my tagline in my header.php. However, it doesn’t retain the CSS formatting for the div class, which results in the text being unreadable as its hidden by my banner image (the CSS makes the text be indented by using padding). I’m guessing this is a problem with PHP because the same thing happens using Witty Text plugin too. Curiously though, the default Wordpress tagline of bloginfo(’description’); works and accepts formatting. I don’t suppose you can shed any light or know of a way to force it to accept the CSS formatting? My humble thanks to you, Leon
[…] Random Quotes […]
[…] Random Quotes by Dustin […]
I tried putting the code in a text field through the sidebar widget editor - doesn’t work
[…] AdSense-Deluxe -an easy way to organize google ads. CG-SameCat -generates a list of pages in the same category. Category Order -customize the order and hierarchy of categories. WP-EMail -email posts to a friend. Feedburner Feed Replacement -directs RSS feeds to feedburner. Google Sitemaps -creates a Google-friendly sitemap. Bookmark Me -those multi-colored links you see everywhere. Tags in the Head -a way customize meta tags Top 10 Posts -counts post views and lists the top 10. Underscore Permalinks -uses _ instead of - in permalinks. Ultimate Tag Warrior -organizes tags for each post. Random Quotes -those random phrases just below the header. Contact Form -a simple contact form. […]
[…] Random Quotes […]
[…] Web Marketing Advisors is the e-commerce consulting practice of Matthew Costello. Matthew was previously using Bosco, one of my free Wordpress themes, and he asked me to customize it with his own logo and some different colors. We also incorparated a couple of plugins, such as the Filosofo Home Page Control plugin (for a custom home page), and WP-Quotes (for the random quotes in the site header). […]
need a wesite for myspace!
Does not work on my site (WP 2.04)
PLugin activates, can see the Manage|Quotes interface and database created but adding a quote fails (nothing happens) and attempts at deleting the builtin 3 fails - 404 error
Sorry. My bad. Misread the directions. Forgot to put the edit file in wp-admin …
come fuck me
Very nice plugin. It would be nice if the specific quote function had a function call so that we don’t have to run PHP inside a post. Something like:
[quote=ID]
[…] Hopefully you’ll like it, too. -Technorati Tags: Uncategorized- -Dave no comments trackback this article comment on thisarticle […]
[…] I read about quite a few quotes plugin here and I am listing down few of them which I found interesting … - Random Quote Plugin - DonkieQuote - Yet Another Random Quote - Yakuter Random Quote Plugin […]
[…] Zombie Robot » wp_quotes: Random Quote Plugin […]
Thanks so much! I love this AND I was able to figure out the CSS.
The user-frendliest wordpress plugin ever!!! Thank you very2 much for this great plugin!!
Hi, I installed exec-php along with your plugin for quotes (as well, utterquote, so don’t know if this should be deactivated so as not to interrupt yours, I think i did deactivate the utterquote), ok, so I am supposed to be able to create “in post” codes, and so entered this:
I had already tried it without the tags but no luck.
When I publish the post, i receive this error notice:
Parse error: parse error, unexpected T_LNUMBER, expecting T_VARIABLE or ‘$’ in /home/www/clafra0.100webspace.net/wordpress/wp-content/plugins/exec-php.php(75) : eval()’d code on line 1
PS: doesn’t work either.
Thanks for your help, that’s a lot of install.
BEAUTIFUL plugin! This was insanely easy to install and so simple to customize. Thanks!
hello! is it possible with this plugin to link a hyperrerefence from some to a certain page?
[…] I recently noticed Llorelle was endorsing and explaining a new quotes plug-in, which can be found here. […]
[…] I just changed over from McMike’s Random Quote of the Day to Dustin’s Random Quotes. You see, McMike’s Random Quote of the Day is not widgetized and does not have some of the capabilities at the back end that Dustin’s Random Quotes has. […]
[…] Die Sidebar wird lang und länger. Diesmal dank wp_quotes, welches fortan zufällige Zitate ausgeben wird. […]
[…] Enter Random Quotes (or WP-Quotes), a plugin by Dustin Barnes. This plugin enables you to maintain a database of quotes within your WordPress database, using WordPress’s administrative interface to enter and edit quotes. You then place a line of code in a template file (in my case, sidebar.php) to display a random (or specific) quote. […]
hearty congrats for ur wonderful job,but i’m geting fatal error.could you help regard this?
.
, , ,
(vladykino hotel moscow).
, , ,
(nevskaya hotel).
, , ,
[…] Enter Random Quotes (or WP-Quotes), a plugin by Dustin Barnes. This plugin enables you to maintain a database of quotes within your WordPress database, using WordPress’s administrative interface to enter and edit quotes. You then place a line of code in a template file (in my case, sidebar.php) to display a random (or specific) quote. […]
Hello Dustin
I have installed wp_quotes on my blog by scrupulously following your instructions.
The plugin is activated and I was able to entered about 20 quotes in the Manage / Quote Section. I also have inserted on the right side on my blog under the title “Citation aléatoire”.
As you can see, the quotes don’t display. Could you help me finding out what’s wrong ? Regards
Hi -
I managed to get your quotes installed and it does display a quote where I want it to. However, the quotes won’t change, it stays the same quote. I have multiple quotes added, they are visible, and the plugin is activated. Any insight into what’s going on? Thanks.
The way I see it, you should have an enormous amount of sweet karma around you. Thanks. Carolyn
[…] WP RandomQuotes is a modification and melding of two separate WordPress plugins: WP Quotes by Dustin Barnes and RandomQuote by Abhijit Nadgouda. In fact, RandomQuote is simply a widget wrapper for WP Quotes. The problem was that WP Quotes had it’s own admin interface which actually required the WordPress user to drop a file in both the wp-plugins directory and in the wp-admin directory. This is not an elegant solution; many WordPress users are simply not technical enough to handle such an operation. In addition, the typical upgrade process for WordPress involves replacing all files in the wp-admin directory by deleting the entire folder and replacing it with the newer release’s folder. You could easily lose that functionality. Also, the RandomQuote would do nothing if the WP Quotes plugin was not in place and working. And, you had to add elements to your CSS file in order to format the quotes on your blog. Lots of “ifs”, “ands” and such. While the existing system worked, it was kind of convoluted. […]
I am thinking of using the plugin for Quotes. But I also want to use it separately for a section called Trivia. Since one can’t make both work with the same plugin, I want to make another one called wp-trivia or something like that. So for that, if I make a duplicate file and replaced all the “wp-quote” with “wp-trivia” throughout the plugin file, will it work? I am not a techie and wouldn’t want to tinker around with the database unless I get a green signal.
There is another thing. In the quotes plugin I want to add another field called Title (i.e. title of the book). Now, how can I do that?
TIA.
I followed all of the instructions, however, when I put the code on the sidebar, it comes up with an error.
Looking through the comments, it seems a lot of them are asking for help, so mine might be a change. It worked perfectly, it did exactly what I wanted, and it did it in a way much better than any alternative I’ve found.
I just have to sit down and spend hours adding all the quotes I want now.
I appreciate what you’de made, dude.
[…] Voici un exemple de “bidouille” trouvée dans le code du plugin WorpPress “Random Quotes” de Dustin Barnes. PHP [Mis en forme]: […]
Just installed it, I love it! Super easy to use and the admin panel, c’est magnifique!
[…] Random Quotes I am a quote hound. I find quotes all over the place that I love. There was no question about it - my site was going to have quotes. This one puts a random quote from ones you input every time you refresh. […]
[…] Random Quotes […]
[…] Random Quotes […]
[…] Random Quotes […]
[…] Switch from Witty Text to Random Quotes, since it’s better. […]
Is there any way to import a file? I’ve got a flatfile (puts quotes in my email sig) but I can convert it to a .csv or whatever.
But the thought of adding a couple of thousand quotes individually doesn’t really thrill me
[…] Random Quotes […]
[…] Random Quotes v1.3 […]
[…] Random Quotes v1.3 […]
[…] WP Quotes – Sieht man in der Sidebar bzw. hat ja auch seine eigene Seite hier […]
[…] That’s thanks to Zombie Robot’s wp_quotes plugin. You can get it here. posted by T D at 5:36 am […]
[…] AdSense-Deluxe -an easy way to organize google ads. CG-SameCat -generates a list of pages in the same category. Category Order -customize the order and hierarchy of categories. WP-EMail -email posts to a friend. Feedburner Feed Replacement -directs RSS feeds to feedburner. Google Sitemaps -creates a Google-friendly sitemap. Bookmark Me -those multi-colored links you see everywhere. Tags in the Head -a way customize meta tags Top 10 Posts -counts post views and lists the top 10. Underscore Permalinks -uses _ instead of - in permalinks. Ultimate Tag Warrior -organizes tags for each post. Random Quotes -those random phrases just below the header. Contact Form -a simple contact form. Get Recent Comments -displays recent comments in the sidebar Kramer -displays recent inbound links in the sidebar […]
[…] Learn more about the wp_quotes Random Quote plugin at Zombie Robot >> […]
[…] I grabbed some plugins and made some small changes. I installed a random quote plugin so that I could do somethng with all the random quotes I have in various text files all over my computers. So far I have only put in one quote so that would be why it has changed. […]
[…] Lancio Google con chiave “wordpress citazioni random” che mi riporta a una pagina del blog Zombie Robot, dove Dustin Barnes spiega come utilizzare il suo Random Quote Plugin. Facile. […]
[…] Citazioni celebri e meno celebri (spesso le migliori) ruoteranno qui grazie al Random Quote Plugin installato ieri sera. C’è e ci sarà un po’ di tutto… suggestioni adolescenziali e tardo-adolescenziali, voci di blogger e autori di vario genere, pensieri, parole e esternazioni dei ragazzi… insomma tutto quello che mi ha colpito, mi colpisce, mi colpirà facendomi girare il cervello ma nn necessariamente quello… […]
For what it’s worth, for that problem where clicking [Save] sends you right back to the Manage Posts page, I found a little fix. I don’t know if it will work for all, but it worked for me.
Basically, as was stated earlier, PHP_SELF thinks it’s edit.php and not edit-quotes.php. I went into /wp/wp-content/plugins/edit-quotes.php and changed this line in the form:
“>
Hey, that didn’t show up. How about this.
1. open /wp/wp-content/plugins/edit-quotes.php
2. find the line that opens the form:
form name=”quoteform” id=”quoteform” … etc
3. change the action attribute from:
action=”?php echo $_SERVER[’PHP_SELF’]?”
to
action=”/wp/wp-admin/edit-quotes.php”
Seems to work. I also mentioned that you might be able to define $_SERVER[’PHP_SELF’] somewhere, but I didn’t want to go around mucking around with that since I wasn’t sure what it might screw up elsewhere.
scott
i love the plugin! works great!
is there any way to add this to a wordpress “page”? i’m using wp for content management site and would love to have a page that uses this feature.
oh yeah, i installed the PHP Exec plugin so I can put php in a page but it’s still not working…
[…] Random Quotes I know that having random quotes on a website is pretty old school, but I always wanted to have something like this on my site. This plugin allows you to edit the quotes from the database from the admin area of WordPress. […]
Very useful plugin. Thanks for sharing.
This is a great plugin. Thanks for your hard work! I have a feature request. It would be great if you could ask for x quotes at random, so that you could display up to x quotes from the database. For example, a user might have a page or sidebar where she would like 3 different quotes. Calling the plugin now 3 times would lead to possible duplication. If I could send 3 as a parameter, and get the first random 3, that would be cool. Thoughts?
[…] Fortunately for me though, a helpful person called Zombie Robot (pseudonym ?) has already produced wp-quotes (and another kind person tweaked it to work properly for taglines). […]
[…] Random Quotes Brukes til å vise stitater og ordtak i sidemenyen. Fungerer helt ypperlig, men jeg burde legge til flere ordtak ettersom jeg bare har 22 stk liggende nå. Men det kommer ikke til å bli noen problem. […]
[…] Random Quotes v1.3 […]
Hi! Great plugin… something I always wanted. Question: Is it possible to upload a “batch file” of quotes we already have? I’m not a mySQL guru, but is that possible? I have about 120 quotes I’ve collected… inputing the quote+author will be somewhat tedious… but the plugin is still great!
Thanks.
Great plugin - thanks!
I have one small issue. I have been able to get 53 quotes into the database without a problem. Now, I enter the text into the appropriate fields and hit “Save”, only to find that it won’t save anymore. Is there some sort of limit as to how many quotes (or characters) the database can handle?
Would be really nice if this could feature a refresh button, that would refresh the quote without refreshing the page. (Faster.) Even nicer if it was done with AJAX. (Faster still.)
Any possibility of this feature being added?
Is there a way to use the plugin on another WP site without having to install the plugin twice at the new location?
I’d like the quotes to show up in the footers of my main WP site and then my WP blog site as well.
[…] Random Quotes para las citas del “pie de blog”. Si te apetece, envíame por email alguna cita interesante para incluirla. De momento solo hay dos que vienen por defecto en el plugin. […]
I’ve installed the plugin, but don’t really understand the instructions on how to place the random quote generator on a specific page, not a sidebar or something similar.
I’m not a programmer, so you’re going to have to talk to me like I’m stupid.
Any help would be great!
Thanks,
Phil
hi, I’ve been using this plugin a lot and now I can’t do without it. It also works great in wordpress 2.1.
Except one thing…it causes the “export” submenu command to disappear from the dashboard!
[…] Random Quotes This plugin allows you to embed random quotes into your pages. It also has a spiffy management tool in the administrative console. By Dustin Barnes. (There is also a Widget to display the quotes in the sidebar - by Abhijit Nadgouda.) […]
[…] Random Quotes - Exibe frases ou citações de forma randômica. Você mesmo escreve as frases que deseja exibir. […]
YOU ARE AWESOME FOR MAKING THIS!!! JUST WHAT I NEEDED!!! Sorry for the caps, but I felt it was needed for emphasis, lol.
Hi, nonhocapito. I experienced this too. Open the wp_quotes.php and find the block of code:
* Puts the Quotes manager thingie under the “manage” tab.
*/
function wp_quotes_admin_menu($content)
{
global $submenu;
$submenu[’edit.php’][40] = array(__(’Quotes’), 9, ‘edit-quotes.php’);
}
Change the [40] to [50] and all is good!
tried to test it out, but can’t seem to get it to work
- got the 2 files uploaded to the correct directories
- go to “manage”, click on “quotes”
- and then it gives me a not found error.
Anyone experience this or the fix?
i’m using WP 2.1
hmm, disregard my last comment about the page not found, suddenly started working. must have fixed it in my tinkering.
Thanks, nonhocapito and Kent, for the tip on the submenu fix, would have never noticed! and thanks for the great plugin!
[…] Random Quotes v1.3 […]
First of all, great plug-in! I have a problem though - it’s hard for me to distinguish the author of the quote from the body of the quote itself. I’ve noticed that on your quotes, the author is separated. Is there something I can do to fix this? Thanks in advance.
[…] Random Quotes […]
[…] Ho aggiunto un plugin “Random quotes” che è dotato di un database autonomo e quindi permette di inserire le frasi da mettere in loop […]
[…] Random Quotes […]
[…] Random Quotes - Manage random quotes within the administration panel, provides a lot of personalization in implementation by providing neat CSS classes. […]
Hello!
I use this plugin since I start my blog. But I need download this again, and de rar files are damaged! The version 1.3 linked in text don’t work when I extract the files.
[…] Random Quote Plugin Inserire testo random nelle pagine, ad esempio la frase del giorno […]
Great work. Smooth plugin.
BR
[…] Functionally, the site runs on the open source wordpress blogging cms. In addition, I’ve also added the official comments plugin and the random quotes plugin. The wordpress implementation is fairly straightforward, two exceptions being custom page templates for each section and some header tweaking to produce the navigation visual elements. […]
Hmm, its not working for me. I keep getting a 404 error.
[…] And when I was at it I also installed a quotes plugin (mildly inspired by ozamosi, admittedly), so now I’ve use for some of the quotes I’ve collected. […]
This is the nicest random quote plugin I’ve found yet. I’m not php or css savvy, so this is great. I have only one problem. I can’t get it into the sidebar where I want it to show. I use widgets for my sidebar, so trying to insert the code into the sidebar.php file has been a bit challenging. So far, it only works if I put the code up at the very top, which is not where I need it to be. Any help is appreciated!
Paula
[…] I’m piecing together some design quotes (or creative quotes in general) to include in my blog footer layout. There’s a nice plugin I’ve just installed for WordPress called the Random Quote Plugin. You enter a number of quotes via the admin and it generates a random one to display everytime your web page is refreshed. […]
[…] wp-quotes […]
[…] Editado (3 de abril): wp-quotes RSS 2.0 […]
[…] Die Wechselnde Zitate oberhalb des letzten Beitrags werden mit dem Random Quotes Plugin realisiert. Etwas modifiziert wurde das Ganze noch von meiner Seite, so dass auch ‘Trivia’ Platz findet. […]
[…] Die wechselnden Zitate oberhalb des aktuellen Beitrags werden mit dem Random Quotes Plugin realisiert. Etwas modifiziert wurde das Ganze noch von meiner Seite, so dass auch ‘Trivia-Einträge’ Platz findet. […]
I need to change the ‘author’ column to ’source’ but don’t know how to access the table to rename the column there. Once that, I need to be able to link the ’source’ text to the source. Can you advise?
Thanks!
okay.. I figured out how to get into the table and changed ‘author’ to ’source’. Now I need to make the source linkable… what do I insert into the function that “actually spews a quote” to insert an around the source.
hi… i edited a widget file that i have to make this widget enabled… i am actually using it as a widget on my website right now… this is super helpful because you don’t have to worry about editing css and the sidebar and such… anyway… i’d be happy to send you the file to test and put on this site… just shoot me an email…
TC
Great work. Smooth plugin. Rest Regards i use in http://www.piersi.org/
Nice job, this is a very useful plugin.
I think that I have found a bug: Whe I activate the plugin the created menu “manage->quotes” overrides the original menu “manage->export”. At least, that happens in my case (wordpress 2.1.2).
Regards,
Hi, Just made a little hack of your plugin.
Punlished here:
http://mets.ta.chambre.en.ordre.net/2007/04/16/wp_quotes-little-hack/
KiKollan - I noticed the same thing. If you tweak the wp-quotes.php following the comment “Puts the Quotes manager thingie under the “manage” tab” in the line “$submenu[’edit.php’][40] = array(__(’Quotes’), 8, ‘edit-quotes.php’)” and change the 40 to 44, you should be good to go. I’m sure it’s not the most correct fix, but it solves the problem and all in all worth it as this is the best quote plug-in available … IMHO of course.
[…] I was just browsing through a friend’s blog and noticed the “Food for thought…” section where a random quote was being displayed every time the page was refreshed. I’ve always loved quotes. Sometime ago I had even written a piece of code to randomly insert quotes as signatures in my e-mails. I was delighted to find a plug-in for WordPress which could display random quotes. I googled and found Zombie Robot’s wp_quotes: Random Quotes Plugin to be the best and the installation instructions provided on the site work like a charm! […]
This one is for you buddy. Great job. Integrating with my blog was a piece of cake! Thanks a lot.
Сайт о выставке Парижский авиасалон в Ле Бурже: программа выставки Парижский авиасалон в Ле Бурже, пресс-релизы Парижский авиасалон в Ле Бурже, оформление участия в выставке Парижский авиасалон в Ле Бурже
adipex…
qiab uuzuxum…
[…] Random Quotes v1.3 […]
Produced MySql Error on install. It didn’t install the database. I had to:
CREATE TABLE wp_quotes (
`quoteID` INT(11) NOT NULL AUTO_INCREMENT ,
`quote` TEXT NOT NULL ,
`author` varchar( 255 ) NOT NULL ,
`visible` ENUM( ‘yes’, ‘no’ ) NOT NULL ,
PRIMARY KEY ( `quoteID` )
)
INSERT INTO wp_quotes (
`quoteID` ,
`quote` ,
`author` ,
`visible`
)
VALUES (
NULL , ‘Test’, ‘Me’, ‘yes’
);
No tool in admin shows up.
WP vs 2.1.3
buy levitra…
ofey xiuk…
[…] Random Quotes Was wäre ich ohne meine gesammelten Zitate?! Klein aber fein und wenn das passende Zitat zur momentanen Lebenssituation wie durch ein Wunder erscheint: umso besser. […]
hydrocodone…
xcaovee aowunc…
Cialis….
Order cialis online. Cialis….
¡Great Plugin! I use in my web page about U2. Bono usually says great things
Thanks!!!
[…] Random Quotes […]
[…] …bei Google auf dem 3 platz landen ! Und das bei397.000 Suchergebnisse! Man bin ich Stolz. Nebenbei hab ich auch ein paar Zitate mit Random Quotes integriert. Und das Design weiter eingedeutscht. Genügend Arbeit für heute… Teile und genieße Diese Icons verzweigen auf soziale Netzwerke bei denen Nutzer neue Inhalte finden und mit anderen teilen können. […]
[…] Visit […]
Hey there. I used this plugin on my WP blog and loved it. But, I wanted to try to move it over to my more conventional web site. Question: where is the database with all the quotes I’ve already entered? Which directory should it be in and what is the name of the file? Thank you!
wellbutrin…
taobopu tvouhaa…
Will this plugin call up your quotes when the code is placed within a widget?
I have used the plugin for over a year with success. It has been used to call an individual quote on the index page sidebar and to call all quotes on a Page.
Since upgrading to WP 2.2 with its widget support it will not sall the quotes from the index page although it still works on my page.
This is so cool - I want to be able to use this plugin to output random testimonials. Is there any way to output multiple random quotes from the db table without showing each one more than once on the same page?
Marc (#331), Abhijit Nadgouda has built a widgetizer for this plugin. Requires both to work, and it works like a charm. Get it at ifacethoughts[dot]net/2006/08/24/random-quote-widget-for-wordpress/ .
(No, I’m not him.)
[…] Zombie Robot » wp_quotes: Random Quote Plugin Zufallszitate-Plugin (tags: Plugins Blogging WordPress quotes) […]
[…] Everyone knows I like funny quotes - so those quotes at the bottom are handled efficiently by Random Quote plugin by Dustin Barnes […]
generic wellbutrin…
leaqacog nautir…
prescription xanax…
aulij oju…
[…] Vacation in Baltimore 11 June 2007 Written by: Cody Posted under Rambling, Web Dev Right now I should be sleeping, but you know how it is the night before you’re supposed to go on vacation right? Yeah…too much to do. Well I’m writing this post to let people know that I will be enjoying myself (mostly) computer free for a week. No worries, I’ve stashed a few posts away to keep you entertained (don’t forget Cool Music Tuesday! and Free Link Friday!). This post is also to anounce that I have a new toy on the site. It’s a plugin called wp-quotes. So, while I am gone (and perhaps permanently), every time you visit the site you will see a new motivational quote to help keep you going. I know, you’re welcome. […]
Unable to add new quotes since upgrading to WP2.2. Secondly, on the Manage Quotes page it displays the footer twice. Solution?
Drew (#339), I upgraded a few weeks ago, and I’m not having either of those problems. I just tested it by adding a new quote (#150!), and it worked like usual.
Are you using the most current version? Should be v1.3 for this and v1.0 if you’re using the widget companion plugin found elsewhere.
[…] Zombie Robot » wp_quotes: Random Quote Plugin […]
Thanks for the reply, Matt.
I was using v1.3. I re-downloaded it, deleted the current Quote files, and uploaded the new ones. Still though, there are two footers and I am unable to add quotes. Do I need to empty the cache in my database or something? If so, how do I go about that?
Sorry, you’re a bit out of my depth. Maybe this plugin is being overruled by another one. I’ve had that happen before. You might try deactivating (not deleting) all your other plugins and see if wp-quotes works. If it does, one of your plugins is getting in the way. Then it’s just process of elimination and deciding which one’s more important.
Although, if wp-quotes works with the others turned off, you could add the new quotes before you turn them back on. Sounds like all the distortion is happening in the background, so that might be a reasonable alternative.
In addition to your great plugin, I’m using Gengo on a client site. It is a plugin (http://jamietalbot.com/wp-hacks/gengo/) which is a plugin for translating posts / pages and content. Both - or neither depending on your point of view - filter quotes by language.
Think this is a feature / functionality / item you’d be interested in doing an upgrade to support? I’m going to take a stab at it myself, but my efforts for Wordpress have thus far been limited to theme customizations and use of others’ plugins.
Thanks,
Jamie
I love this plugin, been using it for a while now; just thought I’d give it it’s props! Thanks!
… everything is working fine except that I can’t get to work.
Hmm… messed up the previous comment. The plugin is working fine except that I can’t get the bit to allow all of the quotes to show up in a page to work. I put the code in and all I see on the page is the code itself…
Found out my problem. It was my own stupidity. It helps if you follow the installation instructions above. I had the “edit-quotes.php” in the plugins directory instead of the admin directory. Doh!
da051d7d443db504f0ae6a555711e224…
da051d7d443db504f0ae6a555711e224…
for some unkown reason, when a subscriber logs in they see a manager menu linked to edit quotes why is this ? they should not be seeing any manager menu
Hey!
Thanks for this plugin. But here is a suggestion.
It would be really nice if we could set a number of quotes shown per page when using ‘‘.
My page with quotes is getting too long.
I am really excited about this plugin- the back end is exactly what I was looking for!
Now if I could only get the front end to work…
I’ve tried reinstalling this a few times now, and for some reason the quote just isn’t being called. I get a blank area instead of a quote, not even any error messages.
I’m using WP 2.2.1, so I’m entirely aware that could be the issue, though reading back it seems like at least one person said it worked okay with 2.2.
I definitely have 1.3, the most recent version, and I’ve triple checked installation instructions and permissions on all the files- any thoughts?
I’d love to use this, it’s definitely the best quote plugin out there. Thanks for your work on it.
[…] Widget to display a random quote, based on the wp_quotes plugin. […]
[…] Zombie Robot » wp_quotes: Random Quote Plugin (tags: wp plugin) […]
Snorting tramadol….
Snorting tramadol….
[…] Random Quotes […]
[…] A principal “novidade”, se é que pode ser assim chamada, é o acréscimo de citações no cabeçalho da página, logo abaixo do Rodrigo Ghedin. Com a ajuda do plugin Random Quotes, consegui colocar frases que, de alguma forma, fazem ou fizeram parte da minha vida. Elas aparecem aleatoriamente, o que me leva a crer que muita gente ficará dando refresh na página só para vê-las (confesse, vai; até eu já fiz isso aqui). […]
Audrey (#351), I’m assuming you’re trying to get a page with a list of quotes, yes? If you’re trying to do that by going through the standard admin interface and writing a new page, you’ll need to get one of the plugins that allows for php to be placed there. By default it disregards php when you use that method. This plugin seems to be the one people point to the most, though I haven’t needed to use any of them myself.
If you’re trying to put it in a sidebar, my recommendation would be to get the widget that’s built with wp_quotes. Do a google search for ‘random quote widget’ and you should find it pretty easily.
Hi
I can’t be bothered with anything these days, but shrug. I just don’t have anything to say recently.
Bye
Hi
I can’t be bothered with anything these days, but shrug. I just don’t have anything to say recently.
G’night
Hi,
I’d like to point out that when the plugin is active, the export function of WP 2.2.1 is not available, but when deactivated, the export function appears. Is there a way to have both features available when the plugin is active?
Other than that, the plugin works fine. Thanks by the way.
Will
http://gormful.com
Install Random Quote Plugin, error:
http://img412.imageshack.us/img412/5127/wpqkf3.jpg
WordPress database error: [Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation ‘=’]
select quoteID from wp_quotes where quote=’Each place has its own advantages - heaven for the climate, and hell for the society.’ and author=’Tiến Bách’ and visible=’yes’ limit 1
[…] Random QuotesThis plugin allows you to embed random quotes into your pages. It also has a spiffy management tool in the administrative console. By Dustin Barnes. […]
7789ff8a1902157163bfc15e275cbc55…
7789ff8a1902157163bfc15e275cbc55…
cock massive sucker…
Hello!…
[…] Algumas explicações sobre o tema: foi baseado no css do Rodrigo Ghedin e modificado de acordo com meu gosto. No topo, abaixo do nome do site, tem o plug-in wp-quotes, que mostra uma frase diferente a cada visita na página (pode atualizar, vai mudar lá). Coloquei algumas citações que pra mim fazem ou fizeram algum sentido. […]
Worked like a charm, thanks!!
it will be nice if you have categories you know, so i can categorize the quotes
[…] Jeg snublet over Zombie Robot sin plugin for sitater i går kveld, og tenkte jeg skulle legge til dette på XmasB.com. Denne plugin tar ting litt videre enn andre plugins i det den bruker MySQL for å lagre sitatene. Full styring over sitater finnes dermed for admin av siden, og man kan legge til eller fjerne sitater fra en side. […]
Great - love it. Exactly what we were looking for.
[…] Random Quotes v1.3 […]
[…] Plugin Name: Random Quotes Plugin URI: http://www.zombierobot.com/wp-quotes/ Description: This plugin allows you to embed random quotes into your pages. It also has a spiffy management tool in the administrative console. Author: Dustin Barnes Author URI: http://www.zombierobot.com/ Version: 1.3 Knepigt att kopiera olika filer till olika kataloger, borde inte behövas. Sedan _måste_ man editera databastabellerna om man inte kör en standardinstallation av WP. Borde stå _tydligt_ i instruktionerna. Om den hade ett tillägg så att besökare kunde lägga till citat vore det grumt! Annars hur bra och enkel installation/konfiguration som helst [rating9/10] (1 votes, average: 7 out of 10) Loading … Postad av mrhandley Kategori Nyheter […]
[…] The About Me Sidebar Widget Plugin The Addictions Plugin, for listing your current book/music/show/etc Book Reviews Plugin My Things, which allows you to display 100 things about you in list style Random Quotes Plugin, to put in a code that will display one of a list of quotes you enter at the dashboard page Wordpress Database Backup, so you don’t lose information due to a bug or human error Word Press polls, so you don’t have to do the coding to make a poll each time you want one […]
[…] Plugin Name: Random Quotes Plugin URI: http://www.zombierobot.com/wp-quotes/ Description: This plugin allows you to embed random quotes into your pages. It also has a spiffy management tool in the administrative console. Author: Dustin Barnes Author URI: http://www.zombierobot.com/ Version: 1.3 Knepigt att kopiera olika filer till olika kataloger, borde inte behövas. Sedan _måste_ man editera databastabellerna om man inte kör en standardinstallation av WP. Borde stå _tydligt_ i instruktionerna. Om den hade ett tillägg så att besökare kunde lägga till citat vore det grumt! Annars hur bra och enkel installation/konfiguration som helst [rating9/10] […]
[…] Stray Quotes is a Wordpress plugin meant to collect and display random quotes on your blog. It is widget compatible, and the appearance of the quotes can be customized in various ways. It comes with a easy to use management tool and a option page. It is based on the old “Random Quotes” plugin by Dustin Barnes, and in fact the two plugins are compatible so that one can replace the other without problems, since they use the same kind of table. I’ve been using “Random Quotes” since forever and I put my hands on it because I just needed to fix a couple of its bugs and make it more flexible. Eventually I manipulated such a large part of its code that a new plugin came out. And here it is. […]
Great plugin! Saved me some time
levitra…
vuavecip ag…
[…] It was natural for me to want to feature random quotes on my WordPress blog, as it is for many. In the beginning, there was only one WordPress Plugin that offered the ability to easily add random text to your blog, Witty Text. Development on that has stopped and I finally found WP Random Quotes Generator by Dustin Barnes. It is very easy to use and allows adding and controlling your random quotes or text from the WordPress Administration Panels. It features a lot of options to configure your random quotes. You can then add the Plugin template tag to your WordPress Theme to put the random text in your header, footer, sidebar, or wherever you want. […]
[…] Random Quotes v1.3 […]
Hello! Help solve the problem.
Very often try to enter the site, but says that the password is not correct.
Regrettably use of remembering. Give like to be?
Thank you!
[…] Cách xử dụng wp-quotes: Installation Instructions […]
[…] I’m piecing together some design quotes (or creative quotes in general) to include in my blog footer layout. There’s a nice plugin I’ve just installed for WordPress called the Random Quote Plugin. You enter a number of quotes via the admin and it generates a random one to display everytime your web page is refreshed. […]
Let me start by saying this is a very nice plugin. Can you tell me how to modify the wp_quotes_page function to allow filtering of the quotes database by author? For example, I want to “spew” all quotes for a particular author onto a page as opposed to all quotes by all authors. Or, if this funtionality is already built-in can you tell me how to use it? Thank you in advance.
While I wait to hear how to filter spewed quotes by “Author” I have entered quotes for multiple authors while leaving only (1) authors quotes visible however the wp_quotes_page function still outputs all quotes regardless of the “Visible” setting.
Disregard my previous post regarding the “Visible” setting. I changed:
$sql = “select * from ” . WP_QUOTES_TABLE;
to
$sql = “select * from ” . WP_QUOTES_TABLE . ” where visible=’yes’”;
[…] project: random quote widget client: wordpress open source community description: users of this plugin were looking for a widget compatible with this plugin in order to insert it into their widgetized wordpress sidebars (as was myself), so i decided to write this widget plugin link: zombie robot widget file: random quote widget file (ctrl+click to save file) […]
]no prescription pharmacy diazepam
[…] … der läst finden Das Plugin wird ebenfalls umgehend eingebaut. Danke Frau Jones. This entry was posted on Donnerstag, August 30th, 2007 at Donnerstag, August 30, 2007 and is filed under Herr Sch.. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site. « 6 Uhr morgens am Deich … […]
Loving the plugin, thanks. I used to use another one called DonkieQuote (which I can’t seem to get to work on WP 2.2) but it had the author link (customizable). Count me on the request bandwagon for an author URL.
Thanks again!
I’ve been trying to figure out how to make the Manage:Quotes menu item which this plugin adds available to Editors as well as Administrators. Here’s how:
On line 24, change:
$submenu['edit.php'][40] = array(__('Quotes'), 8, 'edit-quotes.php');to:
$submenu['edit.php'][40] = array(__('Quotes'), 7, 'edit-quotes.php');Changing that 8 in the middle to a 7 sets the user level referenced by wp_quotes_admin_menu() when it’s creating the menu to be applied by
add_action('admin_menu', 'wp_quotes_admin_menu');I learned about user levels here:
http://codex.wordpress.org/User_Levels
Hope this helps others.
This seems not to like WordPress 2.3 beta 1 or beta 2. it activates as normal, but trying to go into the admin to add quotes generates a server error. I’ll have a look at the server logs and see if there are any clues there…
Ignore the previous comment - it’s now working. Not having the edit-quotes.php file in wp-admin was a bit of a silly mistake
hello , my name is Richard and I know you get a lot of spammy comments ,
I can help you with this problem . I know a lot of spammers and I will ask them not to post on your site. It will reduce the volume of spam by 30-50% .In return Id like to ask you to put a link to my site on the index page of your site. The link will be small and your visitors will hardly notice it , its just done for higher rankings in search engines. Contact me icq 454528835 or write me tedirectory(at)yahoo.com , i will give you my site url and you will give me yours if you are interested. thank you
This is one sweet, sweet easy-to-use plugin made by a sweet, sweet man! Thank you!
[…] Nachdem ich das Theme auf meinem privaten Blog aktualisiert hatte, probierte ich dort gleich einige Plugins aus, die ich auf blo:Geescht einsetzen wollte, wie z.B. Now Reading oder WP Quotes. Da alles (verglichen mit meinen K2-Versuchen) ziemlich problemlos klappte, installierte ich das dKret-Theme auf diesem Blog und begann damit, Header, Stylesheet und Navigationsleiste so anzupassen, wie es meiner Vorstellung entsprach. […]
[…] By the way, the quotes located halfway down the sidebar on the right, are randomly generated and should change every time you visit a new page. The plugin I use is available for download here, and even though it’s a few years old, still works well with WordPress 2.2x. Actually, now that I’ve stopped to look at the Quotes box, I realize I should probably update the CSS classes to match the color scheme of this blog a bit better. Something else to add to the “to do” list….. […]
Hi
Very interesting information! Thanks!
Bye
[…] Random quotes - Used to show volunteer opportunities in sidebar […]
that’s why it will never wor. Piet Nirvana.
[…] Random Quotes […]
[…] WP-Quotes (Random Quotes) 1.3 […]
Very nice. Love this place! Keep up the good work! auto insurance quote canada
[…] Random Quotes […]
[…] Las frases aleatorias que pongo hasta arriba de las páginas son seleccionadas con una versón modificada del plugin “random quotes”. […]
you had me suicidal, suicida. Masood Garfield.
[…] WP-Quotes picks up random quotes from a repository and lets you display anywhere in your template. The quotes are stored in a database and a polished admin interface is provided to handle the quotes. It provides features like disabling certain quotes without deleting them and displaying the quote using CSS, so you can control it completely. In addition to this you can pick up specific quotes or all the quotes. […]
[…] I’ve been using the Random Quotes plugin by Dustin Barnes since before WordPress 2.0 and it has worked quite well for me. Adding, editing, and managing those quotes in the Wits Bits section of my front page has been quite easy. […]
As it seems that several users (including myself) manage to delete the wp-admin/edit-quotes.php when upgrading Wordpress, would it be sensible to modify the plugin so that all its files are stored within the plugin directory?
Lipitor grapefruit juice….
Generic alternatives to lipitor. Lipitor memory loss. Lipitor. Lipitor grapefruit juice….
[…] Zombie Robot » Wordpress Quotes: Random Quote Plugin Random Quote Plugin!!! For when I start blogging @ www.lamazone.be. Am I lazy, procrastinating, unable to set priorities, too damn busy or all of the mentioned above? (tags: blogging wordpress plugins) […]
[…] Random Quotes v1.3 […]
Is it possible to put it on a frame?
nice plugin by the way!
[…] The site runs on the open source wordpress blogging cms. In addition, I’ve also added the official comments plugin and the random quotes plugin. The wordpress implementation is fairly straightforward, two exceptions being custom page templates for each section and some header tweaking to produce the navigation visual elements. […]
Hello
stgdgedr
restartos
Hi your article is delightful.
I will definitely read your diary..
Thanks
[…] Il fatto bello dei plugin di wordpress è la loro compatibilità pressappoco perenne. Pressappoco perchè con il passaggio alla sidebar con le widget, i plugin non più ‘attivi’, quelli obsoleti non si possono più usare così facilmente come un tempo. Ok, belli cazzi, ma io che ho già inserito centinaia di citazioni… come fo a non perderle se cambio plugin e ne scelgo uno più recente? Come posso fare a cambiare plugin ma a non perdere i miei quotes e a non lasciare tabelle e stringhe di configurazione? E’ un po’ come chiedere la botte piena, e la moglie ubriaca… con la sola differenza che tutto questo si può. Come? Semplice! Basta non non cambiare plugin; continuare ad usare l’unico e solo wp-quotes (Random Quote Plugin di Zobie Robot), così piccolo, così poco invasivo, eppure così potente. Dunque, dicevamo… l’unica strada è widgetizzare il plugin e allo scopo, mi sono servito del più stupido dei workaround. Con l’aiuto del plugin Exec-PHP che permette di eseguire codice php all’interno del loop e non solo, è bastato creare un semplicissimo widget di testo, e scrivere il codice <?php wp_quotes_random(); ?> o anche, sempre meglio controllare che la funzione esista nel caso si disattivi un giorno il plugin… <?php if(function_exists(”wp_quotes_random”)) { wp_quotes_random(); } ?> Come titolo si può usare il classico ‘Frase celebre del giorno‘ o qualcosa del genere. Visto che mi ci trovo, ne butto una a casaccio qui sotto. Nessun doppio senso. E’ semplicemente a caso, provare per credere. Non fare cose di cui potresti pentirti (o almeno credi) e fai le cose di cui non ti pentirai mai (o almeno credi). Anonimo Pomeziano […]
[…] XmasB Quotes WordPress Plugin is a random quote generator, but it will have to go some way to compete with my favorite, WP-Quotes WordPress Plugin. […]
Get full uncut Paris Hilton sex video clips …
Paris Hilton in the bath! Paris Hilton sex tape video…
[…] Las frases que cambian hasta arriba de las páginas son producidas por Random Quote Plugin, que tiene como defecto que opera recuperando todas las frases, colocándolas en un arreglo, emitiendo un entero aleatorio entre 0 y el tamaño de la lista menos 1, y devolviendo el registro correspondiente a ese número. Recién le hice modificaciones para invertir el orden de acción: que primero emita el aleatorio y después recupere solamente la fila necesaria. Es algo torpe pero mejorable. […]
Teens For Cash Videos…
Teens For Cash Videos…
I just added Random Quotes to a client’s site and it’s working but I can’t figure out how to display all the quotes. I know it can be done but I’m not really a programmer so where do I make the change?
[…] Random quotes, Låter dig lagra citat i databasen och slumpa fram dem, ungefär som jag gör på första sidan (ovanför senaste inlägget). Administrationsgränssnitt för hantering av citat ingår. […]
[…] At the top of the left sidebar, you may or may not have noticed the addition of a bicycle related quote. The quote is randomly displayed and should not repeat the same one too often. Random Quotes is the plugin responsible for the display of those quotes and the quote database table is within the WordPress database. You can see a complete list of quotes here. As I acquire more quotes I will be sure to add them to the site. […]
Hi.
Good design, who make it?
backseat bangers backseatbangers…
hottest backseat bangers backseatbangers…
[b]Всем привет!!![/b]
Если у вас тоже встап вопрос о качественной типографии, а самое главное надежной, обращайтесь в типографию, что у ст. м. Университет!
[b]тел.: (495) 939-44-89[/b] [b]Звоните!!![/b]
Проверенно!!!
The truth is that they are not and there is a growing industry to prove it.
Zdraste
ia vasha tetiao mesie’
Good loom
I’m sorry if this is off-topic, but I need some feedback. Do you think extended auto warranties a good deal?
Thanks in advance for your input.
great plug-in.
good instructions on changing the css.
works like a charm as far as a i can tell.
thanks.
Hi. And another thanks for sharing your work. Is it possible you’ll ever modify this so that a list of quotes could put pasted into the quote input box? I’ve got a long list of quotes that would be a lot of work to do one-by-one. Or perhaps you can suggest an SQL file format that one can use with phpMyAdmin? Regards.
[…] Since I had to do this in a hurry, I wasn’t able to take any precautions. Still, it went smoothly for the most part. The main issue for most users seems to be depredation of older plugins, but I only use a couple (Random Quote and Browser Sniff), and I experienced no problems. My scripts appear to be humming along just fine (whew). […]
[…] Random Quotes4. […]
[…] I’m piecing together some design quotes (or creative quotes in general) to include in my blog footer layout. There’s a nice plugin I’ve just installed for WordPress called the Random Quote Plugin. You enter a number of quotes via the admin and it generates a random one to display everytime your web page is refreshed. […]
cialis…
farrago befooled…
I’m having a little trouble with the styles and getting them to work. Do I just paste the CSS provided above into the styles.css or is there a special file or section of a file where I should put the code?
Thanks.
~Greg
Thank you very much, I´ve searched for this code sooo long. Just placed it in my header, it looks awesome!
subj
?
perfect, just what i needed. thanks very much!
Hi, can you tell me what’s the latest version of WordPress that this plug-in works with? I use v2.3.2 and can’t get this plugin to show up in my WordPress plugins page.
Thanks –
in case people are still looking for an update to this great plugin: http://gormful.com/random-quotes-plugin-update/
Full Paris Hilton sex tape videos here…
Recently leaked footage of the new Paris Hilton sex tape…
Does this plugin work with v2.3.2? I installed the plugin but when I edit a quote or try to add a quote it is not saved. I’ve used this plugin with an older version of WP and it works fine, so I’m wondering if it is 2.3.2.
“Does this plugin work with v2.3.2? I installed the plugin but when I edit a quote or try to add a quote it is not saved. I’ve used this plugin with an older version of WP and it works fine, so I’m wondering if it is 2.3.2.”
ME TOO !!!
yeaaaaaaah ! it’s realy works on 2.3.2
Just don’t forget to do these steps Barb
Copy the file wp-quotes.php to your wp-content/plugins/
AND
Copy the file edit-quotes.php to your wp-admin/
Thanks alot , it’s very good plugin
Here’s something that maybe should be pointed out in the instructions for this plug-in: Because of the weird place you have to put the plug-in file (you have to put “edit-quotes.php” into the wp-admin folder), if you follow the WordPress upgrade instructions to the letter, you delete the plug-in.
It still works — you just have to remember to have a copy of the two plug-in files and copy them back to your site in the proper places.
I like the plug-in, but that should definitely be pointed out.
hi,plug in have problem with Unicode UTF-8 .
ya rite but some times its not work yaar. Give me some more info
Great plugin. Thanks a lot!
Soma buy soma cheap soma soma online….
Cheap soma. Cheap soma online pharmacy….
Great plugin. Thnx
thanx plung.
I am really impressed with the simplicity and ease of use with this plugin. I have tried a few versions of random quotes, and this has to be the best, especially as it integrates with the main content management.
Zoloft muscular side effects….
Uncommon side effects of zoloft. Zoloft side effects….
I just wanted to mention that the “idea whose time has come” quote is from Victor Hugo
Ballet routines for slimming and toning….
Wu-long premium slimming tea….
Great plugin - loving it.
Question, though: is there a way to export the database of quotes, once you have them all entered?
ive uploaded the two files and the menu item isnt showing up in my admin>manage section.
what am i doin wrong?
very easy to implement and use! thank you very much!
I’ve used your quotation widget for a long time now, I’m very fond of it. I would like to make a change though, and I’m not a programmer, not even close. The author’s name, I’d like to have it aligned on the right, rather than on the left. It just isn’t looking right to me all of sudden. I notice yours is on the right too. I was thinking I could add a little dash in front of it like: - Thomas Jefferson Any help appreciated, thank-you.
Great plugin. Thanks for sharing.
Thanks for the nice plugin. I will test if it works well with the latest version of wordpress.
Love this plugin! It adds a little pizazz to my header now. One question: how do I get the quotes page up and running? Thanks.
Hi,
I have wp-quotes installed as well as wp-cache. This causes the quotes not to “rotate.” Does anyone know a work around for this?
Awesome. Thankyou.
This plugin is wonderful! Installed and worked exactly as described! I would like to use this for a word of the day sidebar. Right now I’m putting the word in the author field so it appears after the definition which I’m putting in the quote field. I was wondering how hard it would be to reverse the display order, ie. show the Author at the top and the quote at the bottom?? Thanks again for making such a great plug-in!
Duprost….
Duprost….
Mother daughter incest mother….
Mother daughter incest pictures. Mother daughter incest layton. Mother daughter incest. Mother daughter incest free….
Actual topic. Writing is worthy of attention.
Is there a way to get the author name a line lower and highlighted? Bold or Italic? It right now blends with the quote and I would like to offset it in some way. Thanks!
В принципе согласен, но есть некоторые ньюансы, которые требуют более детального обсуждения.
Hi, how I can put some kind of pagination. I want when I list all quotes to break on 10 pages, I have more than 5000 quotes and loading page is realy slow. Please make some kind of pagination.
Looks good, shame it doesn’t work with WP 2.6
This has been a great plugin. I’ve been using it as a testimonials display.
Upgrading to WP 2.6.2 crashed the back end. The widget is still working on the front. Any plans for an upgraded version?
Plugin doesnt work in my WP 2.6 too…
Why i can’t find my comment????46
好文………………….28
I had the same “lost edit functionality” with the 2.6.2 upgrade. Here’s the deal:
If you upgrade WordPress automatically, it will overwrite the edit-quotes.php file in the /wp-admin directory. Just download 1.3 again (top of the page) and upload the edit-quotes.php file.
Everything should be hunky dorey after that.
Feature request:
I would like to add an image of the person who provided the quote. Much like the way gravatars show in comments for example. Is that a feature you would consider adding to the plugin?
Bitchola.. Freaking sweet.. Bad monkey.. Holy crap..
This is a nice plugin but the language is not great for people putting together sites for clients.
Nice plugin……Thanks
Thanks for your work!
Ciao,
Emanuele
Is there some way I could do an RSS feed of my own personal WP-Quotes? Gmail has a nice Random Signature generator that rotates among random quotes for your email signature. All you have to do is specify an RSS feed. I’d love to have control over the pool from which the quotes are pulled.
I want to run wp-quotes in wordpress 2.7, how can I do that?
I can’t get quotes to work. I can see in my site the ones I had added a long time ago, but the interface to add new doesn’t work. Can someone help me?
thank you so much… great job… i like this…
If you have time, would you have any instructions on how to get the random quotes onto a static page. I’m not familiar with php. Is it possible to have a random quote page, with a sidebar?
Abdio dvd cd burner 7.0….
Abdio dvd cd burner 7.0….
I have noticed that nothing I never said ever did any harm
^ who’s that by?
Very usefull post, i think i will use it.
Thanks.
Hello
As newly registered user i only want to say hi to everyone else who uses this forum
Hy my name is mnorgovudkka
Im from mongolia
Buy
Hi, I am using your great plugin on my blog! Thanks a lot for sharing this.
One question: the is not working on WP 2.6 when I put it into of a page (no WYSIWYG). What I am doing wrong?
Greetings from Poland!
Doesn’t Work in WordPress 2.7. When trying to edit quotes I get the error message www.site.com/wp-admin/edit-quotes.php” Page does not exist. Any fixes?
Thank you so much for making this. It’s exactly what I needed and you stopped my frustration!
Hi,
Enjoyed your widget, but it’s not longer compatible with WP 2.7. Same happens to me as happens to Jaye: I get a “Page does not exist” error. Any help?
I’m getting the same as the last few posters, but it just seems that the file is missing. I’d presume that something in the upgrade process didn’t like the file it didn’t recognize in wp-admin. I copied the file over from my backup and everything was fine.
Давно хотел спросить, автор, вы где проживаете? В смысле города?
Прикольно и полезно, а будет еще что-нибудь по этой теме?
Вот именно поэтому и иногда не хочется идти вперёд!
Интересно. Вообще чтение вашего блога это не просто глупое просматривание разных тем или чтениевсякой фигни про то, чем человек сегодня занимался, а нахождение реально полезной информации.
for future askers - Joe Helfrich got it absolutely right. i also looked for answers on this page after upgrading and a simple copy did the job.
Just copy the edit-quotes.php to the /wp-admin
I’ve used your WP plugin for quite some time now and would like to give you proper credit on my site. If you have a Zombie Robot button/logo I would be more than happy to put it in my Credits. Thank you!
I’m having an error in which wordpress 2.7.1 is unable open up edit-quotes.php after I click on “quotes”. It just displays that the page is missing on my browser. What should I do to make it work?
Thanks,
Bao
Teentop links directory, link exchange, add url, add link