Skip to main content

Settings

Everything the extension controls lives on one page: Unyson+ → WooCommerce.

The WooCommerce settings page

The settings are grouped into four tabs:

TabWhat's in it
CatalogShop grid, sidebar, and the single-product gallery
BehaviorSale badges, AJAX cart, breadcrumb, sticky add-to-cart
Catalog ModeThe lookbook / closed-shop switches — see Catalog Mode
Shopper ToolsWishlist, compare, back-in-stock, swatches, size guide — see Shopper tools

Every tab is part of one form, so switching tabs never loses an edit and Save Changes covers the whole page. The open tab is written to the URL hash, so a particular tab can be linked or bookmarked.

Within a tab, only the first box is expanded on load — click a box title to open the others (that's the framework's standard behavior for option boxes, not something specific to this page).

Where these apply

These settings drive the shop / category archives and single product pages site-wide. They do not override a page-builder element's own options — a Products element placed on a page has its own columns and query settings, and uses those. The one exception is Catalog Mode, which is deliberately store-wide and reaches the elements too.

Shop Catalog

The Shop Catalog settings
SettingDefaultWhat it controls
Products per Row3Columns in the shop / category product grid on desktop. Choose 2–6.
Products per Page12How many products show before pagination on shop / category pages.
Shop SidebarNone (full width)Sidebar position on WooCommerce pages: None, Left or Right.
Shop Sidebar needs a WooCommerce-aware theme

Sidebar placement is a theme decision — the extension can only ask for it. With the UnysonPlus Theme (or any theme implementing the unysonplus_woocommerce_sidebar filter) this works as you'd expect. Under any other theme the setting is ignored and the theme's own sidebar handling applies.

Single Product

The Single Product settings
SettingDefaultWhat it controls
Gallery Thumbnail Columns4Number of thumbnail columns below the main product image.
Related Products3How many related products show on a single product page. Use 0 to hide them entirely.
Gallery ZoomOnMagnify the product image on hover.
Gallery LightboxOnOpen product images in a fullscreen lightbox.
Gallery SliderOnUse a thumbnail slider for the product gallery.

The three gallery switches map to WooCommerce's own theme-support features (wc-product-gallery-zoom, -lightbox, -slider). Turning one off removes that theme support, so the corresponding script is never loaded — this is a real page-weight saving on product pages, not just a visual toggle.

Gallery settings and your theme

These apply when the extension declared WooCommerce support (i.e. your theme didn't). A theme that declares the gallery features itself keeps control of them; the extension will not remove a feature the theme explicitly asked for unless the corresponding setting is off.

Shop Behavior

The Shop Behavior settings
SettingDefaultWhat it controls
Sale Badge StyleText ("Sale")Whether the sale flash reads “Sale” or a percentage (“-25%”).
AJAX Add to CartOnAdd simple products to the cart from shop archives without a page reload.
Shop BreadcrumbOnShow the WooCommerce breadcrumb above shop / product content.

Sticky Add to Cart

Also on the Behavior tab. A compact buy bar that slides in on single products once the real add-to-cart has scrolled away — see Shopper tools → Sticky add-to-cart.

SettingDefaultWhat it controls
Sticky Add to Cart BarOffThe feature switch.
Bar PositionBottomWhere the bar appears once it slides in.
Show Product ImageOnInclude a thumbnail in the bar.

Sale Badge Style

Text leaves WooCommerce's own “Sale!” flash alone. Percent replaces it with the actual discount, computed per product from its regular and sale prices — a product at 200 reduced to 150 shows -25%. Products without a valid sale price are untouched.

AJAX Add to Cart

This overrides WooCommerce's own “Enable AJAX add to cart buttons on archives” option (WooCommerce → Settings → Products). Leave it on unless the theme does something custom with the loop button. It has no effect on single product pages, which always post the form.

Shop Breadcrumb

Off removes woocommerce_breadcrumb from woocommerce_before_main_content. If your theme renders its own breadcrumb (the UnysonPlus Theme does, via the Breadcrumbs extension), turning this off avoids showing two.

Catalog Mode

The lookbook and closed-shop switches, plus the enquiry button. They are one feature with several dials, so they have a page of their own: Catalog Mode.

SettingDefault
Catalog ModeOff
Disable PurchasingOff
Closed-Shop Message(empty)
Enquiry ButtonOff
Enquiry Button TextRequest a Quote
Enquiry Link(empty)

Shopper Tools

Wishlist, compare, back-in-stock notifications, variation swatches and the size guide. Each is covered in Shopper tools.

SettingDefaultWhat it controls
WishlistOffThe heart button and saved lists.
Wishlist Page(empty)URL of the page holding your Wishlist element.
CompareOffThe compare toggle, bar and table.
Compare Page(empty)URL of the page holding your Compare element.
Maximum Products4How many products can be compared at once (2–6).
Back-in-Stock NotificationsOffEmail sign-up on out-of-stock products.
Sign-up HeadingEmail me when this is backAbove the email field.
Notification Subject{product} is back in stock{product} is replaced with the name.
Variation SwatchesOffSwatches in place of the variation dropdowns.
Swatches on Product CardsOffAlso show them on shop / grid cards.
Swatch ShapeCircleCircle or square colour / image swatches.
Size GuideOffA size-guide link and modal on single products.
Link TextSize guideThe link's label.
Default Size Guide(empty)Used for any product without its own.

Saving

The page saves on Save Changes and reloads with a confirmation notice. Values are merged over what's already stored rather than written wholesale, so a setting that isn't on the form keeps its value.

Where the values actually live

All of it is stored as the extension's settings option, readable anywhere with fw_get_db_ext_settings_option( 'woocommerce', '<key>' ). The developer reference lists every key. The Extensions-manager card's Settings link points at this same page, so there is one screen rather than two that can disagree.