Astra_SureCart::revert_surecart_support()
Revert SureCart Support, after banner loaded.
Description
Source
File: inc/compatibility/surecart/class-astra-surecart.php
public function revert_surecart_support() {
if ( false === $this->astra_is_surecart_shop_page() ) {
return;
}
remove_filter( 'astra_is_content_layout_boxed', array( $this, 'sc_shop_content_boxed_layout' ) );
remove_filter( 'astra_is_sidebar_layout_boxed', array( $this, 'sc_shop_sidebar_boxed_layout' ) );
remove_filter( 'astra_banner_elements_structure', array( $this, 'update_astra_banner_elements_structure' ) );
remove_filter( 'astra_banner_elements_post_type', array( $this, 'update_astra_banner_elements_post_type' ) );
remove_filter( 'astra_banner_elements_prefix', array( $this, 'update_astra_banner_elements_prefix' ) );
remove_filter( 'the_title', array( $this, 'update_the_title' ), 10 );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |