Title: Bug with styles found
Last modified: June 2, 2026

---

# Bug with styles found

 *  Resolved [pobrehablador](https://wordpress.org/support/users/pobrehablador/)
 * (@pobrehablador)
 * [2 weeks, 1 day ago](https://wordpress.org/support/topic/bug-with-styles-found/)
 * This is totally wrong (in **quotes-llama/class-quotesllama.php**):
 * `wp_enqueue_style( 'dashicons-style', get_stylesheet_uri(), array( 'dashicons'),
   $this->plugin_version() );`
 * the right method is:
 * `wp_enqueue_style( 'dashicons' );`

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [oooorgle](https://wordpress.org/support/users/oooorgle/)
 * (@oooorgle)
 * [2 weeks ago](https://wordpress.org/support/topic/bug-with-styles-found/#post-18926743)
 * Are the dash-icons set not working?
 * [https://developer.wordpress.org/reference/functions/wp_enqueue_style/](https://developer.wordpress.org/reference/functions/wp_enqueue_style/)
 *  Thread Starter [pobrehablador](https://wordpress.org/support/users/pobrehablador/)
 * (@pobrehablador)
 * [2 weeks ago](https://wordpress.org/support/topic/bug-with-styles-found/#post-18926799)
 * Of course it is not working. What the current line of code in this plugin does
   is enqueue the active theme’s stylesheet with a wrong handler, not WordPress’s
   Dashicons stylesheet. That is why I proposed the correct solution of using: `
   wp_enqueue_style( 'dashicons' );` which is the appropriate approach if the intention
   is to make this icon set available on the frontend. In any case, it would be 
   useful or interesting to have an option in the plugin settings where this is 
   optional. If the user does not want to display those icons in the quotes, there
   is no need to load the Dashicons stylesheet on the frontend, and the page load
   can be reduced.
    -  This reply was modified 2 weeks ago by [pobrehablador](https://wordpress.org/support/users/pobrehablador/).
 *  Plugin Author [oooorgle](https://wordpress.org/support/users/oooorgle/)
 * (@oooorgle)
 * [2 weeks ago](https://wordpress.org/support/topic/bug-with-styles-found/#post-18926826)
 * Yes I see! I will get that fixed in the next update. I will look at adding that
   option as well… have a few things with this plugin where it need to be optimized
   better. Really struggling to find the best solution between using a large dataset
   of quotes vs. excessive ajax calls, for example. Please do let me know if you
   happen to notice anything else.
 * Thanks for the heads up!
 *  Plugin Author [oooorgle](https://wordpress.org/support/users/oooorgle/)
 * (@oooorgle)
 * [1 week, 6 days ago](https://wordpress.org/support/topic/bug-with-styles-found/#post-18928035)
 * Hi pobrehablador,
 * I have fixed the enqueue for the dash-icons. Thanks again!
 *     ```wp-block-code
           if ( $this->check_option( 'show_icons' ) ) {
               wp_enqueue_style( 'dashicons' );
           }
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fbug-with-styles-found%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/quotes-llama/assets/icon-128x128.png?rev=1332185)
 * [Quotes llama](https://wordpress.org/plugins/quotes-llama/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/quotes-llama/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/quotes-llama/)
 * [Active Topics](https://wordpress.org/support/plugin/quotes-llama/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/quotes-llama/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/quotes-llama/reviews/)

## Tags

 * [dashicons](https://wordpress.org/support/topic-tag/dashicons/)

 * 4 replies
 * 2 participants
 * Last reply from: [oooorgle](https://wordpress.org/support/users/oooorgle/)
 * Last activity: [1 week, 6 days ago](https://wordpress.org/support/topic/bug-with-styles-found/#post-18928035)
 * Status: resolved