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