Okay
  Public Ticket #2881742
Google Sheets
Closed

Comments

  • Nicole Hart started the conversation

    Hi there, looks like a great plugin but have 2 remaining questions.

    Can Amelia send the booking data to a google sheet?

    For storing the booking data, does it have to be stored in the Wordpress dashboard like info on the customer's details, name, address or can you have that option removed not to store it?

    Thank you,

    Nicole

  • [deleted] replied

    Hi Nicole

    Thank you for reaching out to us.

    Unfortunately this cannot be achieved using the plugin's builtin features.

    I'll kindly ask you to add it as a feature suggestion on this page. 

    Features are pushed up on our "to-do" list when there are a lot of customers requesting those features, so having your vote as a customer can be beneficial to this feature being developed sooner.

    It probably can be done with some custom work, but our developers are very busy at the moment, working on some priority tasks and fixing bugs and issues with our plugins, so they won't be having the time for custom work in near future.

    But we can recommend these services for customization:

    https://codeable.io/?ref=l1TW1

    https://wpkraken.io/?tms-plugins

    They do develop such solutions, so can you please send your inquiry to them?


  • Nicole Hart replied

    But it says under the Features page that Amelia supports webhooks: https://wpamelia.com/web-hooks-settings/

  • [deleted] replied

    Hi Nicole

    Unfortunately we don't have hooks (action and filters) at the moment. What we have is a few JS hooks that are triggered depending on the view:

    window.beforeAddToCalendarLoaded()
    window.beforeBookingLoaded()
    window.beforeSearchLoaded()
    window.beforeSearchFiltered()
    window.afterSearchFiltered()
    window.beforeConfirmedBooking()
    window.beforeCatalogLoaded()
    window.afterSelectCatalogCategory(object_category)
    window.beforeCatalogCategoryLoaded(object_category)
    window.beforeCatalogServiceLoaded(object_category, object_service)
    window.afterSearchActivateService(object_appointment, object_serviceActive)
    window.afterSearchGoToSecondStep(object_appointment, object_serviceActive)
    window.afterBookingSelectDateAndTime(object_appointment, object_serviceId, object_providerId, object_locationId)
    window.afterBookingSelectService(object_appointment, object_serviceId, object_providerId, object_locationId)
    window.beforeConfirmBookingLoaded(object_appointment, object_service, object_provider, object_location)
    window.afterConfirmBooking(object_appointment, object_service, object_provider, object_location)

    JS files are modified (minimized) in public version of plugin (in our development environment is accessible), but unfortunately I can not send you our source code because that is the policy of our company.

    All those files that have extension .vue are compressed and minimized in JS files that is very hard and not recommended modifying. So in order to add some other features you can unminify the js and customize it.