shulard
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Mautic] Mautic shorcode form not appearingHello !
Where are you adding the shortcode and what’s the current behaviour ?
- Is the shortcode displayed without any interpretation ?
- Is the shortcode transformed to some javascript tag (you can check the page’s source code for that) but the form is not displayed ?
- Have you some JavaScript errors (CORS, or others) in you browser’s console at page load ?
Forum: Plugins
In reply to: [WP Mautic] Can’t access settings pageHello !
This seems weird, what’s the link which trigger a 404 ? Which plugin version are you using ?
Forum: Plugins
In reply to: [WP Mautic] Settings page added for every pluginHello !
Thank you for the feedback, we totally missed this issue !
I’ll add your suggestion and publish a new release today.Forum: Plugins
In reply to: [WP Mautic] Mautic IssueHello !
Are you getting those 404 on your Mautic instance URL ?
Are you using only the pixel tracker ?
Forum: Plugins
In reply to: [WP Mautic] Smart URL trackingHello !
What do you mean by smart URL ? This plugin will track by default the current page URL.
However you can with a small piece of code control every part of the sent data…
Forum: Plugins
In reply to: [WP Mautic] Make the script insertion optional?You’re welcome ??
Forum: Plugins
In reply to: [WP Mautic] error when activating pluginHello,
It seems that you have two copies of the plugin in your WordPress installation.
If you install the latests sources manually, you must delete the previous installed version.Forum: Plugins
In reply to: [WP Mautic] Update Other Mautic Fields From WP Fields?Hello !
In the plugin, you have a
wpmautic_tracking_attributes
filter which allow you to control data sent inside the Mautic tracking event.You can update or add data inside the given array :
add_filter('wpmautic_tracking_attributes', function(array $attributes) { $phone = …; //whatever logic required to retrieve the phone number $attributes['sitephonenumber'] = $phone; return $attributes; });
This piece of code can be added inside a plugin or a theme.
- This reply was modified 5 years, 1 month ago by shulard.
Forum: Plugins
In reply to: [WP Mautic] Make the script insertion optional?Hello !
Of course ??
We already identified this issue on the Github tracker but I haven’t found the time to work on it… It’ll been done ASAP in the next extension release.
If you have some time, I’ll be glad to review your commits ^^
Forum: Plugins
In reply to: [WP Mautic] Site URL doesn’t reflectHave you some errors in your brower JavaScript console regarding Mautic script or logic ?
Forum: Plugins
In reply to: [WP Mautic] Cant use Dynamic contentHello,
I’m not an expert with dynamic content configuration but at least we can check if the error is related to the WP integration. If not I’ll encourage you to try asking some help on the Mautic slack.
Have you some errors in your browser JavaScript console regarding Mautic events or scripts ?
Forum: Plugins
In reply to: [WP Mautic] Site URL doesn’t reflectHello,
The screenshot you attached is inside the Mautic tool. This allows only to choose the first screen you see when you access the admin panel.
Then in the wordpress plugin, you must specify your Mautic instance URL in the WPMautic settings screen.
In you case the URL must be : https://leadtwogenerations.mautic.net
Forum: Plugins
In reply to: [WP Mautic] Plugin slows down websiteHello,
This plugin itself is not responsible for your loading time problems I think because the logic in it “only” generate script tags to be inserted in the webpage.
Currently the loading of the Mautic tracking script is synchronous and it can impact performances. By the way we added an option in the plugin admin page to defer script loading in the footer. Have you used that option ?
It must help because users will see the page content before the mautic script will be loaded.
Forum: Plugins
In reply to: [WP Mautic] Mautic Tracking not workingHello,
What’s the expected behaviour here ? The plugin is “just” injecting the javascript tracking code in the page, maybe it miss some field to track the segment ?
Forum: Plugins
In reply to: [WP Mautic] Form field changed not effectedHello,
This must not be related with the WordPress plugin since this plugin only generate the JavaScript import tag to be used in the web page…
Can you give me an URL to test ?
Is your Mautic installation behind a proxy ? Like CloudFlare or something similar ?