Plugin Directory

Changeset 3496027


Ignore:
Timestamp:
03/31/2026 10:00:30 PM (10 hours ago)
Author:
eulav
Message:

update description and tracker handling

Location:
revvy/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • revvy/trunk/readme.txt

    r3492751 r3496027  
    11=== Revvy ===
    22Contributors: eulav
    3 Tags: analytics, woocommerce, cro, conversion, tracking
     3Tags: analytics, woocommerce, cro, conversion, tracking, revenue, optimization
    44Requires at least: 6.0
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88License: GPL2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 AI-powered CRO and analytics for WooCommerce stores by Eulav.
     11AI-powered growth platform that spots revenue opportunities and fixes conversion issues — with your approval.
    1212
    1313== Description ==
    1414
    15 Revvy by Eulav is an AI-powered Conversion Rate Optimization (CRO) and analytics solution designed for WooCommerce stores. Track visitor behavior, analyze conversion funnels, and get AI-driven insights to improve your store's performance.
     15Your website is losing potential revenue. You just don't always know where.
     16
     17Revvy helps you spot what's going wrong, understand why it's happening, and fix it — without spending hours digging through data.
     18
     19Revvy connects to your analytics and website data to track how people interact with your site. It looks for patterns, drop-offs, and missed opportunities, then highlights what needs attention and what to do next. When you're ready, it can apply those fixes with your approval.
     20
     21**Key Benefits:**
     22
     23* Turn your existing traffic into more revenue
     24* Identify where users drop off and why
     25* Stop guessing what to optimize
     26* Save time on manual analysis
     27* Continuously monitor your website performance
    1628
    1729**Features:**
     
    2638**How It Works:**
    2739
    28 1. Install and activate the plugin
    29 2. Enter your Site ID from your Revvy dashboard
    30 3. The tracking script automatically loads on your store's frontend
    31 4. View analytics and AI recommendations in your Revvy dashboard
     401. Install the plugin
     412. Connect your analytics tools for your first quick audit
     423. Revvy analyzes your website and user behavior
     434. It identifies issues affecting conversions
     445. You review and approve suggested fixes
     456. Revvy applies changes and tracks results
     46
     47**Who It's For:**
     48
     49* E-Commerce businesses
     50* Founders and business owners
     51* Marketers and growth teams
     52* Conversion rate optimization (CRO) experts
     53* CRO Agencies
     54
     55**Control and Safety:**
     56
     57* No changes are made without your approval
     58* You can review every recommendation before it's applied
     59* Revvy works alongside your existing tools
    3260
    3361**Privacy:**
     
    6290== Frequently Asked Questions ==
    6391
    64 = Where do I get my Site ID and API Key? =
     92= Where do I get my Site ID? =
    6593
    66 Sign up for a free account at [revvy.eulav.io](https://revvy.eulav.io), add your website, and your credentials will be generated automatically.
     94Sign up for a free account at [revvy.eulav.io](https://revvy.eulav.io), add your website, and your Site ID will be generated automatically.
    6795
    68 = Does this plugin slow down my website? =
     96= Do I need technical skills to use Revvy? =
    6997
    70 No. The tracking script is lightweight and loads asynchronously, so it does not block page rendering or affect your site's performance.
     98No. Revvy highlights what matters and guides you through each step. You don't need to be a developer or data analyst to get value from it.
     99
     100= Will Revvy make changes to my site automatically? =
     101
     102Only after you approve them. Every recommendation is presented for your review before anything is applied.
     103
     104= What data does Revvy use? =
     105
     106Revvy uses your website data and any connected analytics tools. It collects anonymous behavioral data such as page views, clicks, scroll depth, and e-commerce events. No personal customer information (names, emails, payment details) is collected.
     107
     108= Will this slow down my website? =
     109
     110No. Revvy is designed to run without affecting performance. The tracking script is lightweight and loads asynchronously, so it does not block page rendering.
    71111
    72112= Is this plugin compatible with WooCommerce? =
    73113
    74 Yes! Revvy is specifically designed for WooCommerce stores and automatically tracks e-commerce events like product views, add to cart, and checkout.
    75 
    76 = What data does this plugin collect? =
    77 
    78 Revvy collects anonymous behavioral data such as page views, clicks, scroll depth, and e-commerce events. No personal customer information (names, emails, payment details) is collected.
     114Yes. Revvy automatically tracks WooCommerce e-commerce events like product views, add to cart, and checkout.
    79115
    80116= Does this plugin work with caching plugins? =
     
    89125
    90126== Changelog ==
     127
     128= 1.0.1 =
     129* Updated plugin description and documentation
    91130
    92131= 1.0.0 =
     
    110149== Upgrade Notice ==
    111150
     151= 1.0.1 =
     152Updated plugin description and documentation.
     153
    112154= 1.0.0 =
    113155Initial release of Revvy - AI-powered CRO and analytics for WooCommerce stores.
  • revvy/trunk/revvy.php

    r3492751 r3496027  
    44 * Plugin Name: Revvy
    55 * Plugin URI: https://revvy.eulav.io
    6  * Description: AI-powered CRO and analytics for WooCommerce stores by Eulav.
    7  * Version: 1.0.0
     6 * Description: AI-powered growth platform that spots revenue opportunities and fixes conversion issues — with your approval.
     7 * Version: 1.0.1
    88 * Author: Eulav
    99 * Author URI: https://eulav.io
     
    2424  if ($hook !== 'settings_page_revvy-tracking-settings') return;
    2525
    26   wp_register_style('revvy-admin', false, array(), '1.0.0');
     26  wp_register_style('revvy-admin', false, array(), '1.0.1');
    2727  wp_enqueue_style('revvy-admin');
    2828  wp_add_inline_style('revvy-admin', '
     
    137137  if ($site_id) {
    138138    $script_name = "revvy-tracker";
    139     wp_register_script($script_name, "https://tracker.revvy-v2.workers.dev/ga.iife.js", array(), '1.0.0', false);
     139    wp_register_script($script_name, "https://tracker.revvy-v2.workers.dev/ga.iife.js", array(), '1.0.1', false);
    140140    wp_enqueue_script($script_name);
    141141    wp_add_inline_script(
Note: See TracChangeset for help on using the changeset viewer.