Changeset 3496027
- Timestamp:
- 03/31/2026 10:00:30 PM (10 hours ago)
- Location:
- revvy/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (5 diffs)
-
revvy.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
revvy/trunk/readme.txt
r3492751 r3496027 1 1 === Revvy === 2 2 Contributors: eulav 3 Tags: analytics, woocommerce, cro, conversion, tracking 3 Tags: analytics, woocommerce, cro, conversion, tracking, revenue, optimization 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPL2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 AI-powered CRO and analytics for WooCommerce stores by Eulav.11 AI-powered growth platform that spots revenue opportunities and fixes conversion issues — with your approval. 12 12 13 13 == Description == 14 14 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. 15 Your website is losing potential revenue. You just don't always know where. 16 17 Revvy helps you spot what's going wrong, understand why it's happening, and fix it — without spending hours digging through data. 18 19 Revvy 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 16 28 17 29 **Features:** … … 26 38 **How It Works:** 27 39 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 40 1. Install the plugin 41 2. Connect your analytics tools for your first quick audit 42 3. Revvy analyzes your website and user behavior 43 4. It identifies issues affecting conversions 44 5. You review and approve suggested fixes 45 6. 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 32 60 33 61 **Privacy:** … … 62 90 == Frequently Asked Questions == 63 91 64 = Where do I get my Site ID and API Key? =92 = Where do I get my Site ID? = 65 93 66 Sign up for a free account at [revvy.eulav.io](https://revvy.eulav.io), add your website, and your credentialswill be generated automatically.94 Sign up for a free account at [revvy.eulav.io](https://revvy.eulav.io), add your website, and your Site ID will be generated automatically. 67 95 68 = Do es this plugin slow down my website? =96 = Do I need technical skills to use Revvy? = 69 97 70 No. The tracking script is lightweight and loads asynchronously, so it does not block page rendering or affect your site's performance. 98 No. 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 102 Only after you approve them. Every recommendation is presented for your review before anything is applied. 103 104 = What data does Revvy use? = 105 106 Revvy 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 110 No. Revvy is designed to run without affecting performance. The tracking script is lightweight and loads asynchronously, so it does not block page rendering. 71 111 72 112 = Is this plugin compatible with WooCommerce? = 73 113 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. 114 Yes. Revvy automatically tracks WooCommerce e-commerce events like product views, add to cart, and checkout. 79 115 80 116 = Does this plugin work with caching plugins? = … … 89 125 90 126 == Changelog == 127 128 = 1.0.1 = 129 * Updated plugin description and documentation 91 130 92 131 = 1.0.0 = … … 110 149 == Upgrade Notice == 111 150 151 = 1.0.1 = 152 Updated plugin description and documentation. 153 112 154 = 1.0.0 = 113 155 Initial release of Revvy - AI-powered CRO and analytics for WooCommerce stores. -
revvy/trunk/revvy.php
r3492751 r3496027 4 4 * Plugin Name: Revvy 5 5 * Plugin URI: https://revvy.eulav.io 6 * Description: AI-powered CRO and analytics for WooCommerce stores by Eulav.7 * Version: 1.0. 06 * Description: AI-powered growth platform that spots revenue opportunities and fixes conversion issues — with your approval. 7 * Version: 1.0.1 8 8 * Author: Eulav 9 9 * Author URI: https://eulav.io … … 24 24 if ($hook !== 'settings_page_revvy-tracking-settings') return; 25 25 26 wp_register_style('revvy-admin', false, array(), '1.0. 0');26 wp_register_style('revvy-admin', false, array(), '1.0.1'); 27 27 wp_enqueue_style('revvy-admin'); 28 28 wp_add_inline_style('revvy-admin', ' … … 137 137 if ($site_id) { 138 138 $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); 140 140 wp_enqueue_script($script_name); 141 141 wp_add_inline_script(
Note: See TracChangeset
for help on using the changeset viewer.