PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 2.3.2
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v2.3.2
2.3.2 2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 All 60 releases
← All changes | admin/pages/page-settings.php +16 -0 2.2.72.3.2 View file →
@@ -52,8 +52,10 @@
52 52 </div>
53 53
54 54 </div>
55 55
56 + <?php require MERCHANT_DIR . 'admin/views/wpvibe-banner.php'; ?>
57 +
56 58 <div class="merchant-module-page-content mrc-w-100">
57 59
58 60 <?php
59 61
@@ -62,8 +64,22 @@
62 64 *
63 65 * @since 1.0
64 66 */
65 67 do_action( 'merchant_admin_settings_before_options' );
68 +
69 + // Save the WPVibe MCP toggle only when WPVibe is active to avoid overwriting the stored value with the unchecked-checkbox default.
70 + if ( is_plugin_active( 'vibe-ai/vibe-ai.php' ) ) {
71 + Merchant_Admin_Options::save_options( array(
72 + 'module' => 'global-settings',
73 + 'fields' => array(
74 + array(
75 + 'id' => 'wpvibe_mcp_write_access',
76 + 'type' => 'switcher',
77 + 'default' => false,
78 + ),
79 + ),
80 + ) );
81 + }
66 82
67 83 Merchant_Admin_Options::create( array(
68 84 'module' => 'global-settings',
69 85 'title' => esc_html__( 'Merchant Analytics', 'merchant' ),