Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support Towhid

    (@cryptex_vinci)

    Hi @cxp4

    Can you please let me know the error it’s showing.

    One known issue is conflict with date time picker in the Oxygen Builder. If thats the case, then insert this snippet to your themes functions.php

    add_action( 'wp_enqueue_scripts', 'um_deregister_datetime_picker', 99999 );
    
    function um_deregister_datetime_picker() {
    
    	if($_GET['ct_builder'] == 'true') {
    		wp_deregister_script( 'um_datetime' );
    		wp_deregister_script( 'um_datetime_date' );
    		wp_deregister_script( 'um_datetime_time' );
    		wp_deregister_script( 'um_datetime_legacy' );
    		wp_deregister_script( 'um_datetime_locale' );
    	}
    }

    Thanks

    Thread Starter cxp4

    (@cxp4)

    Hi,
    I was not able to edit some templates at all while UM was activated.
    Some layout settings could not be properly edited via oxy in woocommerce elements like cart.

    Plugin Support Towhid

    (@cryptex_vinci)

    Hi @cxp4

    What is the error it shows when you try to edit?

    Thread Starter cxp4

    (@cxp4)

    Hi,
    This is happening due to the following error in the console:
    RangeError: Maximum call stack size exceeded

    Screenshot: https://d.pr/i/I6uead.

    you can get in touch with Phe at
    [email protected]
    if you want to work on solving this issue.
    Cheers,
    Chris

    Plugin Support Towhid

    (@cryptex_vinci)

    Hi @cxp4

    Snippet I provided earlier should fix this issue.

    Thanks

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @cxp4

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards,

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘conflicts with oxygen builder’ is closed to new replies.