Slider Pro Shortcodes

Below, you’ll find a detailed guide on how to add the Slider Pro Shortcodes to your WordPress website, including their parameters, examples, and PHP function code. Additionally, we’ll assist you with common issues that might cause the Slider Pro Plugin shortcodes not to show or not to work correctly.

Before starting, here is an overview of the Slider Pro Plugin and the shortcodes it provides:

Plugin Icon
Slider Pro

"Slider Pro is a dynamic WordPress plugin that allows you to effortlessly create, manage, and customize interactive slideshows for your website. With Slider Pro, your content comes to life!"

★★★★★ (6) Active Installs: 5000+ Tested with: 6.3.2 PHP Version: false
Included Shortcodes:
  • [sliderpro_lightbox]
  • [sliderpro]
  • [sliderpro_slide]
  • [sliderpro_slide_element]

Slider Pro [sliderpro_lightbox] Shortcode

The SliderPro Lightbox shortcode allows you to create dynamic sliders with a lightbox effect. It loads necessary scripts, fetches the slider ID, and manages caching.

Shortcode: [sliderpro_lightbox]

Parameters

Here is a list of all possible sliderpro_lightbox shortcode parameters and attributes:

  • id – A unique identifier for the specific slider.
  • allow_cache – A value that determines whether the slider data should be cached or not.

Examples and Usage

Basic example – Displaying a slider with a specific ID.

[sliderpro_lightbox id=3 /]

Advanced Examples

Displaying a slider with a specific ID and disabling the cache. This will ensure that the slider is always loaded from the database and not from the cache, making it useful when the slider content changes frequently.

[sliderpro_lightbox id=3 allow_cache=false /]

Using the shortcode to display a slider by referencing both ID and content. The slider will first try to load by ID, but if not found, it will try to load by content.

[sliderpro_lightbox id=3 content="Your content here" /]

PHP Function Code

In case you have difficulties debugging what causing issues with [sliderpro_lightbox] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode( 'sliderpro_lightbox', array( $this, 'sliderpro_lightbox_shortcode' ) );

Shortcode PHP function:

Code file location:

sliderpro/sliderpro/public/class-lightbox-slider.php

Slider Pro [sliderpro] Shortcode

The SliderPro shortcode enables the creation and customization of sliders in WordPress. It checks if CSS files are enqueued, displays a warning message if not, and loads the styles. It fetches the slider ID from the shortcode and checks cache allowance. If caching is allowed, it loads the slider from the cache. If not, it creates the slider from scratch, overriding settings with those specified in the shortcode. Shortcode: [sliderpro]

Shortcode: [sliderpro]

Parameters

Here is a list of all possible sliderpro shortcode parameters and attributes:

  • id – The unique identification number for the slider.
  • allow_cache – Determines if the slider can be cached for faster loading.
  • name – Name of the slider for easy reference and organization.
  • breakpoints – Sets responsive design breakpoints for the slider.
  • settings – Allows custom configuration of slider settings.

Examples and Usage

Basic example – Displaying a slider by referencing its ID.

[sliderpro id=1 /]

Advanced examples

Using the shortcode to display a slider by referencing both ID and cache settings. If the ‘allow_cache’ attribute is set to false, the slider will not load from cache.

[sliderpro id=1 allow_cache=false /]

Using the shortcode to display a slider by referencing its ID, cache settings, and a custom name. If the ‘name’ attribute is specified, it will override the slider’s default name.

[sliderpro id=1 allow_cache=false name="Custom Name" /]

Using the shortcode to display a slider by referencing its ID and custom settings. The settings attribute can be used to specify custom settings for the slider. The value should be a JSON object.

[sliderpro id=1 settings='{"width": 500, "height": 300}' /]

Using the shortcode to display a slider with custom slides. The ‘slides’ attribute can be used to specify custom slides for the slider. The value should be a JSON object.

[sliderpro id=1 slides='[{"image": "img1.jpg", "title": "Slide 1"}, {"image": "img2.jpg", "title": "Slide 2"}]' /]

PHP Function Code

In case you have difficulties debugging what causing issues with [sliderpro] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode( 'sliderpro', array( $this, 'sliderpro_shortcode' ) );

Shortcode PHP function:

Code file location:

sliderpro/sliderpro/public/class-sliderpro.php

