by Cliff Seal
2.6 (16 reviews)
Account Engagement
Integrate Account Engagement with WordPress: easily track visitors, embed forms and dynamic content in pages and posts, or use the forms or dynamic co …
Tested up to WP 6.4.7 (Current: 6.8.2)
v2.1.2
Current Version v2.1.2
Updated 1 year ago
Last Update on 03 Jun, 2024
Synced 1 day ago
Last Synced on
Rank
#4,642
—
No change
Active Installs
2K+
—
No change
KW Avg Position
103
—
No change
Downloads
213.4K
—
Total downloads
Support Resolved
0%
—
No change
Rating
52%
Review 2.6 out of 5
2.6
(16 reviews)
Next Milestone 3K
2K+
3K+
204
Ranks to Climb
-
Growth Needed
2,792
Current Installs
Need 208 more installs to reach 3K+
Rank Changes
Current
#4,642
Change
Best
#
Active Installs Growth
Downloads Growth
Reviews & Ratings
2.6
16 reviews
Overall
52%
5
4
(25%)
4
2
(13%)
3
2
(13%)
2
0
(0%)
1
8
(50%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| salesforce | 103 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.1.2
- Last Updated
- Jun 03, 2024
- Requires WP
- 5.5+
- Tested Up To
- 6.4.7
- PHP Version
- 7.2.0 or higher
- Author
- Cliff Seal
Support & Rating
- Rating
- ★ ★ ★ ☆ ☆ 2.6
- Reviews
- 16
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Account Engagement
In order to use Salesforce SSO authentication, you must create a connected application for the plugin in your Salesforce org. Navigate to App Manager. On the top right, click the "New Connected App" button. Enter an app name, API name, and contact email of your choice. Click the "Enable OAuth Settings" toggle. Enter a Callback URL to allow Salesforce to redirect users back to your Account Engagement plugin settings page. The URL should look similar to: https://[YourWordpressDomainHere]/wp-admin/options-general.php?page=pardot. Add "Access Pardot Services (pardot_api)" and "Perform requests on your behalf at any time (refresh_token, offline_access)" to your selected OAuth scopes. Save your connected application. A new page will appear with the Consumer Key and Consumer Secret. Enter your Consumer Key, Consumer Secret, and Account Engagement Business Unit ID into the Account Engagement WordPress settings screen. To find the Account Engagement Business Unit ID, go to Salesforce Setup and enter "Account Engagement Business Unit Setup" in the Quick Find box. Your Account Engagement Business Unit ID begins with "0Uv" and is 18 characters long. If you cannot access the Account Engagement Business Unit Setup information, ask your Salesforce Administrator to provide you with the Account Engagement Business Unit ID. Click "Save Settings".
You should then see Authentication Status change from "Not Authenticated" to "Authenticated".
Two simple shortcodes are available for use. Form Shortcode [pardot-form id="{Form ID}" title="{Form Name}" class="" width="100%" height="500" querystring=""] Use [pardot-form] with at least the id parameter. For instance, [pardot-form id="1" title="Title"] renders my Account Engagement form with an ID of 1. Optional parameters: The title parameter is included when using the toolbar button, but it's not required for display. There is no default. The class parameter allows you to add additonal classes to the iframe element. There is no default, but the class pardotform is now automatically added, regardless of any additional classes. The width parameter will set the width of the iframe in pixels or percentage. For example, "500", "500px", and "80%" are all valid. The default is 100%. The height parameter will set the height of the iframe in pixels only. For example, "500" or "500px" are valid. The default is 500px. The querystring parameter appends an arbitrary string to the end of the form's iframe source. This is helpful for passing data directly into the form. You can also do this with filters (see below). Dynamic Content Shortcode [pardot-dynamic-content id="{Dynamic Content ID}" default="{Non-JavaScript Content}"] Use [pardot-dynamic-content] with at least the id parameter. The default parameter is used for accessibility. Whatever is placed here is wrapped in <noscript> tags and is shown only to users who have JavaScript disabled. By default, it will automatically be your "Default Content" as designated in Account Engagement. So, [pardot-dynamic-content id="1" default="My default content."] would render something like: <script type="text/javascript" src="http://go.pardot.com/dcjs/99999/99/dc.js"></script><noscript>My default content.</noscript> ...which would show the dynamic content to users with JavaScript enabled, and 'My default content' to users with it disabled. Note that, due to the way the WordPress Visual Editor works, HTML tags for the parameter will be URL encoded to avoid strange formatting.
Simply choose another campaign in Settings > Account Engagement Settings and click 'Save Settings'.
Since every WordPress theme is different, embedded forms won’t always automatically fit. You’ll want to make a Account Engagement Layout Template specifically for your WordPress theme: Go to Forms in Account Engagement. Find and edit the form that needs updating. Click ahead to the 'Look and Feel' step of the wizard and select the 'Styles' tab. Set 'Label Alignment' to 'Above' and click 'Confirm and Save.'. Click the link to the layout template being used by the form. Edit the layout template and add the following to the <head> section of the template: <style type="text/css"> #pardot-form input.text, #pardot-form textarea { width: 150px; } </style> A width of 150px is just a starting point. Adjust this value until it fits on your page and add additional styles as you see fit. For styling help, reference our Basic CSS for Forms page. I just added a form or dynamic content, and it's not showing up to select it yet. Go to Settings > Account Engagement Settings and click 'Reset Cache'. This should reinitialize and update your Account Engagement content. The editor popup doesn't work, and I know that my WordPress installation is a little different. As of version 1.4, developers can now deal with various directory configurations that would previously cause the plugin to break. This is due to the plugin not being able to find wp-load.php. To fix it, add a new file called pardot-custom-wp-load.php to the plugins/pardot/includes directory (this will never be overridden by updates). In that file, define a constant that gives the absolute path to your wp-load.php file. For instance: define('PARDOT_WP_LOAD', '/path/to/wp-load.php'); Filters pardot_form_embed_code_[Form ID] Filter the entire embed code for a given form. A common usage for this is conditionally appending a query string. So, for instance, the following will filter the embed code for form #545 and append an arbitrary parameter along with the post ID of the page being viewed: function pardot_custom_append_querystring($body_html) { return preg_replace( '/src="([^"]+)"/', 'src="$1?this=that&postID=' . get_the_ID() . '"', $body_html ); } add_filter( 'pardot_form_embed_code_54796', 'pardot_custom_append_querystring' ); You can apply any conditional logic you want. For instance, this will append the same information, but only if you're on the "About" page: function pardot_custom_append_querystring($body_html) { if ( is_page('About') ) { $body_html = preg_replace( '/src="([^"]+)"/', 'src="$1?this=that&postID=' . get_the_ID() . '"', $body_html ); } return $body_html; } add_filter( 'pardot_form_embed_code_54796', 'pardot_custom_append_querystring' ); pardot_https_regex Filter the regular expression used to find URLs to be converted to https://go.pardot.com. This is only used when "Use HTTPS?" is checked in the settings. You may want to filter this regex if you find it's not properly capturing and converting your URLs. function pardot_custom_filter_https_regex() { return "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,63}(\/\S[^'\"]*)?/"; } add_filter( 'pardot_https_regex', 'pardot_custom_filter_https_regex' );