Admin
1 year ago
Assets
1 year ago
CLI
2 years ago
Pages
1 year ago
PostTypes
1 year ago
Posts
1 year ago
Shortcodes
1 year ago
Taxonomies
1 year ago
Templates
1 year ago
Users
2 years ago
ActionsService.php
4 years ago
CompatibilityService.php
1 year ago
HealthService.php
2 years ago
LineItemStateService.php
2 years ago
PluginService.php
3 years ago
PluginServiceProvider.php
1 year ago
RecaptchaValidationService.php
2 years ago
StateService.php
2 years ago
ThemeService.php
2 years ago
ThemeServiceProvider.php
3 years ago
TranslationsServiceProvider.php
1 year ago
CompatibilityService.php
179 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Compatibility service. |
| 4 | * |
| 5 | * @package SureCartAppCore |
| 6 | * @author SureCart <support@surecart.com> |
| 7 | * @copyright SureCart |
| 8 | * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 |
| 9 | * @link https://surecart.com |
| 10 | */ |
| 11 | |
| 12 | namespace SureCart\WordPress; |
| 13 | |
| 14 | use SureCart\WordPress\Admin\Notices\AdminNoticesService; |
| 15 | |
| 16 | /** |
| 17 | * Provides compatibility with other plugins. |
| 18 | */ |
| 19 | class CompatibilityService { |
| 20 | /** |
| 21 | * Bootstrap the service. |
| 22 | * |
| 23 | * @return void |
| 24 | */ |
| 25 | public function bootstrap() { |
| 26 | // UAG fix. |
| 27 | add_action( 'render_block_data', [ $this, 'maybeEnqueueUAGBAssets' ] ); |
| 28 | // SC Form Shortcode fix. |
| 29 | add_filter( 'surecart/shortcode/render', [ $this, 'maybeEnqueueUAGBAssetsForShortcode' ], 5, 3 ); |
| 30 | // rankmath fix. |
| 31 | add_action( 'rank_math/head', [ $this, 'rankMathFix' ] ); |
| 32 | |
| 33 | // Yoast SEO fix. |
| 34 | add_action( 'wpseo_frontend_presenters', [ $this, 'yoastSEOFix' ] ); |
| 35 | |
| 36 | // Show gutenberg active notice. |
| 37 | add_action( 'admin_init', [ $this, 'gutenbergActiveNotice' ] ); |
| 38 | |
| 39 | // Load Divi Compatibility CSS. |
| 40 | add_action( 'wp_enqueue_scripts', [ $this, 'diviCompatibility' ] ); |
| 41 | |
| 42 | // Load Blocks Global Styles if enabled by Merchant in the setting. |
| 43 | if ( (bool) get_option( 'surecart_load_block_assets_on_demand', false ) ) { |
| 44 | add_filter( 'should_load_separate_core_block_assets', '__return_true' ); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Load Divi Compatibility CSS. |
| 50 | * |
| 51 | * @return void |
| 52 | */ |
| 53 | public function diviCompatibility() { |
| 54 | if ( ! is_plugin_active( 'divi-builder/divi-builder.php' ) ) { |
| 55 | return; |
| 56 | } |
| 57 | wp_enqueue_style( 'surecart-divi-compatibility', plugins_url( 'styles/divi-compatibility.css', SURECART_PLUGIN_FILE ), '', \SureCart::plugin()->version(), 'all' ); |
| 58 | } |
| 59 | |
| 60 | /** Prevent Yoast SEO from outputing SEO meta tags on our custom pages. |
| 61 | * |
| 62 | * @param array $presenters Presenters. |
| 63 | * @return array Empty Array. |
| 64 | */ |
| 65 | public function yoastSEOFix( $presenters ) { |
| 66 | if ( is_singular( 'sc_product' ) || is_singular( 'sc_collection' ) || is_singular( 'sc_upsell' ) ) { |
| 67 | $title_presenters = array_filter( |
| 68 | $presenters, |
| 69 | function ( $item ) { |
| 70 | return strpos( get_class( $item ), 'SEO\Presenters\Title_Presenter' ); |
| 71 | } |
| 72 | ); |
| 73 | return apply_filters( 'sc_wpseo_frontend_presenters', $title_presenters, $presenters ); |
| 74 | } |
| 75 | |
| 76 | return $presenters; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Prevent rankmath from outputting og:tags on our custom pages. |
| 81 | * |
| 82 | * @return void |
| 83 | */ |
| 84 | public function rankMathFix() { |
| 85 | if ( is_singular( 'sc_product' ) || is_singular( 'sc_collection' ) || is_singular( 'sc_upsell' ) ) { |
| 86 | remove_all_actions( 'rank_math/opengraph/facebook' ); |
| 87 | remove_all_actions( 'rank_math/opengraph/twitter' ); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Render block data. |
| 93 | * |
| 94 | * @param array $parsed_block Block data. |
| 95 | * |
| 96 | * @return array |
| 97 | */ |
| 98 | public function maybeEnqueueUAGBAssets( $parsed_block ) { |
| 99 | // UAGB must be activated. |
| 100 | if ( ! class_exists( '\UAGB_Post_Assets' ) ) { |
| 101 | return $parsed_block; |
| 102 | } |
| 103 | |
| 104 | // must be our checkout form block. |
| 105 | if ( 'surecart/checkout-form' !== $parsed_block['blockName'] && 'surecart/upsell' !== $parsed_block['blockName'] ) { |
| 106 | return $parsed_block; |
| 107 | } |
| 108 | |
| 109 | $post = get_post(); |
| 110 | $upsell_id = isset( $post->upsell->id ) ? $post->upsell->id : null; |
| 111 | |
| 112 | $id = $parsed_block['attrs']['id'] ?? $upsell_id; |
| 113 | |
| 114 | if ( empty( $id ) ) { |
| 115 | return $parsed_block; |
| 116 | } |
| 117 | |
| 118 | // If Spectra Blocks are present in the form, enqueue the assets. |
| 119 | $post_assets_instance = new \UAGB_Post_Assets( $id ); |
| 120 | $post_assets_instance->enqueue_scripts(); // This will enqueue the JS and CSS files. |
| 121 | |
| 122 | if ( ! empty( $post_assets_instance->file_generation ) && 'disabled' === $post_assets_instance->file_generation ) { |
| 123 | add_action( 'wp_footer', array( $post_assets_instance, 'print_stylesheet' ) ); // As on checkout page, the wp_head action is loaded late & Spectra prints inline CSS on that action for file_generation disabled case, we need to print the CSS on footer. |
| 124 | } |
| 125 | |
| 126 | return $parsed_block; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Filter SC Form Shortcode to load the Spectra Blocks Assets. |
| 131 | * |
| 132 | * @param string $output Content. |
| 133 | * @param array $attributes Shortcode attributes. |
| 134 | * @param string $name Shortcode Tag. |
| 135 | * |
| 136 | * @return array |
| 137 | */ |
| 138 | public function maybeEnqueueUAGBAssetsForShortcode( $output, $attributes, $name ) { |
| 139 | // UAGB must be activated. |
| 140 | if ( ! class_exists( '\UAGB_Post_Assets' ) ) { |
| 141 | return $output; |
| 142 | } |
| 143 | |
| 144 | // must be our form shortcode. |
| 145 | if ( 'sc_form' !== $name ) { |
| 146 | return $output; |
| 147 | } |
| 148 | |
| 149 | // must have an ID. |
| 150 | if ( empty( $attributes['id'] ) ) { |
| 151 | return $output; |
| 152 | } |
| 153 | |
| 154 | // If Spectra Blocks are present in the form, enqueue the assets. |
| 155 | $post_assets_instance = new \UAGB_Post_Assets( $attributes['id'] ); |
| 156 | $post_assets_instance->enqueue_scripts(); |
| 157 | |
| 158 | return $output; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Show the Gutenberg active notice. |
| 163 | * |
| 164 | * @return void |
| 165 | */ |
| 166 | public function gutenbergActiveNotice(): void { |
| 167 | if ( is_plugin_active( 'gutenberg/gutenberg.php' ) ) { |
| 168 | ( new AdminNoticesService() )->add( |
| 169 | [ |
| 170 | 'name' => 'gutenberg_active_notice', |
| 171 | 'type' => 'warning', |
| 172 | 'title' => esc_html__( 'SureCart', 'surecart' ), |
| 173 | 'text' => wp_kses_post( __( '<p>The Gutenberg plugin is currently active. SureCart blocks might not perform as expected within the block editor. If you encounter any issues, consider disabling the Gutenberg plugin.<p>', 'surecart' ) ), |
| 174 | ] |
| 175 | ); |
| 176 | } |
| 177 | } |
| 178 | } |
| 179 |