Thank you for using Aha Hero Slider

Thank you for trusting our plugins. Aha Hero Slider lets you build full-width hero carousels with a dedicated slide library, two core slide templates, global design settings, and a simple shortcode — the free plugin is complete on its own. Optional Aha Hero Slider Pro adds extra layouts, YouTube-in-slide behaviour, and a license tab inside these settings.

In WordPress, open Aha Hero Slider → Settings → Shortcode for an in-admin copy of the shortcode examples and the full attribute table (kept in sync with the plugin). Default autoplay, arrows, and radius live under General.

Discover other Aha Plugins and get more out of WordPress — tools built for quality and simplicity.

Visit Aha Plugins →

About the plugin

Aha Hero Slider is a free WordPress plugin (GPLv2 or later) that creates full-width hero carousels using a dedicated Custom Post Type (aha_hero_slide) and a simple shortcode. Each slide is a CPT post: you configure the images, texts, buttons, and styles directly in the post editor. Display is controlled entirely via the shortcode [aha_hero_slider]. An optional commercial add-on, Aha Hero Slider Pro, extends the same shortcode with extra layouts and features (see Pro add-on).

Plugin: Aha Hero Slider
Version: 1.0.0 (check Plugins in WordPress for the installed copy)
Requires: WordPress 5.9+, PHP 7.4+
License: GPLv2 or later (free plugin). Pro is sold separately at ahaplugins.com

Key features:

Installation

Via WordPress admin

  1. Go to Plugins → Add New.
  2. Search for Aha Hero Slider (or upload the plugin ZIP file).
  3. Click Install now, then Activate.
  4. Go to Aha Hero Slider in the admin sidebar to create your first slide.

Via FTP

  1. Unzip the plugin ZIP file on your computer.
  2. Connect to your server via FTP and go to wp-content/plugins.
  3. Upload the aha-hero-slider folder into wp-content/plugins.
  4. In the WordPress admin, go to Plugins and activate Aha Hero Slider.
Quick start After activation, go to Aha Hero Slider → Hero slides → Add slide to create your first slide, then place [aha_hero_slider] on any page.

Creating slides

Go to Aha Hero Slider → Hero slides → Add slide. Each slide is a WordPress post with a custom meta box containing all slide fields.

Slide template

At the top of the meta box, choose the slide template:

Default template fields

Each text field and button has a Style expandable section where you can set per-slide colors and font sizes. These override the global defaults from the Design settings.

Display rule Fields are only rendered on the frontend if they are not empty. Leave a field blank to hide it — no extra toggles needed.

Images

Automatic sizes (default) When Automatically generate optimised image sizes on upload is enabled in Aha Hero Slider → Settings → General, WordPress creates slider-specific copies: 1870×520 (desktop crop), 640×400 (mobile crop for most layouts), and 960 px wide proportional (mobile poster for the Pro “Video — full image” layout). The front end uses those when they exist, which reduces weight versus always loading the original file. After turning this on for the first time on a site with existing media, regenerate thumbnails (e.g. with a “Regenerate Thumbnails” plugin) so older uploads get the new sizes. The slide editor shows a short notice that matches your current setting.
Performance tip (sizes disabled) If you turn off automatic sizes, images are served at their original dimensions. Upload files at the recommended dimensions above for best performance.

Slide order

Use the Order field in the Page Attributes box (right sidebar in the post editor). Lower values appear first. If all slides have the same order value, they are sorted by date (newest first).

Slide groups

Assign each slide to one or more Slide groups using the taxonomy box in the post editor sidebar. Use groups when you need different sliders on different pages. See the Slide groups section for details.

Slide groups

Slide groups is a hierarchical taxonomy (similar to categories) that lets you organize slides into named groups and filter them per shortcode. This allows you to have completely different sliders on different pages of the same site.

Creating groups

  1. Go to Aha Hero Slider → Slide groups.
  2. Enter a name (e.g. “Homepage”) and an optional slug (e.g. homepage). The slug is used in the shortcode.
  3. Click Add new Slide group.

Assigning slides to groups

Open any slide in the editor. In the right sidebar, find the Slide groups box and check one or more groups. A slide can belong to multiple groups.

Displaying a specific group

Pass the group slug in the shortcode:

Use case Code
All published slides [aha_hero_slider]
Only slides in “homepage” group [aha_hero_slider group="homepage"]
Slides from multiple groups [aha_hero_slider group="sale,promo"]

Settings

Go to Aha Hero Slider in the admin sidebar. Settings are organized in tabs: General, Design, Shortcode, and Uninstall.

General

Design

Configure the default color palette and visual settings applied to all sliders. Per-slide Style options override text/button colors for that slide. Some colors can also be overridden per shortcode instance with hex attributes (see Shortcode reference); priority is: shortcode hexDesign settingbuilt-in CSS default.

