Quotes llama

Description

Create a collection of quotes. Share the thoughts that mean the most… display your quotes in block, widget, page, template, gallery or post.

  • Searchable
  • Categories
  • Floating Gallery
  • Icons
  • Backup/Restore
  • … many options.

Screenshots

  • Admin
  • Gallery
  • Widget
  • Page

Installation

How to install via Dashboard

  • Go to Plugins -> Add New.
  • Search for quotes-llama.
  • Click Install Now.
  • Activate the plugin through the Plugins menu in the Dashboard.

How to install via .zip file

  • After downloading, in the dashboard, go to Plugins -> Add New -> Upload Plugin.
  • Click Browse and select the quotes-llama.zip file.
  • Click Install Now.
  • Activate the plugin through the Plugins menu in the Dashboard.
  • You can also extract the .zip file. Then copy the quotes-llama folder to the /wp-content/plugins/ directory.

How to install via FTP

  • After downloading and extracting the quotes-llama.zip file. Upload the quotes-llama folder to the /wp-content/plugins/ directory.
  • Activate the plugin through the Plugins menu in the Dashboard.

FAQ

(Support)

  • Before submitting a support ticket, please review the troubleshooting section.

  • Describe the problem with as much detail as possible.

  • Describe the steps already taken to resolve the problem.

  • Provide any console and WP_DEBUG notices, warnings and errors associated with the problem.

  • Provide the version of WordPress, PHP, and the Quotes llama Plugin you are using.

  • Provide the theme you are using and a link to the theme so it can be used in troubleshooting.

  • Provide the shortcode you are using.

  • In an attempt to duplicate your WordPress environment as much as possible, include any other information you think would be helpful in reproducing the error.

(Troubleshooting)

If you encounter any problems — you can try:

  • Clear your browser cache. Disable caching plugins.

  • Check that the shortcode you are using is accurate and formatted correctly.

  • Reset the options: Verify “Reset When Deactivating” is enabled in the plugin options tab, then deactivate/activate the plugin.

  • View the console and enable WP_DEBUG mode to check for notices, warnings or errors. If you find any regarding this plugin, open a support ticket.

  • Re-install: Deactivate and delete the plugin (this does not delete quote data) and re-install from WordPress.

  • Deactivate all other plugins and verify the problem still exists.

  • Test some different themes and verify the problem still exists.

  • Verify your PHP version is compatible with your version of WordPress.

Advanced Formatting

Tag (attribute) – ‘example’

  • a (href, target, rel, class, title) – <a href="http://example.com" target="_blank" rel="nofollow" class="class" title="example">example</a>
  • b<b>Bold text</b>
  • br (clear) – <br clear="left">
  • del<del>This text will have a line through it.</del>
  • em<em>Emphasized text.</em>
  • i<i>Italic text.</i>
  • mark<mark>Highlight text</mark>
  • small<small>Small text</small>
  • strong<strong>This text is important!</strong>
  • sub<sub>Subscripted text</sub>
  • sup<sup>Superscripted text</sup>
  • u<u>Underlined text</u>

Basic Formatting

  • Create a link by entering the url.
  • Create a new line in the quotes field with (enter) or (shift+enter).

Beta Testing

  • Some features or specific parts of this plugin may still be in testing mode. Assistance identifying hidden bugs is encouraged. If you have found a bug, please submit a support ticket.

Icons

  • The WordPress Dash-Icons set is included by default.
  • Custom image icons (png, gif, jpg, bmp, svg) can be copied to the “wp-content/uploads/quotes-llama/” directory.

You can configure the “next quote” link (in the options tab) which is displayed in widgets and wherever you place the shortcode [quotes-llama].

Here are some examples:

  • Default: &hellip; (next quote)
  • Plain Text: next quote >>
  • Dash-Icon: next quote <span class="dashicons dashicons-arrow-right-alt2">
  • Unicode: next quote »

You can also change how the link is displayed using CSS.
Some examples:

  • .quotes-llama-widget-random hr {display: none;} This will remove the line between the quote and the link.
  • .quotes-llama-widget-next {text-align: left; font-style: normal;} This will align to the left and remove the italic.

