All Projects → mautic → mautic-wordpress

mautic / mautic-wordpress

Licence: other
Wordpress Plugin

Programming Languages

PHP
23972 projects - #3 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to mautic-wordpress

WPGlobus
WPGlobus is a family of WordPress plugins assisting you in making bilingual / multilingual WordPress blogs and sites. This is a development repository. The stable version is on WordPress.org.
Stars: ✭ 40 (-61.54%)
Mutual labels:  wordpress-plugin
wp-showhide
Allows you to embed content within your blog post via WordPress ShortCode API and toggling the visibility of the cotent via a link.
Stars: ✭ 21 (-79.81%)
Mutual labels:  wordpress-plugin
geo-query
WordPress plugin: Geo Query - Modify the WP_Query/WP_User_Query to support the geo_query parameter. Uses the Haversine SQL implementation by Ollie Jones. With a Rest API example and support for an existing custom table .
Stars: ✭ 63 (-39.42%)
Mutual labels:  wordpress-plugin
wp-quicklink
The WordPress plugin for quicklink. ⚡️ Faster subsequent page-loads by prefetching in-viewport links during idle time.
Stars: ✭ 61 (-41.35%)
Mutual labels:  wordpress-plugin
disable-drop-cap
Plugin to disable drop cap in Gutenberg editor paragraph block.
Stars: ✭ 11 (-89.42%)
Mutual labels:  wordpress-plugin
better-wordpress-hooks
packagist.org/packages/calvinalkan/better-wordpress-hooks
Stars: ✭ 58 (-44.23%)
Mutual labels:  wordpress-plugin
code-embed
🧩WordPress plugin to make embedding of code in posts really, really easy
Stars: ✭ 20 (-80.77%)
Mutual labels:  wordpress-plugin
bbresolutions
A bbPress plugin to set your forum's topic resolutions.
Stars: ✭ 13 (-87.5%)
Mutual labels:  wordpress-plugin
multi-step-form
A free WordPress plugin for dynamic multi-step forms.
Stars: ✭ 32 (-69.23%)
Mutual labels:  wordpress-plugin
icon-block
A simple little WordPress block that allows you add an SVG icon or graphic to your website.
Stars: ✭ 24 (-76.92%)
Mutual labels:  wordpress-plugin
wordpress-plugin
IMPress for IDX Broker
Stars: ✭ 20 (-80.77%)
Mutual labels:  wordpress-plugin
likecoin-wordpress
The WordPress plugin to integrate LikeCoin - Decentralized Publishing Infrastructure.
Stars: ✭ 19 (-81.73%)
Mutual labels:  wordpress-plugin
aliyun-oss-wordpress
使用阿里云对象存储 OSS 作为附件存储空间的WordPress插件。QQ交流群:887595381
Stars: ✭ 56 (-46.15%)
Mutual labels:  wordpress-plugin
wordpress-geo-mashup
Official repository for Geo Mashup, the plugin that makes WordPress into a GeoCMS. Documentation:
Stars: ✭ 60 (-42.31%)
Mutual labels:  wordpress-plugin
flexible-templates
Allows saving templates of the "Flexible Content" field, for easy and fast use of them on other pages.
Stars: ✭ 36 (-65.38%)
Mutual labels:  wordpress-plugin
zionbuilder
Revolutionary WordPress page builder
Stars: ✭ 42 (-59.62%)
Mutual labels:  wordpress-plugin
wp2moodle--wordpress-
Wordpress to Moodle pass through authentication plugin (wordpress end)
Stars: ✭ 27 (-74.04%)
Mutual labels:  wordpress-plugin
acf-typography
A Typography Add-on for the Advanced Custom Fields Plugin
Stars: ✭ 14 (-86.54%)
Mutual labels:  wordpress-plugin
wp-offline
Use WordPress without all online-checks. Deactivate autoupdate for core, plugins and themes
Stars: ✭ 47 (-54.81%)
Mutual labels:  wordpress-plugin
bulk-delete
Bulk Delete is a WordPress Plugin that allows you to delete posts, pages and users in bulk based on different conditions and filters.
Stars: ✭ 31 (-70.19%)
Mutual labels:  wordpress-plugin

Mautic WordPress plugin Build Status Scrutinizer Code Quality Code Coverage

