Title: Liana with GrowthStack
Author: Liana Technologies
Published: <strong>February 12, 2026</strong>
Last modified: May 11, 2026

---

Search plugins

![](https://ps.w.org/liana-with-growthstack/assets/banner-772x250.png?rev=3459633)

![](https://ps.w.org/liana-with-growthstack/assets/icon-256x256.png?rev=3459633)

# Liana with GrowthStack

 By [Liana Technologies](https://profiles.wordpress.org/lianatechnologies/)

[Download](https://downloads.wordpress.org/plugin/liana-with-growthstack.2.0.11.zip)

 * [Details](https://test.wordpress.org/plugins/liana-with-growthstack/#description)
 * [Reviews](https://test.wordpress.org/plugins/liana-with-growthstack/#reviews)
 *  [Installation](https://test.wordpress.org/plugins/liana-with-growthstack/#installation)
 * [Development](https://test.wordpress.org/plugins/liana-with-growthstack/#developers)

 [Support](https://wordpress.org/support/plugin/liana-with-growthstack/)

## Description

Liana with GrowthStack is a powerful WordPress plugin that brings enterprise-level
marketing automation and personalization capabilities to your website. Built by 
Liana Technologies, it seamlessly integrates with LianaAutomation to help you optimize
conversions and deliver personalized experiences to your visitors.

#### Key Features

 * **Content Personalization** – Show different content to different visitors based
   on various rules
 * **Analytics & Insights** – Track page views, user behavior, and engagement metrics
 * **Marketing Automation Forms** – Integrate LianaAutomation forms directly into
   your content
 * **LianaMailer Integration** – Connect with Contact Form 7, Gravity Forms, and
   WPForms

#### Pro Features

Available in Pro version of the plugin.

 * **A/B Testing** – Test different variations of your content to optimize conversions(
   available in Pro)
 * **Audience Tracking** – Understand your visitors with detailed audience data
 * **Advanced Personalization Rules** – Create more advanced personalization scenarios(
   available in Pro)

#### Personalization Rules

Create targeted content experiences based on:

 * **Country** – Show content based on visitor’s geographic location
 * **Device Type** – Tailor content for desktop, tablet, or mobile users
 * **Preferred Language** – Display content in the visitor’s preferred language
 * **Referrer** – Personalize based on where visitors came from
 * **Time** – Show content based on time of day and day of the week
 * **User Status** – Show content for new vs. returning visitors

#### Analytics Features

 * Site-wide analytics with view counts, user counts, and session data
 * Page-level performance metrics
 * Engagement time tracking
 * Audience insights including:
    - Traffic sources
    - New vs. returning visitors
    - Device types
    - UTM parameters (campaign, source, medium)

#### Integrations

 * **LianaAutomation** – Full integration with marketing automation platform
 * **LianaMailer** – Email marketing integration
 * **Google Analytics** – Data Layer events of seen personalizations is sent and
   can be tracked in Google Analytics.

#### Plugin compatibility

 * **Contact Form 7** – LianaMailer integration for form submissions
 * **Gravity Forms** – LianaMailer integration for form submissions
 * **WPForms** – LianaMailer integration for form submissions

#### Caching and performance

Liana with GrowthStack is compatible with popular caching plugins and server level
caching solutions. It uses client-side JavaScript to handle content personalization
and A/B testing, ensuring that cached pages still deliver dynamic content based 
on visitor data.

Analytics data is saved to the database in an optimized manner, with data being 
bundled and sent asynchronously to minimize performance impact. This does add some
database load but write actions are done in asynchronously with JavaScript events
to minimize impact on user experience.

### Developer Hooks

Liana with GrowthStack provides various filters and actions for developers to customize
functionality.

#### Filters

**Admin Capabilities**

Control who can access different admin pages:

 * `growthstack/admin/capability/view_dashboard` – Capability required to view the
   dashboard (default: ‘edit_pages’)
 * `growthstack/admin/capability/view_analytics` – Capability required to view analytics(
   default: ‘edit_pages’)
 * `growthstack/admin/capability/view_personalization` – Capability required to 
   view personalization (default: ‘edit_pages’)
 * `growthstack/admin/capability/view_ab_tests` – Capability required to view A/
   B tests (default: ‘edit_pages’)
 * `growthstack/admin/capability/view_forms` – Capability required to view forms(
   default: ‘edit_pages’)
 * `growthstack/admin/capability/view_settings` – Capability required to view settings(
   default: ‘manage_options’)
 * `growthstack/admin/capability/view_support` – Capability required to view support(
   default: ‘manage_options’)

**Admin UI**

 * `growthstack/admin/submenu_pages` – Modify admin submenu pages array
 * `growthstack/show_banner/upgrade` – Show/hide upgrade banner in Analytics (default:
   true)
 * `growthstack/show_banner/ab_testing` – Show/hide banner in A/B Testing page (
   default: true)
 * `growthstack/show_banner/audience` – Show/hide banner in Dashboard (default: 
   true)

**Analytics**

 * `growthstack/analytics/post_types` – Modify which post types are tracked for 
   analytics (default: public post types)

**Personalization**

 * `growthstack/rule_types` – Register or modify available personalization rule 
   types
 * `growthstack/personalization/visited_pages/post_types` – Modify post types available
   for “Visited Pages” personalization rule (default: [‘post’, ‘page’])

**LianaMailer Integration**

Contact Form 7:

 * `growthstack/lianamailer/contactform7/subscription_mailer_data` – Modify mailer
   data before sending
 * `growthstack/lianamailer/contactform7/subscription_properties` – Modify contact
   properties
 * `growthstack/lianamailer/contactform7/subscription_lists` – Modify selected mailing
   lists

Gravity Forms:

 * `growthstack/lianamailer/gravityforms/subscription_mailer_data` – Modify mailer
   data before sending
 * `growthstack/lianamailer/gravityforms/subscription_properties` – Modify contact
   properties
 * `growthstack/lianamailer/gravityforms/subscription_lists` – Modify selected mailing
   lists

WPForms:

 * `growthstack/lianamailer/wpforms/get_lianamailer_api` – Modify LianaMailer API
   instance
 * `growthstack/lianamailer/wpforms/subscription_mailer_data` – Modify mailer data
   before sending
 * `growthstack/lianamailer/wpforms/subscription_properties` – Modify contact properties
 * `growthstack/lianamailer/wpforms/subscription_lists` – Modify selected mailing
   lists

#### JavaScript Events

Personalization:

 * `GrowthstackReplacementDone` – Fired on document when personalization (or A/B
   testing) content replacement is complete

Example usage:
 `javascript document.addEventListener('GrowthstackReplacementDone',
function(e) { // Re-initialize your JavaScript after content replacement console.
log('Personalization applied'); });

Example double initialization for a hypothetical block:
 `javascript const INIT_EVENTS
= { DOMContentLoaded: document, GrowthstackReplacementDone: document, };

Object.entries( INIT_EVENTS ).forEach( ( [ event, element ] ) => {
 element.addEventListener(
event, () => { init(); } ); } );

const init = () => {
 const els = document.querySelectorAll( ‘.js-my-element-name’);
els.forEach( ( el ) => { if ( ‘true’ === el.dataset.init ) { return; } el.dataset.
init = ‘true’; setupElement( el ); } ); };

const setupElement = ( el ) => {
 // Your block JavaScript logic here }; `

### Support

For support, feature requests, and bug reports, please visit:
 * Website: https://
www.lianatech.com/ * Documentation: https://www.lianatech.com/

### Credits

Liana with GrowthStack is developed and maintained by Liana Technologies.

## Screenshots

 * [[
 * Editing personalization variations in the block editor
 * [[
 * Choosing personalization rules for a variation
 * [[
 * Overview of all personalizations on the site
 * [[
 * Local analytics of a page or site
 * [[
 * Settings for Liana connectors

## Blocks

This plugin provides 2 blocks.

 *   Liana Automation Form LianaAutomation Forms block.
 *   Personalization Personalize your content.

## Installation

 1. Upload the plugin files to the `/wp-content/plugins/liana-with-growthstack` directory,
    or install the plugin through the WordPress plugins screen directly.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress.
 3. If you have Liana products, connect your LianaAutomation account in the Liana with
    GrowthStack settings.

#### Minimum Requirements

 * WordPress 6.5 or greater
 * PHP version 8.0 or greater
 * MySQL version 5.7 or greater OR MariaDB version 10.3 or greater

## FAQ

### Do I need a LianaAutomation account?

No, the plugin can be used standalone for basic personalization and analytics features.

### How does the personalization work?

The plugin uses contextual data about your visitors (location, referrer, browsing
history, etc.) to dynamically replace content blocks with personalized variations.
This happens seamlessly without page refreshes but can have a slight delay.

### What blocks are compatible with personalization?

Technically personalization replaces block content on the visible page using JavaScript.
Most blocks work fine but some that add interactions or functionality with JavaScript
might need to add handling in their JavaScript.

Blocks that require JavaScript might only hook their logic on DOMContentLoaded event
and that might be too early for replaced content. In those cases the block developer
needs to add support for Liana with GrowthStack personalization by re-initializing
their JavaScript logic after Liana with GrowthStack has replaced the content (event
GrowthstackReplacementDone on document).

### Does this plugin affect my site’s performance?

Liana with GrowthStack is optimized for performance. Analytics data is bundled and
sent asynchronously, and content replacement happens efficiently on the client side.
The plugin includes database query optimization and caching where appropriate. Analytics
does add more database load but write actions are done in asynchronously with JavaScript
events to minimize impact on user experience.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Liana with GrowthStack” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Liana Technologies ](https://profiles.wordpress.org/lianatechnologies/)

[Translate “Liana with GrowthStack” into your language.](https://translate.wordpress.org/projects/wp-plugins/liana-with-growthstack)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/liana-with-growthstack/),
check out the [SVN repository](https://plugins.svn.wordpress.org/liana-with-growthstack/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/liana-with-growthstack/)
by [RSS](https://plugins.trac.wordpress.org/log/liana-with-growthstack/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.0.11 / 2026-05-11

 * Adds CookieBot consent mode support without requiring the CookieBot plugin – 
   configurable via a settings toggle.
 * Adds support for mapping split Gravity Forms name fields into separate LianaMailer
   fields.

#### 2.0.10 / 2026-04-29

 * Adds CookieBot compatibility: LianaAutomation tracking script is loaded only 
   when the user consents to marketing cookies.
 * Fixes LianaAutomation channel selection, enabled all custom channels.

#### 2.0.9 / 2026-04-07

 * Adds post type filtering to Most Popular analytics.
 * Fixes Most Popular analytics date range filtering to return the selected range.

[See changelog for all versions](https://plugins.svn.wordpress.org/liana-with-growthstack/trunk/changelog.txt).

## Meta

 *  Version **2.0.11**
 *  Last updated **5 days ago**
 *  Active installations **40+**
 *  WordPress version ** 6.5 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 8.0 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/liana-with-growthstack/)
 * Tags
 * [a/b testing](https://test.wordpress.org/plugins/tags/ab-testing/)[analytics](https://test.wordpress.org/plugins/tags/analytics/)
   [conversion optimization](https://test.wordpress.org/plugins/tags/conversion-optimization/)
   [marketing automation](https://test.wordpress.org/plugins/tags/marketing-automation/)
   [personalization](https://test.wordpress.org/plugins/tags/personalization/)
 *  [Advanced View](https://test.wordpress.org/plugins/liana-with-growthstack/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/liana-with-growthstack/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/liana-with-growthstack/reviews/)

## Contributors

 *   [ Liana Technologies ](https://profiles.wordpress.org/lianatechnologies/)

## Support

Issues resolved in last two months:

     0 out of 1

 [View support forum](https://wordpress.org/support/plugin/liana-with-growthstack/)