Navigation

Autoplay progress

Mobile (Default template)

Overlay mask

An optional semi-transparent layer placed over the background image to improve text readability. Can be configured globally here or overridden per slider instance using the overlay, overlay_color, and overlay_opacity shortcode attributes.

Default text colors

Default button styles

Shortcode

Documentation-only tab: copyable shortcode, optional parameter tags, priority explanation, basic and advanced examples, the full attribute reference, and tips for page builders. Behaviour defaults are saved on General; colors on Design.

Uninstall

The Uninstall tab lets you choose whether to remove all plugin data (slides, slide groups, and settings) when the plugin is deleted from Plugins → Installed Plugins. Deactivating alone does not remove data. Media files in the library are not deleted automatically.

If Aha Hero Slider Pro is installed, the same “remove data on uninstall” preference also controls whether the Pro license option is deleted when the Pro plugin is deleted (see Pro readme).

Front-end carousel

The slider markup includes navigation prev/next buttons and a pagination list (dots) in the HTML output when there is more than one slide. JavaScript enhances behaviour: it builds the slide viewport/track, handles transitions, autoplay, swipe, keyboard on dots, and optional progress animation. Pagination uses real <button type="button"> elements for accessibility.

Progress indicator (when progress="bar" or progress="circle"): drawn with CSS custom properties --aha-hs-progress-track and --aha-hs-progress-fill. They are set from Design settings and/or shortcode hex attributes on that slider root, then fall back to the stylesheet defaults.

Arrows are hidden until you hover the slider; they fade and slide in from the sides (reduced motion: shorter transitions). With arrows="no", only the default arrow pair (direct children of the slider root) is hidden in CSS. You can add your own buttons inside slide content with classes aha-hero-slider__arrow--prev or aha-hero-slider__arrow--next if you need custom placement (use type="button").

Dynamic content: if your theme or builder injects slider HTML after load, call window.AhaHeroSlider.initOne(element) on the root .aha-hero-slider node (see plugin main.js). Each shortcode instance already initializes automatically on DOM ready.

Shortcode reference

Use the shortcode to display a hero slider on any page, post, widget, or page builder block. Place the shortcode in a Shortcode block (Gutenberg), a Shortcode widget, or directly in a text/HTML area of any page builder.

Shortcode: [aha_hero_slider]
Optional attributes: group, autoplay_speed, arrows, radius, transition, infinite, progress, title_tag, and optional hex colors: progress_track, progress_fill, arrow_bg, arrow_icon, bullet, bullet_active, overlay, overlay_color, overlay_opacity
Pro only: video_behavior — see Pro add-on

Basic examples

Use case Code
All published slides [aha_hero_slider]
Only slides in a specific group [aha_hero_slider group="homepage"]
Slides from multiple groups [aha_hero_slider group="sale,promo"]
Slower autoplay, no arrows [aha_hero_slider autoplay_speed="8000" arrows="no"]
Rounded corners [aha_hero_slider radius="16"]
Cross-fade transition [aha_hero_slider transition="fade"]
Vertical slide [aha_hero_slider transition="vertical"]
Finite carousel (no wrap; autoplay stops on last slide) [aha_hero_slider infinite="no"]
Seamless loop (horizontal or vertical slide) [aha_hero_slider infinite="seamless"]
Autoplay progress (top bar or circle) [aha_hero_slider progress="bar"] or progress="circle" (ring is an alias for circle)
Custom progress colors (hex) [aha_hero_slider progress="bar" progress_track="#333333" progress_fill="#d81e5b"]
Enable dark overlay for better text contrast [aha_hero_slider overlay="on" overlay_color="#000000" overlay_opacity="50"]
Disable overlay on specific slider [aha_hero_slider overlay="off"]
Custom overlay color and opacity [aha_hero_slider overlay="on" overlay_color="#1e3a8a" overlay_opacity="30"]
Custom navigation colors on one instance [aha_hero_slider arrow_bg="#222222" arrow_icon="#fff" bullet="#888" bullet_active="#d81e5b"]
Headline uses h3 (Default template) [aha_hero_slider title_tag="h3"]
All common attributes combined [aha_hero_slider group="homepage" autoplay_speed="6000" arrows="yes" radius="12" transition="slide" infinite="yes" progress="bar" title_tag="h2"]
Pro: lock navigation while YouTube plays in-slide [aha_hero_slider video_behavior="lock"] (requires Aha Hero Slider Pro)

Multiple sliders on the same page

You can place several shortcodes on the same page. Each instance runs independently with its own carousel and unique DOM id. Use different groups to show different slide sets:

[aha_hero_slider group="homepage"]

[aha_hero_slider group="promotions" radius="12"]

[aha_hero_slider group="testimonials" autoplay_speed="3000" arrows="no"]

