Skip to content

Commit 399738a

Browse files
[RELEASE] And July Update (#247)
* feat(forms): implement CRM and Mailchimp sync - Add queue processing for form submissions - Implement CRM integration with proper field mapping - Add Mailchimp sync with opt-out option - Add CLI commands for queue management - Add cron job for automatic sync processing - Add transient caching for performance - Add force sync option for admin users - Fix data format handling in queue processing * fix: align image upload validation with legacy behavior - Restore previous image dimension validation logic - Maintain backward compatibility with existing uploads * chore(i18n): update translations and version bump - Update German and French translations - Bump version number to 0.40.0 Refs: #246
1 parent 8a335d0 commit 399738a

24 files changed

Lines changed: 2659 additions & 2166 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,4 @@ deploy.*
131131
.wordpress
132132
wp-cli.phar
133133
!/.github/workflows/deploy.yml
134+
.env

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ services:
2828
WORDPRESS_DB_PASSWORD: wordpress
2929
WORDPRESS_DEBUG: 1
3030
PHP_IDE_CONFIG: serverName=Docker
31+
MAILCHIMP_SERVICE_ENDPOINT: ${MAILCHIMP_SERVICE_ENDPOINT}
3132
command: [ "apache2-foreground" ]
3233
extra_hosts:
3334
- "host.docker.internal:host-gateway"

wordpress/wp-config.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* * MySQL settings
1212
* * Secret keys
1313
* * Database table prefix
14+
* * Mailchimp-Service configuration (optional)
1415
* * ABSPATH
1516
*
1617
* @link https://codex.wordpress.org/Editing_wp-config.php
@@ -97,6 +98,9 @@
9798

9899
define( 'SUPT_FORM_ASYNC', ! ( (bool) getenv( 'WORDPRESS_DEBUG' ) ) );
99100

101+
// Mailchimp-Service configuration (leave empty to disable integration)
102+
define( 'MAILCHIMP_SERVICE_ENDPOINT', getenv('MAILCHIMP_SERVICE_ENDPOINT') ?: '' );
103+
100104
/* That's all, stop editing! Happy blogging. */
101105

102106
/** Absolute path to the WordPress directory. */
1.33 KB
Binary file not shown.

0 commit comments

Comments
 (0)