PluginProbe
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses / 2.11.0
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses v2.11.0
2.11.0 2.10.0 2.10.01 2.9.1 2.9.0 2.8.1 2.8.0 2.7.7 2.7.5 2.7.0 2.6.01 2.6.0 2.5.0 2.4.01 trunk 1.0.90 1.0.91 1.0.92 1.0.93 1.0.94 1.0.95 1.0.96 1.0.97 1.0.98 1.0.99 All 78 releases
← All changes | Modules/Integrations/FluentCart/CartCheckout.php +3 -3 2.4.012.11.0 View file →
@@ -91,9 +91,9 @@
91 91 if (isset($_REQUEST['space_id'])) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
92 92 add_action('fluent_cart/checkout_form_opening', function () {
93 93 $spaceId = intval($_REQUEST['space_id'] ?? ''); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
94 94 ?>
95 - <input type="hidden" name="_fcom_space_id" value="<?php echo esc_attr($spaceId); ?>"/>
95 + <input type="hidden" name="_fcom_space_id" value="<?php echo esc_attr((string) $spaceId); ?>"/>
96 96 <?php
97 97 });
98 98 }
99 99
@@ -106,9 +106,9 @@
106 106 <div class="fcom_single_layout fcom_max_layout feeds">
107 107 <div class="no_bg_layout fhr_content_layout">
108 108 <div style="max-width: 1080px;padding: 0 2rem 2rem; margin: 2rem auto;"
109 109 class="fhr_content_layout_body">
110 - <h2 class="fcom_checkout_title">Checkout</h2>
110 + <h2 class="fcom_checkout_title"><?php echo esc_html__('Checkout', 'fluent-community'); ?></h2>
111 111 <div class="fcom_checkout_body">
112 112 <?php echo do_shortcode('[fluent_cart_checkout]'); ?>
113 113 </div>
114 114 </div>
@@ -129,9 +129,9 @@
129 129 --fct-checkout-summary-bg-color: var(--fcom-primary-bg, #FFFFFF);
130 130 --fct-checkout-secondary-text-color: var(--fcom-secondary-text, #959595);
131 131 --fct-checkout-border-color: var(--fcom-primary-border, #e3e8ee);
132 132 --fct-checkout-active-border-color: var(--fcom-secondary-border, #2B2E33);
133 - --fct-checkout-primary-bg-color: var(--fcom-primary-bg, #FFFFFF);
133 + --fct-checkout-primary-bg-color: var(--fcom-primary-button);
134 134 --fct-checkout-secondary-bg-color: var(--fcom-secondary-bg, #f0f0f1);
135 135 --fct-checkout-btn-bg-color: var(--fcom-primary-button, #2B2E33);
136 136 --fct-checkout-btn-text-color: var(--fcom-primary-button-text, #FFFFFF);
137 137 --fct-btn-border-color: var(--fcom-primary-button, #2B2E33);