All available attributes

Behaviour attributes override the General tab defaults where applicable. Color attributes accept WordPress-style hex only: #rgb or #rrggbb. Overlay attributes allow per-instance overlay control (enable/disable, color, opacity). Invalid or empty values are ignored (cascade continues to Design, then built-in CSS). Each color attribute applies only to that shortcode instance via an inline style on the slider root.

Attribute Accepted values Description
group slug or slug1,slug2 Filter slides by Slide group slug. Leave empty to show all published slides. Use comma-separated slugs for multiple groups.
autoplay_speed number (ms), e.g. 5000 Interval between slides in milliseconds. Use 0 to disable autoplay.
arrows yes / no Show or hide the default prev/next pair (direct children of the slider). Extra elements inside the slider with classes aha-hero-slider__arrow--prev or aha-hero-slider__arrow--next still receive the same behaviour. With no, only the default pair is hidden in CSS so custom nested arrows can remain visible.
radius number (px), 0–100 Border radius of the slider. 0 = square corners. Clips the slide images at the corners.
transition slide, fade, vertical slide (default): horizontal movement. fade: opacity cross-fade. vertical: movement along the Y axis. Aliases accepted: horizontal → slide; crossfade → fade; vertical-slide / vertical-slider → vertical. Ignored when there is only one slide.
infinite yes, no, seamless (or 1 / 0 for yes/no) yes (default): loop with a jump from last to first. no: finite; arrows do not wrap; autoplay does not advance past the last slide. seamless: clone-based loop for horizontal or vertical slide (smoother direction); with fade, seamless behaves like yes. Ignored for a single slide.
progress bar, circle (alias ring), or omit / other (off) Optional autoplay indicator: bar fills along the top; circle in the top-right. Only runs when autoplay_speed is greater than zero. On the last slide in finite mode, progress does not run.
title_tag h1h6 HTML heading element for the slide headline (Default template only). Default h2. Invalid values fall back to h2. If you set h1, only the first slide uses h1; slides 2+ use h2 to avoid multiple h1 on the page. Does not change badge or subtitle.
progress_track hex color Autoplay progress track (bar or circle ring). Overrides Design → Autoplay progress → Progress track for this instance.
progress_fill hex color Autoplay progress fill. Overrides Design → Progress fill.
arrow_bg hex color Arrow button background. Overrides Design → Navigation → Arrow background.
arrow_icon hex color Arrow icon color. Overrides Design → Arrow icon.
bullet hex color Inactive dot color. Overrides Design → Bullet.
bullet_active hex color Active dot color. Overrides Design → Bullet (active).
overlay on, off, yes, no, 1, 0 Enable or disable overlay mask for this slider instance. Use on/yes to enable with color and opacity from overlay_color and overlay_opacity attributes (or defaults). Use off/no to disable overlay even if enabled globally in Design settings.
overlay_color hex color Overlay mask color (default #000000). Only applies when overlay is enabled. Overrides Design → Overlay mask → Mask color for this instance.
overlay_opacity number 0–100 Overlay opacity percentage (default 40). 0 = fully transparent, 100 = fully opaque. Only applies when overlay is enabled. Overrides Design → Overlay mask → Opacity for this instance.
video_behavior hybrid (default) or lock Aha Hero Slider Pro only. Controls how the slider UI behaves while an in-slide YouTube video is playing: hybrid pauses autoplay and keeps arrows/dots visible with a close control; lock hides arrows/dots until the visitor closes the video. Invalid values fall back to hybrid. Exposed on the slider root as data-video-behavior for the Pro script.

In page builders

Aha Hero Slider Pro (optional)

Aha Hero Slider Pro is a separate add-on sold at ahaplugins.com. It requires the free plugin to be installed and active. It does not replace the free plugin; it registers extra slide layouts and admin fields through the same extension points the free version exposes.

Installation and license

  1. Install and activate Aha Hero Slider (free) first.
  2. Install and activate Aha Hero Slider Pro from the ZIP you receive after purchase.
  3. In WordPress, open Aha Hero Slider → License (tab added by Pro), paste your key, and click Validate license. Extra layouts stay disabled until the license is valid.

Extra slide layouts

With an active license, the slide editor gains additional layout tabs, for example:

Pro adds a YouTube (Pro) section in the slide meta for the video layouts (URL or ID) and, for full-image video, an option to hide the default play icon and use a custom graphic in the poster image.

Shortcode: video_behavior

Pro adds the optional attribute video_behavior to [aha_hero_slider] (default hybrid). Example:

[aha_hero_slider video_behavior="lock"]

See the attribute table in the Shortcode reference for accepted values.

Video – Setup and demo

Video walkthrough for setup and plugin demonstration.

[Video placeholder]

Add your setup and demo video embed (YouTube, Vimeo, etc.) here.