---
name: etoro-clawz-website
description: "Build, maintain, and manage etoro.clawz.org — the eToro website on WhiteRabbit server. Use when working on the eToro website, WordPress pages, theme updates, content publishing, SEO, design fixes, or any etoro.clawz.org task. Triggers on 'etoro website', 'etoro.clawz', 'clawz.org etoro', 'website pages', 'publish pages', 'WordPress eToro', 'WhiteRabbit website'."
---

# eToro Website Agent — etoro.clawz.org

## Quick Reference
- **URL:** https://etoro.clawz.org
- **Server:** WhiteRabbit 135.181.43.68
- **SSH:** `ssh -i .credentials/ssh-white-rabbit root@135.181.43.68`
- **Stack:** WordPress 6.9.1, PHP 8.3, Caddy, MySQL
- **DB:** etoro_clawz
- **Theme:** etoro-clean (active), etoro (child of sage)
- **Site root:** /var/www/etoro.clawz.org/

## Content Inventory (as of Mar 6, 2026)

### Published Pages (48)
**Core:** Home, About, Our Story, Our Team, Careers, Contact Us, Offices, Partnerships
**Products:** Stocks, Crypto, ETFs, Forex, CFDs, Commodities, Indices, Copy Trading, Popular Investor, Trading Platforms
**Academy:** Trading Basics, Stock Market 101, What is Trading, How to Trade, Technical/Fundamental Analysis, Candlestick Charts, Leverage & Margin, Risk Management, Order Types, Portfolio Diversification, Crypto Guide, Intro to Crypto
**Legal:** Fees & Pricing, Spreads, Trading Hours, Deposit Methods, Withdrawal Guide, FAQ, Privacy Policy, Terms & Conditions

### Draft Pages (19) — need publishing
Careers, Cookie Policy, Deposit Methods, Fees, Help Center, Investor Compensation, Mobile App, Offices, Order Execution, Our Team, Partnerships, Press, Privacy Policy, Regulation & Licenses, Risk Disclosure, Spreads, Trading Hours, Web Platform, Withdrawal Guide

### Blog Posts (21)
Investing guides, crypto trends, CopyTrader, risk management, market outlook

## Active Plugins (31)
**Content:** ACF Pro, ACF Extended Pro, eToro Blocks, eToro Core, eToro Schema, eToro TOC, Classic Editor, TinyMCE Advanced, Flexible Table Block
**SEO:** Yoast SEO, Redirection, LM Remove Category URL
**Multilingual:** WPML (Sitepress), WPML String Translation
**Admin:** Admin Columns Pro, User Role Editor Pro, WP Crontrol, Duplicate Post, Beauty Admin Bar
**Security:** WP Cerber, Disable XML-RPC, Akismet
**Other:** Contact Form 7, SVG Support, Enable Media Replace, ECB API, Add to Any, Disable Comments

## Theme Structure (etoro-clean)
```
/wp-content/themes/etoro-clean/
├── front-page.php      # Homepage template
├── header.php          # Site header + nav
├── footer.php          # Site footer
├── page.php            # Generic page template
├── single.php          # Blog post template
├── 404.php             # Error page
├── search.php          # Search results
├── functions.php       # Theme functions
├── style.css           # Main styles
├── figma-design-system.css  # Figma design tokens
├── rebrand.css         # Rebrand overrides
└── index.php           # Fallback
```

## Design System
- **Green:** #0EB12E (site uses this, slightly different from brand #13C636)
- **Navy:** #000021
- **Red:** #E31937
- **White:** #FFFFFF
- **Style:** Dark mode with rebrand CSS, neon effects, glassmorphism
- Figma design system CSS included

## SSH Commands Cheat Sheet
```bash
# Connect
ssh -i .credentials/ssh-white-rabbit root@135.181.43.68

# DB queries
mysql -u root etoro_clawz -e "QUERY"

# List pages
mysql -u root etoro_clawz -e "SELECT post_title, post_status FROM wp_posts WHERE post_type='page' ORDER BY post_title;"

# Publish a draft
mysql -u root etoro_clawz -e "UPDATE wp_posts SET post_status='publish' WHERE post_type='page' AND post_status='draft' AND post_title='PAGE_NAME';"

# Edit theme
nano /var/www/etoro.clawz.org/wp-content/themes/etoro-clean/FILE.php

# Clear cache
cd /var/www/etoro.clawz.org && wp cache flush --allow-root 2>/dev/null

# Restart PHP
systemctl restart php8.3-fpm

# Check logs
tail -50 /var/log/caddy/access.log
```

## Caddy Config
```
etoro.clawz.org {
    root * /var/www/etoro.clawz.org
    php_fastcgi unix//run/php/php8.3-fpm.sock
    file_server
    encode gzip
}
```

## Known Issues
- ⚠️ Figma debug elements visible on homepage (tags, badges, forms, color palette section)
- ⚠️ 19 draft pages need review and publishing
- ⚠️ Some pages may be duplicates of published ones (e.g., Fees, Spreads, Trading Hours exist in both published and draft)

## Workflow
1. SSH to WhiteRabbit
2. Make changes (theme files, DB, content)
3. Verify on https://etoro.clawz.org
4. Screenshot if possible
5. Report changes made

## Rules
- Always backup before major changes: `mysqldump -u root etoro_clawz > /tmp/etoro_backup_$(date +%Y%m%d).sql`
- Never delete published content without approval
- Test theme changes on a single page before applying globally
- Keep FCA disclaimer visible on all pages
- eToro brand: correct green (#0EB12E on site), navy #000021, never tilt logo
