Hi community

 

Does anyone have experience with the Matomo connector?

 

Like 0

Like

4 comments

Hi!

 

If you require additional information on the Matomo connector, you may get acquainted with the Guide by the link:  https://marketplace.creatio.com/sites/en/files/app-guide/Matomo%20connector%20Guide.pdf

 

Hope you find the information to be useful!

Hi Alla!

I have installed the connector

I connected to a matomo instance, but nothing happens.

I tried to run manually the business processo  for Sync data from Matomo, but It seems the touchpointsscheduler does not run.

Can you help me?

 

 

 

 

 

 

Stefano Bassoli,



Hi! 



Please contact us via support@creatio.com and describe the issue you are facing with this connector in more details so we could assist you on it. 



Best regards,

Roman

Roman Brown,

Hi Roman 

I found the issue.

It's not related to the connector, but it's related to the data.

Show all comments

Hi there,

 

Does anyone have a landing page integration with Gravity Forms using a script?

 

This piece of the script works

 

jQuery(document).ready(initLanding);

$( "#gform_15" ).submit(function( event ) {

 createObject();

 

but always sends the data whenever the Submit button is clicked and I want to find a solution to only send when the form is actually sending correctly.



I cannot use the Marketplace integration as I need the Matomo integration script.

Already asked on the Gravity Forms forum, but no response there.

 

Your help is highly appreciated

Like 0

Like

4 comments

Hello Davey,

 

If you mean that you would like to create some kind of form validation that prevents from sending the form when there are empty fields, you could add some conditions to the function.

 

For example you can get the fields from the form by their Id document.getElementById() , and then verify whether their value is null or undefined. If it is, you can just put a return; statement before the createObject(); function, this way the function won't be executed if the conditions are not met.

 

So it would look somethig like this:

jQuery(document).ready(initLanding);

$( "#gform_15" ).submit(function( event ) {

//get the elements 

document.getElementById()

if(element1 === undefined || element2 === undefined) {

//write something on screen to inform that it needs to be filled

return;

} else {

createObject();

}

}

 

At the moment we do not have a ready example of this functionality, but you are welcome to try your own implementation and share with us the results.

 

Best regards,

Dariy

Dariy Pavlyk,

 

Thank you for the quick comment.



It's not that I need to check the form, but it's more like:

 

A user doesn't fill in the required fields, but clicks on 'Submit'

Then the default form will give an error: There was a problem with your submission. Please review the fields below.



But the script is triggered already and data goes to Creatio.

So what I need is that the script is triggered when the form is actually being submitted (like a validation).

 

Example for contact form 7 that works

document.addEventListener( 'wpcf7submit', function( event ) {

    createObject();

}, false );

 

 

And I know it's not Creatio, but Gravity forms, so I'll keep searching unless someone has an answer.

And I'll definitely look into your code example too.

Hello Davey,

 

The example that I provided would solve this issue, as if there is any required field that is not filled, the  createObject(); function will not be triggered.

 

if(requiredElement1 === undefined || requiredElement2 === undefined) {

return;

-- This return stops the function here, it won't go down 

} else {

createObject();

}

 

This "return" will stop the function, it won't go further, so the function won't execute the other function called "createObject();". So no request will be sent to Creatio.

 

Best regards,

Dariy

Dariy Pavlyk,

 

Thank you Dairy,

 

I really appreciate it.

 

I'll test it and give some feedback

Show all comments