-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sample.php
31 lines (26 loc) · 1.03 KB
/
config.sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// Rename this file to config.php and fill in the following values
$sheetId = 'your_google_sheet_id';
$sheetName = 'your_sheet_name';
$apiKey = 'your_google_api_key';
$locale = 'your_locale'; // e.g., 'es_ES.UTF-8'
// New configuration variables
$websiteTitle = 'Your Website Title';
$websiteDescription = 'Your website description';
$h1Title = 'Your H1 Title';
$h1Description = 'Your H1 description';
$loadingMessage = 'Your loading message';
// Newsletter subscription configuration
$newsletterTitle = 'Your Newsletter Title';
$newsletterDescription = 'Your newsletter description';
$newsletterButtonText = 'Subscribe';
$newsletterButtonUrl = 'https://your-subscription-url.com';
// Social meta tag configuration
$socialTitle = 'Your Social Title';
$socialDescription = 'Your social description';
$socialImage = 'https://example.com/image.jpg';
// Google Analytics configuration
$enableGA4 = false;
$googleAnalyticsMeasurementId = '';
$reviewCounterText = 'Total Reviews: <span id="numberReviews">0</span>'; // e.g., 'Total Reviews: ';
?>