Title: WP Error on shortcode
Last modified: September 1, 2016

---

# WP Error on shortcode

 *  Resolved [Cheryl_P](https://wordpress.org/support/users/cheryl_p/)
 * (@cheryl_p)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/wp-error-on-shortcode/)
 * Hi,
 * I really like the plugin but it’s bringing up a warning when i try to use the
   function in my theme:
 * _Warning: Missing argument 1 for Text\_Slider::shortcode(), called in /plugins/
   text-slider/public/class-text-slider.php on line 458 and defined in /plugins/
   text-slider/public/class-text-slider.php on line 324_
 * Any ideas?
 * [https://wordpress.org/plugins/text-slider/](https://wordpress.org/plugins/text-slider/)

Viewing 1 replies (of 1 total)

 *  [kinospro](https://wordpress.org/support/users/kinospro/)
 * (@kinospro)
 * [9 years ago](https://wordpress.org/support/topic/wp-error-on-shortcode/#post-9100150)
 * Here is solution:
    1. Go to base_dir/wp-content/plugins/text-slider/public/class-
   text-slider.php 2. Find block
 *     ```
       // Template tag.
       function wp_text_slider() {
       	echo Text_Slider::get_instance()->shortcode();
       }
       ```
   
 * 3. Replace with
 *     ```
       // Template tag.
       function wp_text_slider() {
       	echo Text_Slider::get_instance()->shortcode('');
       }
       ```
   
 * Done. Considering the fact this plugin didn’t update for last 2 years there will
   be no problems with plugin files overriding 😉

Viewing 1 replies (of 1 total)

The topic ‘WP Error on shortcode’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/text-slider_6ebaa9.svg)
 * [Text Slider](https://wordpress.org/plugins/text-slider/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/text-slider/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/text-slider/)
 * [Active Topics](https://wordpress.org/support/plugin/text-slider/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/text-slider/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/text-slider/reviews/)

## Tags

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

 * 1 reply
 * 2 participants
 * Last reply from: [kinospro](https://wordpress.org/support/users/kinospro/)
 * Last activity: [9 years ago](https://wordpress.org/support/topic/wp-error-on-shortcode/#post-9100150)
 * Status: resolved