Navigate to your Dashboard–>Appearance–>Customize–>Additional CSS. DO NOT directly edit any theme/plugin files as they are ALL overwritten when updating.

Security

  • Be aware that external linking of sites and images creates the possibility of a (BLH) attack. Broken link hijacking (BLH) is a type of web attack which exploits external links that are no longer valid. Mainly due to an expired domain. The link content can be replaced and redirected, used to deface, impersonate, or even launch cross-site (XSS) scripting attacks.

Shortcodes

Use the plugin by including a shortcode or by including the widget in the desired location:

To include this plugin in a Block, Page or Post:

  • Display a random quote.
    [quotes-llama]

  • Display a random quote from a category
    [quotes-llama cat=’category’]

  • Display a dynamically positioned gallery. – (auto-refresh)
    [quotes-llama mode=”gallery”]

  • Display a dynamically positioned gallery from a category. – (auto-refresh)
    [quotes-llama mode=’gallery’ cat=’category’]

  • Display a indexed and searchable page of quote Authors.
    [quotes-llama mode=”page”]

  • Display a indexed and searchable page of quote Authors.
    [quotes-llama mode=’page’ cat=’category’]

  • Display a random quote that will auto-refresh.
    [quotes-llama mode=’auto’]

  • Display a random quote from a category that will auto-refresh.
    [quotes-llama mode=’auto’ cat=’category’]

  • Display static quotes.
    [quotes-llama id=’#,#,#’]

  • Display all quotes by id, random, ascending, or descending.
    [quotes-llama all=’id’]
    [quotes-llama all=’random’]
    [quotes-llama all=’ascend’]
    [quotes-llama all=’descend’]
    [quotes-llama all='(1)’ cat=’category’]
    (1) = (id, random, ascend, descend)

To include this plugin in a Template File:

  • Display a random quote.
    do_shortcode( “[quotes-llama]” );

  • Display a random quote from a category.
    do_shortcode( “[quotes-llama cat=’category’]” );

  • Display a dynamically positioned gallery. – (auto-refresh)
    do_shortcode( “[quotes-llama mode=’gallery’]” );

  • Display a dynamically positioned gallery from a category. – (auto-refresh)
    do_shortcode( “[quotes-llama mode=’gallery’ cat=’category’]” );

  • Display an indexed and searchable page of quote Authors.
    do_shortcode( “[quotes-llama mode=’page’]” );

  • Display an indexed and searchable page of quote Authors by category.
    do_shortcode( “[quotes-llama mode=’page’ cat=’category’]” );

  • Display a random quote that will auto-refresh.
    do_shortcode( “[quotes-llama mode=’auto’]” );

  • Display a random quote from a category that will auto-refresh.
    do_shortcode( “[quotes-llama mode=’auto’ cat=’category’]” );

  • Display static quotes.
    do_shortcode( “[quotes-llama id=’#,#,#’]” );

  • Display all quotes by id, random, ascending, or descending.
    do_shortcode( “[quotes-llama all=’id’]” );
    do_shortcode( “[quotes-llama all=’random’]” );
    do_shortcode( “[quotes-llama all=’ascend’]” );
    do_shortcode( “[quotes-llama all=’descend’]” );
    do_shortcode( “[quotes-llama all='(1)’ cat=’category’]” );
    (1) = (id, random, ascend, descend)

To include this plugin in a Widget:

  • Drag-and-drop the Quotes llama widget located in the Widgets Page to the desired location.

Reviews

ጥሪ 13, 2023
Was looking for a new plugin after quotes collection. This one works perfectly!
ጥሪ 10, 2023
Clear UI. Useful functions and best of all, it has a Json import function.The export from Srini's Quotes Collection plugin has to be massaged only a little (renaming a couple of fields) to migrate your collection of quotes. That saved me a lot of time.Recommended!
ታሕሳስ 16, 2022
After trying several plugins, this was the only one with which I was able to create a custom list of quotes and display a random one on each page load. Great support as well! Highly recommended.
Read all 16 reviews

Contributors & Developers

“Quotes llama” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Quotes llama” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

Upgrade Notice

  • If you encounter problems, please refer to the Support and Troubleshooting FAQ.
  • Version History