Okay
  Public Ticket #2571459
Checkout URGENT
Closed

Comments

  • Linda started the conversation

    Problem SITE JUST WENT LIVE. 


    https://www.loom.com/share/07d7fb3ad3704a379120faa8ea5d13b9


    how do we get rid of Local time, Client Time and just have class. We were able to get rid of it on the class registration page, but not the thank you for your order page.


    Also the woocommerce side shows the exact same thing. It is a real problem as there is confusion.

  • Linda replied

    Also why does WooCommerce look like this. We need to get rid of everything but Class: ------


    All that other stuff is useless, and we have tried CSS for it.


    Please answer this and watch both of the videos. SITE IS LIVE, AND WE ARE GETTING QUESTIONS.

  • [deleted] replied

    Hello Linda,

    There isn't a possibility of changing/choosing the information sent from Amelia to WooCommerce, with Amelia's current built-in Woo integration, unfortunately. 


    You can only try removing these information directly in the code of the plugin if you want, but please note that this change will be lost when you update Amelia so you would need to apply it after each update.

    You can access these information in the file WooCommerceService.php at location

    src/Infrastructure/WP/Integrations/WooCommerce/WooCommerceService.php

    method

    getItemData


    Please note - I booked one appointment on your website ( customer amelia test so please delete it so it won't occupy a slot in the event) to see if maybe it is possible to hide this on the front-end, but it isn't, unfortunately, as everything is set together as Woo Product information, so the class information would be hidden as well. And in any case this wouldn't apply to the email notifications from Woo.



  •  2
    BlazingDragon replied

    Hi Linda,

    Try this.

    Turn off Client timezone:
    Go to: Amelia -> Settings -> General, and turn off the slider by “Show booking slots in client time zone”. See also attachment.

    CSS to Remove Local Time:

    .woocommerce .cart_item dd p:nth-child(2) {

      display: none;

    }

    The text “appointment x1” will be harder to remove, no fixed anchor points. But with the code below you can remove “x1”, so maybe you can live with that?

    .woocommerce .product-quantity {

      display: none;

    }

    Patrick

  • Linda replied

    Your code did not work. Got anything else that will???