Title: [Plugin: Fortunate Random Quotes]
Last modified: August 19, 2016

---

# [Plugin: Fortunate Random Quotes]

 *  [PaulD](https://wordpress.org/support/users/paulio51/)
 * (@paulio51)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/plugin-fortunate-random-quotes/)
 * Didn’t work out of the box for me and thought I would let anyone interested know
   how I got it working.
 * While changing every option on the options page trying to get this to work I 
   noticed that the quotes at the bottom of the page worked so I just copied that
   into the widget’s section (which is what I was using to show the quotes) and 
   it worked.
 * Basically, you add ‘ABSPATH . WPINC, 0’ to the ‘fortunate()’ function call.
 * So this…
 *     ```
       function fortunate_widget($args) {
         extract($args);
   
         echo $before_widget
              . $before_title . get_option('fortunate_title') . $after_title
              . fortunate() . $after_widget;
       }
       ```
   
 *  …becomes this…
 *     ```
       function fortunate_widget($args) {
         extract($args);
   
         echo $before_widget
              . $before_title . get_option('fortunate_title') . $after_title
              . fortunate(ABSPATH . WPINC, 0) . $after_widget;
       }
       ```
   
 * Hope that helps someone.
 * Paul
 * [http://wordpress.org/extend/plugins/fortunate/](http://wordpress.org/extend/plugins/fortunate/)

Viewing 1 replies (of 1 total)

 *  [kokopelli](https://wordpress.org/support/users/kokopelli/)
 * (@kokopelli)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-fortunate-random-quotes/#post-1580063)
 * It did indeed, thanks Paul!

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Fortunate Random Quotes]’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/fortunate.svg)
 * [Fortunate Random Quotes](https://wordpress.org/plugins/fortunate/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/fortunate/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/fortunate/)
 * [Active Topics](https://wordpress.org/support/plugin/fortunate/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/fortunate/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/fortunate/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [kokopelli](https://wordpress.org/support/users/kokopelli/)
 * Last activity: [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-fortunate-random-quotes/#post-1580063)
 * Status: not resolved