Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'end_wcfm_products_manage', function() {
- global $WCFM;
- remove_action( 'end_wcfm_products_manage', array( $WCFM->wcfm_integrations, 'wcfm_geomywp_products_manage_views' ), 100 );
- }, 99 );
- add_action( 'after_wcfm_products_manage_tabs_content', function() {
- global $WCFM;
- if( apply_filters( 'wcfm_is_allow_geo_my_wp', true ) ) {
- if( WCFM_Dependencies::wcfm_geo_my_wp_plugin_active_check() ) {
- $WCFM->template->get_template( 'integrations/wcfm-view-geomywp-products-manage.php' );
- }
- }
- } );
- add_action('after_wcfm_products_manage', function() {
- ?>
- <script>
- jQuery(function($) {
- var triggerChange = function triggerChange() {
- setTimeout(function() {
- $('.wcfm-tabWrap div.page_collapsible:visible:first').trigger('click');
- }, 1000);
- };
- $( document.body ).on( 'wcfm_product_type_changed', triggerChange);
- });
- </script>
- <?php
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement