Customization

How to use Custom CSS editor

Shortcodes Ultimate plugin includes custom CSS editor, which you can use to easily change the appearance of shortcodes. Getting started Navigate to Dashboard → Shortcodes → Settings and find Custom CSS code…

Customizing the spoiler shortcode appearance

Using custom CSS class In this article, you’ll learn how to customize the appearance of the Spoiler shortcode. Follow the instructions below. Add custom CSS class to your shortcode: Then,…

Customizing the tabs shortcode

In this article, you’ll learn how to customize the appearance of the tabs shortcode. Custom CSS editor Navigate to Dashboard → Shortcodes → Settings and look for the Custom CSS code field. Copy/paste the…

Customizing table shortcode appearance

Follow instructions below to change the appearance of the su_table shortcode. First, add custom CSS class to your shortcode. Example: Then, navigate to Dashboard → Shortcodes → Settings and add…

How to disable or change the outline around tab and spoiler titles

Preface Since version 5.2.0 Tab and Spoiler titles have a thin outline around them when focused. The outline allows users who can’t use a mouse to access hidden content using…

Tracking button clicks in Google Analytics

This article presents the example of JavaScript-code. The code should be placed in the main file of your current active theme scripts. If you don’t know where to paste JavaScript-code you can use a…

Integrating premium add-ons with plugins and themes

Intro You can integrate premium add-ons of Shortcodes Ultimate plugin into your premium plugins and themes. Specific instructions for plugins and themes are given below. All integrations are made with…

Integrating the core plugin with plugins and themes

Intro You can integrate core-plugin Shortcodes Ultimate in both premium and free plugins and themes. Specific instructions for plugins and themes are given below. All integrations are made with TGM…

Tracking tab opening in Google Analytics

This article presents the example of JavaScript-code. The code should be placed in the main file of your current active theme scripts. If you don’t know where to paste JavaScript-code you can use a…

Replacing default shortcodes using the Shortcode Creator add-on

To replace any of default shortcode with your own, you should simply give your new shortcode the same short name as that of the shortcode you want to replace.  For…

Tracking spoiler opening in Google Analytics

This article presents the example of JavaScript-code. The code should be placed in the main file of your current active theme scripts. If you don’t know where to paste JavaScript-code you can use a…

Disabling ‘Rate the plugin’ popup

To disable the popup with a request to rate plugin you should add the following code to the functions.php file of your active theme: $su_notices = get_option( ‘su_option_dismissed_notices’, array() );$su_notices[‘rate’] = true;update_option(…