Mautic Wordpress Plugin injects Mautic tracking script and image in the WP website. Your Mautic instance will be able to track information about your visitors. You can also insert Mautic content inside your website using different shortcodes.

Key features

  • You don't have to edit source code of your template to insert tracking code.
  • Plugin adds additional information to tracking image URL so you get better results than using just plain HTML code of tracking image.
  • You can use Mautic form embed with shortcode described below.
  • You can choose where the script is injected (header / footer).
  • Tracking image can be used as fallback when JavaScript is disabled.

Installation

Via WP administration

Mautic - WordPress plugin is listed in the in the official WordPress plugin repository. That makes it very easy to install it directly form WP administration.

  1. Go to Plugins / Add New.
  2. Search for WP Mautic in the search box.
  3. The "WP Mautic" plugin should appear. Click on Install.

Via ZIP package

If the installation via official WP plugin repository doesn't work for you, follow these steps:

  1. Download ZIP package.
  2. At your WP administration go to Plugins / Add New / Upload plugin.
  3. Select the ZIP package you've downloaded in step 1.

Configuration

Once installed, the plugin must appared in your plugin list :

  1. Enable it.
  2. Go to the settings page and set your Mautic instance URL.

And that's it !

Usage

Mautic Tracking Script

Tracking script works right after you finish the configuration steps. That means it will insert the mtc.js script from your Mautic instance. You can check HTML source code (CTRL + U) of your WP website to make sure the plugin works. You should be able to find something like this:

<script>
    (function(w,d,t,u,n,a,m){w['MauticTrackingObject']=n;
        w[n]=w[n]||function(){(w[n].q=w[n].q||[]).push(arguments)},a=d.createElement(t),
        m=d.getElementsByTagName(t)[0];a.async=1;a.src=u;m.parentNode.insertBefore(a,m)
    })(window,document,'script','http://yourmauticsite.com/mtc.js','mt');

    wpmautic_send();
</script>

Custom attributes handling

If you need to send custom attributes within Mautic events, you can use the wpmautic_tracking_attributes filter.

add_filter('wpmautic_tracking_attributes', function($attrs) {
    $attrs['preferred_locale'] = $customVar;
    return $attrs;
});

The returned attributes will be added to Mautic payload.

Mautic Forms

To load a Mautic Form to your WP post, insert this shortcode to the place you want the form to appear:

[mautic type="form" id="1"]

Replace "1" with the form ID you want to load. To get the ID of the form, go to your Mautic, open the form detail and look at the URL. The ID is right there. For example in this URL: http://yourmautic.com/s/forms/view/3 the ID is 3.

Mautic Focus

To load a Mautic Focus to your post, insert this shortcode to the place you want the form to appear:

[mautic type="focus" id="1"]

Replace "1" with the focus ID you want to load. To get the ID of the focus, go to your Mautic, open the focus detail and look at the URL. The ID is right there. For example in this URL: http://yourmautic.com/s/focus/3.js the ID is 3.

Mautic Dynamic Content

To load dynamic content into your WP content, insert this shortcode where you'd like it to appear:

[mautic type="content" slot="slot_name"]Default content to display in case of error or unknown contact.[/mautic]

Replace the "slot_name" with the slot name you'd like to load. This corresponds to the slot name you defined when building your campaign and adding the "Request Dynamic Content" contact decision.

Mautic Gated Videos

Mautic supports gated videos with Youtube, Vimeo, and MP4 as sources.

To load gated videos into your WP content, insert this shortcode where you'd like it to appear:

[mautic type="video" gate-time="#" form-id="#" src="URL"]
[mautic type="video" src="URL"]

Replace the # signs with the appropriate number. For gate-time, enter the time (in seconds) where you want to pause the video and show the mautic form. For form-id, enter the id of the mautic form that you'd like to display as the gate. Replace URL with the browser URL to view the video. In the case of Youtube or Vimeo, you can simply use the URL as it appears in your address bar when viewing the video normally on the providing website. For MP4 videos, enter the full http URL to the MP4 file on the server.

Since the Mautic v2.9.1 release, the form-id is not mandatory anymore, mautic video can be tracked.

Mautic Tags

You can add or remove multiple lead tags on specific pages using commas. To remove an tag you have to use minus "-" signal before tag name:

[mautic type="tags" values="mytag,anothertag,-removetag"]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].