Home › Forums › WoodMart support forum › Woofunnels checkout not working properly
Woofunnels checkout not working properly
- This topic has 4 replies, 2 voices, and was last updated 1 year, 10 months ago by Luke Nielsen.
-
AuthorPosts
-
February 28, 2023 at 10:17 pm #447181
Nitesh@1962ParticipantHi,
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();
February 28, 2023 at 10:29 pm #447182
Nitesh@1962ParticipantJust 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.March 1, 2023 at 12:22 am #447199
Nitesh@1962ParticipantHi,
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 themeMarch 1, 2023 at 12:28 am #447200
Nitesh@1962ParticipantIts done as well. YOu can close the ticket
March 1, 2023 at 1:21 pm #447355
Luke NielsenKeymasterHello,
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
-
AuthorPosts
The topic ‘Woofunnels checkout not working properly’ is closed to new replies.
- You must be logged in to create new topics. Login / Register