Vincent Poirier
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] WPML issue with include_blankCorrect me if I’m wrong, but I think I understand.
CF7 forms should be translated like post types, so the french form will have:
first_as_label “—Veuillez choisir une option—”
While another form for the english side would have:
first_as_label “—Please choose an option—”
(or include_blank since it’s always english)Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Regenerate tables?Thank you!
I don’t think it’s related. It seems like you’re using INNODB and have foreign key constraints (like RESTRICT) in a table’s definition. The plugin doesn’t handle anything outside of its base tables by default (no FKs or views or anything else, just plain “BASE TABLE”).
Thanks! It seems to work out.
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Illegal offset type ERRORLate to the party, but do you have the full callstack perhaps? I don’t have that error and I’ve used it for many years now.
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Anyone has an alternate plugin for this?Also, if someone wants it to clone views as well, edit /wp-content/plugins/multisite-clone-duplicator/lib/data.php at L53:
// Get sources Tables
if($from_site_id == MUCD_PRIMARY_SITE_ID) {
$from_site_table = self::get_primary_tables($from_site_prefix);
}
else {
$sql_query = $wpdb->prepare('SELECT TABLE_NAME, TABLE_TYPE FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = \'%s\' AND TABLE_NAME LIKE \'%s\'', $schema, $from_site_prefix_like . '%');
$from_site_table = self::do_sql_query($sql_query, 'results');
}
foreach ($from_site_table as $table) {
$table_name = $to_site_prefix . substr( $table['TABLE_NAME'], $from_site_prefix_length );
if ( 'BASE TABLE' == $table['TABLE_TYPE'] ) {
// Drop table if exists
self::do_sql_query('DROP TABLE IF EXISTS' . $table_name . '');
// Create new table from source table
self::do_sql_query('CREATE TABLE IF NOT EXISTS' . $table_name . 'LIKE' . $schema . '.' . $table['TABLE_NAME'] . '');
// Populate database with data from source table
self::do_sql_query('INSERT' . $table_name . 'SELECT * FROM' . $schema . '.' . $table['TABLE_NAME'] . '');
} elseif ( 'VIEW' == $table['TABLE_TYPE'] ) {
// Drop view if exists
self::do_sql_query('DROP VIEW IF EXISTS' . $table_name . '');
// Create new view from source view
self::do_sql_query('CREATE VIEW' . $table_name . 'AS SELECT * FROM' . $schema . '.' . $table['TABLE_NAME'] . ';');
}
}Forum: Plugins
In reply to: [Rich Showcase for Google Reviews] Place isn’t detected properlyThat checks out! We made a new key and only restriced the API types to “Places” and “Places (new)” and it worked. We’ll wait a day to make sure the new reviews sync up, but that was the right lead. Thank you!
Marking as resolved
Thank you! I believe that was it after a successful test.
Thank you for making this plugin.
Same issue here, tagging along for a response!
The error persists after 4.3.2, is it still a known bug or it was possibly fixed with the latest updates?
Just asking to make sure this isn’t ignored or thought as fixed.
Thanks for the great work!
Forum: Plugins
In reply to: [WP Job Manager] Formatting not working in frontendThanks for your response! We found a solution with a custom code who keep the line breaks in the field.
Thank you! That was very good support. ♥
Forum: Plugins
In reply to: [Contact Form 7] Disable different-domain backend validation errorThank you, that seems like exactly what we need. Thanks for the great plugin support!
Forum: Plugins
In reply to: [Tracking Code Manager] Deprecated code in PHP 8.1 for tracking code managerSame error here, is the plugin still supported?