| @@ -5,9 +5,9 @@ | ||
| 5 | 5 | use RadiusTheme\SB\Helpers\BuilderFns; |
| 6 | 6 | use RadiusTheme\SB\Helpers\ElementorDataMap; |
| 7 | 7 | use RadiusTheme\SB\Helpers\Fns; |
| 8 | 8 | use RadiusTheme\SB\Traits\SingletonTrait; |
| 9 | -use RadiusTheme\SB\Controllers\PluginsSupport; | |
| 9 | + | |
| 10 | 10 | // Do not allow directly accessing this file. |
| 11 | 11 | if ( ! defined( 'ABSPATH' ) ) { |
| 12 | 12 | exit( 'This script cannot be accessed directly.' ); |
| 13 | 13 | } |
| @@ -26,9 +26,9 @@ | ||
| 26 | 26 | */ |
| 27 | 27 | private function __construct() { |
| 28 | 28 | add_action( 'init', [ $this, 'plugins_support' ], 9 ); |
| 29 | 29 | add_action( 'init', [ $this, 'themes_support' ], 9 ); |
| 30 | - add_filter( 'woocommerce_locate_template', [ $this, 'locate_template' ], 10, 3 ); | |
| 30 | + add_filter( 'woocommerce_locate_template', [ $this, 'locate_template' ], 10, 2 ); | |
| 31 | 31 | if ( defined( 'RTSB_DEVELOPER_MODE' ) && RTSB_DEVELOPER_MODE ) { |
| 32 | 32 | $this->developer_support(); |
| 33 | 33 | } |
| 34 | 34 | } |
| @@ -52,8 +52,10 @@ | ||
| 52 | 52 | 'woo-address-book/woocommerce-address-book.php' => PluginsSupport\WooAddressBook::class, |
| 53 | 53 | 'woo-product-variation-gallery/woo-product-variation-gallery.php' => PluginsSupport\RtwpvgSupport::class, |
| 54 | 54 | 'woo-product-variation-swatches-pro/woo-product-variation-swatches-pro.php' => PluginsSupport\RtwpvsSupport::class, |
| 55 | 55 | 'products-visibility-by-user-roles/addify_product_visibility.php' => PluginsSupport\AddifyVisibilityByRoles::class, |
| 56 | + 'woocommerce-payments/woocommerce-payments.php' => PluginsSupport\WooPaymentsSupport::class, | |
| 57 | + 'woocommerce-paypal-payments/woocommerce-paypal-payments.php' => PluginsSupport\PayPalPPCPSupport::class, | |
| 56 | 58 | ]; |
| 57 | 59 | $supports = apply_filters( 'rtsb/plugins/support', $supports ); |
| 58 | 60 | foreach ( $supports as $active_path => $class ) { |
| 59 | 61 | $is_active = in_array( $active_path, $active_plugin, true ); |
| @@ -70,9 +72,9 @@ | ||
| 70 | 72 | public function themes_support() { |
| 71 | 73 | $themeClass = ucwords( str_replace( [ '_', '-', ' ' ], '', rtsb()->current_theme ) ); |
| 72 | 74 | |
| 73 | 75 | $supportClass = apply_filters( |
| 74 | - 'RadiusTheme/SB/ThemesSupport/Class', | |
| 76 | + 'RadiusTheme/SB/ThemesSupport/Class', // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase | |
| 75 | 77 | [ |
| 76 | 78 | 'ThemesSupport' => 'RadiusTheme\SB\Controllers\ThemesSupport\\' . $themeClass . '\\ThemeSupport', |
| 77 | 79 | 'TheTheme' => '\ThemeSupport', |
| 78 | 80 | ] |
| @@ -89,26 +91,22 @@ | ||
| 89 | 91 | } |
| 90 | 92 | } |
| 91 | 93 | |
| 92 | 94 | /** |
| 93 | - * Theme Support | |
| 95 | + * Filters and overrides the default WooCommerce template paths for specific templates | |
| 96 | + * based on builder context and available Elementor widgets. | |
| 94 | 97 | * |
| 95 | - * @return void | |
| 98 | + * - Replaces the checkout review order template if a custom widget is present. | |
| 99 | + * - Replaces the single product description tab template if on a product page. | |
| 100 | + * | |
| 101 | + * @param string $template The path to the template to include. | |
| 102 | + * @param string $template_name The name of the template. | |
| 103 | + * | |
| 104 | + * @return string Modified or original template path. | |
| 96 | 105 | */ |
| 97 | - public function locate_template( $template, $template_name, $template_path ) { | |
| 98 | - if ( 'checkout/review-order.php' === $template_name && BuilderFns::is_checkout() ) { | |
| 99 | - $id = BuilderFns::is_builder_preview() ? get_the_ID() : BuilderFns::builder_page_id_by_type( 'checkout' ); | |
| 100 | - $elmap = ElementorDataMap::instance(); | |
| 101 | - if ( ! $id ) { | |
| 102 | - return $template; | |
| 103 | - } | |
| 104 | - $get_widget = $elmap->get_widget_data( 'rtsb-shipping-method', [], $id ); | |
| 105 | - if ( ! empty( $get_widget ) ) { | |
| 106 | - $template = Fns::locate_template( 'elementor/checkout/customized-order-review' ); | |
| 107 | - } | |
| 108 | - } elseif ( 'single-product/tabs/description.php' === $template_name && BuilderFns::is_product() ) { | |
| 106 | + public function locate_template( $template, $template_name ) { | |
| 107 | + if ( 'single-product/tabs/description.php' === $template_name && BuilderFns::is_product() ) { | |
| 109 | 108 | $template = Fns::locate_template( 'elementor/single-product/tab-description' ); |
| 110 | 109 | } |
| 111 | - | |
| 112 | 110 | return $template; |
| 113 | 111 | } |
| 114 | 112 | } |