Okay
  Public Ticket #1954448
Congratulations message and graphic
Closed

Comments

  •  10
    Tracy started the conversation

    Can I please remove this graphic of a trophy under 'Congratulations' and is there anywhere to change the word 'Congratulations' as well - it is not appropriate.

    I have created a redirect 'thank you' page but it did not send me there after booking (I'm testing).  I have things set for 'pending' by default but I would like users to be redirected to my thank you page which I have put in my settings.

    If when my redirected page is working it will eliminate users going to this trophy graphic then I don't need to worry about how to move it or change the words, I just need to know why the redirect didn't work.

    Thank you

  •  471
    Isidora replied

    Hi Tracy,
    Thank you for your purchase.

    Sorry for late response. 

    We are located in Serbia and our working time is from 10:00 to 17:00 CET. business days.

    Can you please tell me did you start that URL with http or https?

    If answer is yes and you still have issue please provide me a temporary WP-admin login for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party. You can write credentials here just check Private Reply so nobody can see them except us.

    Best regards.

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables

  •  10
    Tracy replied

    Hi Milan,

    It's okay, I know that I don't get replies over the weekend but thanks anyway.  Yes I did start with the https URL.  There is already a user set up for you for BOGDAN - do you want to use that one or shall I create another one for you?

  •  471
    Isidora replied

    Hi Tracy,

    It is all right, we used credentials that you made for BOGDAN.

    Sorry for misunderstanding,

    Redirect URL option is working fine when you click Finish button on Thank you page.

    That what you need is not possible to achieve with built in feature, but you can use hooks like beforeConfirmedBooking that will be triggered when your customers confirm booking. You can set that redirect URL that you need like on this script(we use https://www.google.com as example, but you will replace this with your own URL)

    <script>
    window.beforeConfirmedBooking = function()
    {
    window.location.href = "https://www.google.com";
    };
    </script>

    Please insert this script on page where you insert Amelia shortcode and it will work like you requested and you don't need to hide trophy and other strings.

    Best regards.

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables

  •  10
    Tracy replied

    Hi Milan,

    Thank you for this.  Can I clarify please.  At the end of each of the services pages on the site, I was going to put the code like this [ameliacatalog category=4] so they can book directly that service.  So this would be on each of those service pages.  On other pages I will use [ameliacatalog].

    So do you mean for me to add this script that you have provided below, to every instance wherever I have used any of the above amelia codes?

    Thanks, Tracy

  •  471
    Isidora replied

    Hi Tracy,

    Shortcode that you provide is for category with id 4, which means it will be shown all services that you have in this category. If you want to show service  on the page then you can use [ameliacatalog service=1] if your service have id 1 (in your case can be something else)

    Yes you need to use it on every page where you are using our shortcode.

    Best regards.

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables

  •  10
    Tracy replied

    Hi Milan,

    Thank you, I added the code and it took me where I needed!  

    Thanks again.

    Tracy

  •  471
    Isidora replied

    Hi Tracy,

    You are welcome.  

    If you have any more issues or questions feel free to open a new ticket, we will gladly help.

    We'd greatly appreciate it if you could take a minute and leave a Review on CodeCanyon on this link. Thanks! 

    Best regards.

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables

  •  10
    Tracy replied

    Hi Milan,

    I've just done the survey and will definitely be leaving a review on Code canyon, I wanted to wait until my work was complete but it will be a great review!!

    Thanks

  •  471
    Isidora replied

    Hi Tracy,

    Thank you so much.

    I am looking forward that you leave a review. It means us a lot.smile.png

    Have a nice day.

    Best regards.

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables

  • Luciano replied

    Hi Milan, 

    do we have a list of available hooks? I need to perform some changes in how the plugin looks in the frontend, specifically in how appointment slots are shown

  •  471
    Isidora replied

    Hi Luciano,

    Unfortunately we don't have hooks (action and filters) at the moment. What we have is a few JS hooks that is triggered depends 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.

    About the future question:

    When you are posting on ticket that are not yours or have questions or issues which are not related to the title of the active ticket can you please open a new one, and we will help you there. In that way, issues and questions which are related to different subjects will be in different tickets so other customers or our support agents can find it easily. Our policy is to have one issue or question per ticket because of the reasons that is described already.

    Thank you for understanding.

    Best regards

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables