Home Forums WoodMart support forum Woofunnels checkout not working properly

Woofunnels checkout not working properly

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #447181

    Nitesh@1962
    Participant

    Hi,
    I was using tetrys theme of yours and use woofunnel as a checkout page. It was properly setup and I can see product image in the cart as well as the page was in full screen after adding the code provided by you guys and now I have moved to woodmart because you guys are adding too many features there. How can I make it work like it work in tetrys.
    You guys provided below code before:
    class WFACP_Compatibility_With_XTS_Telthys {

    public $instance = null;

    public function __construct() {

    //$this->register_elementor_widget();
    add_action( ‘init’, [ $this, ‘register_elementor_widget’ ], 4 );
    add_filter( ‘wfacp_css_js_removal_paths’, [ $this, ‘remove_theme_google_map_js’ ] );

    add_action( ‘wfacp_internal_css’, function () {
    WFACP_Common::remove_actions( ‘wfacp_default_values’, ‘WFACP_Do_Not_Fill_State’, ‘do_no_set_default_value’ );
    WFACP_Common::remove_actions( ‘woocommerce_form_field_args’, ‘WFACP_Do_Not_Fill_State’, ‘unset_state_default_value’ );
    } );

    }

    public function remove_theme_google_map_js($paths) {

    $paths[]=’maps.google.com’;

    return $paths;
    }

    public function remove_gmap_js() {
    wp_dequeue_script( ‘xts-google-map-api’ );
    }

    public function register_elementor_widget() {
    if ( ! $this->is_enable() ) {
    return;
    }
    if ( class_exists( ‘Elementor\Plugin’ ) && function_exists( ‘wfacp_elementor_edit_mode’ ) ) {
    if ( is_admin() ) {
    return;
    }
    if ( false == wfacp_elementor_edit_mode() ) {
    $this->instance = WFACP_Common::remove_actions( ‘init’, ‘XTS\Framework’, ‘init_elementor’ );

    if ( $this->instance instanceof XTS\Framework ) {
    add_action( ‘wp’, [ $this->instance, ‘init_elementor’ ], 8 );
    }

    }
    }
    }

    public function is_enable() {
    return class_exists( ‘XTS\Framework’ );
    }

    }

    new WFACP_Compatibility_With_XTS_Telthys();

    #447182

    Nitesh@1962
    Participant

    Just to clarify:
    Production (tetrys space theme) with woofunnel: Everthing working perfectly: product image in cart, margin and spaces are correct after you guys provided above custom code last year.

    Now moving to woodmart: Testting on staging now: Few issues:
    1) No product image in cart on checkout
    2) Unwanted space margins on both side.

    Attachments:
    You must be logged in to view attached files.
    #447199

    Nitesh@1962
    Participant

    Hi,
    Product image in cart is coming after turning off checkout setting in theme config. The only problem I am not able to solve is the large left and right margin which is coming too much as compare to my production theme

    #447200

    Nitesh@1962
    Participant

    Its done as well. YOu can close the ticket

    #447355

    Luke Nielsen
    Keymaster

    Hello,

    Glad that you managed to sort this out.

    In case you need any additional help, I’d be more than happy to assist you.

    Wish you all the best.

    Kind Regards

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘Woofunnels checkout not working properly’ is closed to new replies.