Slider Pro [sliderpro_slide] Shortcode

The SliderPro Slide shortcode is a dynamic tool that creates customizable slides. It parses attributes passed, allowing for diverse post types and taxonomies. The shortcode also processes content, removing line breaks and splitting it into elements. Each element is then checked, with layers and their settings being handled separately. The final slide is returned as a JSON object, ready for display. This shortcode enables dynamic, adaptable slide creation in WordPress.

Shortcode: [sliderpro_slide]

Parameters

Here is a list of all possible sliderpro_slide shortcode parameters and attributes:

  • index – determines the position of the slide in the slider
  • posts_post_types – specifies the type of posts to be displayed in the slide
  • posts_taxonomies – defines the taxonomy of the posts in the slide
  • layer – holds the text content of the slide layer
  • layer_settings – controls the settings for the slide layer

Examples and Usage

Basic example – A simple usage of the shortcode to display a slide using SliderPro plugin. This shortcode will create a slide at the end of the slider.

[sliderpro_slide index="end" /]

Advanced examples

Creating a slide with specific post types and taxonomies. In this example, we are creating a slide with posts of type ‘blog’ and ‘news’ and taxonomies ‘category’ and ‘tag’.

[sliderpro_slide posts_post_types="blog,news" posts_taxonomies="category,tag" /]

Adding a layer to the slide. The layer contains text and settings. The settings include the ‘width’ and ‘height’ of the layer.

[sliderpro_slide layer="This is a layer" layer_settings="width:100px,height:50px" /]

Combining multiple parameters. This example creates a slide with specific post types, taxonomies and a layer with settings.

[sliderpro_slide posts_post_types="blog,news" posts_taxonomies="category,tag" layer="This is a layer" layer_settings="width:100px,height:50px" /]

PHP Function Code

In case you have difficulties debugging what causing issues with [sliderpro_slide] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode( 'sliderpro_slide', array( $this, 'sliderpro_slide_shortcode' ) );

Shortcode PHP function:

Code file location:

sliderpro/sliderpro/public/class-sliderpro.php

Slider Pro [sliderpro_slide_element] Shortcode

The SliderPro Slide Element shortcode is used to add or modify slide elements. It processes attributes like ‘name’ and ‘layer’, and returns a JSON-encoded array.

Shortcode: [sliderpro_slide_element]

Parameters

Here is a list of all possible sliderpro_slide_element shortcode parameters and attributes:

  • name – Defines the type of slide element.
  • layer – Determines whether the slide element is a layer or not.
  • true – Sets the layer to be active.
  • false – Disables the layer feature.
  • preset_styles – Defines the preset styles for the layer, separated by commas.

Examples and Usage

Basic Example – SliderPro Slide Element shortcode allows you to create customized sliders in your WordPress content. Here is a simple example of how to use this shortcode:

[sliderpro_slide_element name="my_slide" layer="true" /]

In this example, we are creating a slide element named “my_slide”. We have also set the layer attribute to “true”, this means the slide will have layer settings enabled.

Advanced Examples

SliderPro Slide Element shortcode can also be used with multiple parameters to further customize your slides. Here is an advanced example:

[sliderpro_slide_element name="my_advance_slide" layer="true" preset_styles="style1,style2,style3" /]

In the above example, we are creating a slide element named “my_advance_slide” with layer settings enabled. We have also specified multiple preset styles “style1”, “style2”, and “style3”. These styles will be applied to the slide in the order they are listed.

Another advanced example could be using the shortcode to create a slide without layer settings:

[sliderpro_slide_element name="my_simple_slide" layer="false" /]

In this example, we are creating a slide named “my_simple_slide” with layer settings disabled. This will create a simple slide without any layered effects.

PHP Function Code

In case you have difficulties debugging what causing issues with [sliderpro_slide_element] shortcode, check below the related PHP functions code.

Shortcode line:

add_shortcode( 'sliderpro_slide_element', array( $this, 'sliderpro_slide_element_shortcode' ) );

Shortcode PHP function:

Code file location:

sliderpro/sliderpro/public/class-sliderpro.php

Conclusion

Now that you’ve learned how to embed the Slider Pro Plugin shortcodes, understood the parameters, and seen code examples, it’s easy to use and debug any issue that might cause it to ‘not work’. If you still have difficulties with it, don’t hesitate to leave a comment below.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *