Skip to content

Other storefront modules

Additional storefront modules. Enable each one independently in WooCommerce > Polski > Storefront Modules.

The tab manager allows controlling tabs displayed on the product page (Description, Additional Information, Reviews, etc.).

  • Reorder - drag and drop tabs in the desired order
  • Hide tabs - hide a selected tab without deleting content
  • Rename - give tabs custom names (e.g. “Details” instead of “Description”)
  • Add tabs - create custom tabs with your own content
  • Global tabs - tabs visible on all products
  • Per product tabs - tabs visible only on a selected product
  • Per category tabs - tabs visible on products from a specific category

In the tab manager settings, click Add tab and fill in:

  • Name - tab title
  • Content - supports WYSIWYG editor, shortcodes and HTML
  • Priority - tab position (lower = more to the left)
  • Visibility - global, selected category or selected product

Programmatically:

add_filter('woocommerce_product_tabs', function (array $tabs): array {
$tabs['custom_tab'] = [
'title' => 'Warranty',
'priority' => 25,
'callback' => function (): void {
echo '<p>Product covered by 24-month manufacturer warranty.</p>';
},
];
return $tabs;
});

The module allows replacing or supplementing the main product image with a video.

  • YouTube - paste the video URL
  • Vimeo - paste the video URL
  • Custom video - upload an MP4 file to the media library
  • External URL - link to an MP4/WebM file

In the product editor, in the Product Image section, an additional Product Video field appears. Paste a video URL or select from the media library.

Display options:

OptionDescriptionDefault
PositionFirst in gallery / lastFirst
AutoplayAutomatic playbackNo
MutedMuted by defaultYes
LoopLoop playbackNo
Aspect ratio16:9 / 4:3 / 1:116:9
Play iconPlay icon on thumbnailYes

YouTube and Vimeo videos are lazy-loaded - the player iframe is inserted only after clicking the thumbnail with the play icon. This prevents the product page from being slowed down by external player scripts.

The module adds product image zoom on hover or click.

  • Hover - magnification displayed inside the image on hover
  • Lens - magnifying lens following the cursor
  • Lightbox - fullscreen preview on click
// Change zoom type
add_filter('polski/gallery_zoom/type', function (): string {
return 'lens'; // 'hover', 'lens', 'lightbox'
});
// Change magnification scale
add_filter('polski/gallery_zoom/scale', function (): float {
return 2.5; // default 2.0
});

Image requirements: for zoom to look good, product images should have a resolution of at least 1200x1200 px. At lower resolutions, the magnified image will be blurry.

The module allows customers to sign up for an email notification about product availability when it is temporarily out of stock.

  1. Customer visits an out-of-stock product page
  2. Instead of the Add to cart button, a form with an email field appears
  3. Customer enters their email address and clicks Notify me
  4. When the product is back in stock, the system automatically sends a notification

In the admin panel (WooCommerce > Polski > Waitlist) you can see:

  • Product list with number of waiting customers
  • Email addresses of registered customers
  • Notification status (sent / pending)
  • Button for manually sending notifications

The signup form includes a consent checkbox for personal data processing in accordance with GDPR. The checkbox text is configurable in module settings.

add_filter('polski/waitlist/consent_text', function (): string {
return 'I consent to receiving a one-time notification about product availability.';
});

Email addresses are removed from the list after:

  • Sending the notification
  • 90 days from signup (configurable period)
  • Manual deletion by administrator

The module replaces traditional pagination with automatic loading of additional product pages when scrolling.

  • Automatic - next page loads automatically when the user reaches the end of the list
  • Button - displays a Load more button instead of automatic loading
OptionDescriptionDefault
ModeAutomatic or buttonAutomatic
DistanceDistance from bottom of list (px)300
Button textText on the buttonLoad more
SpinnerLoading animation typeDots
Page limitMaximum number of pages10

Infinite scroll supports the ?paged=N URL parameter (History API). Search engines still see classic pagination - the module serves paginated URLs to bots.

// Disable infinite scroll on mobile devices
add_filter('polski/infinite_scroll/enabled', function (): bool {
return ! wp_is_mobile();
});

The module displays a configurable popup (modal window) on the store page.

  • Newsletter - newsletter signup form
  • Informational - any HTML content/shortcodes
  • Product - promoting a selected product
  • Exit - displayed when attempting to leave the page (exit intent)
TriggerDescription
TimeAfter X seconds from page entry
ScrollAfter scrolling X% of the page
Exit intentWhen the cursor leaves the browser window
ClickAfter clicking an element with a CSS class
Visit countAfter the Nth visit to the page
  • Once per session - popup displays once during the visit
  • Once per X days - popup does not show again for X days (cookie)
  • New visitors only - popup visible only to new visitors
  • Selected pages - popup visible only on specified pages

Go to WooCommerce > Polski > Storefront Modules > Popup and configure:

  • Popup content (WYSIWYG editor with shortcode support)
  • Trigger and display conditions
  • Style (colors, size, animation)
  • Position (center, bottom, side)
  • Close button

Popups should not hinder store usage (dark patterns). The module enforces:

  • Visible close button (X)
  • Ability to close by clicking the background
  • Escape key closing
  • No blocking of page scrolling under the popup

Tab manager does not save the order - clear browser cache and WordPress cache. The problem may also be caused by a conflict with a tab plugin.

Zoom does not work on mobile - hover and lens modes do not work on touch devices. Use lightbox mode for mobile.

Infinite scroll does not load additional pages - check if the theme uses standard WooCommerce pagination (woocommerce_pagination()).

Popup does not display - check cookie settings. If the popup has already been displayed, a cookie blocks re-display. Clear cookies or set a different frequency.

Report issues: github.com/wppoland/polski/issues

This page is for informational purposes only and does not constitute legal advice. Consult a lawyer before implementation. Polski for WooCommerce is open source software (GPLv2) provided without warranty.