Brand Assets

Thanks for your interest in affiliating with Popup Maker

Below are a few guidelines for using Popup Maker’s brand resources, please take a moment to familiarize yourself with them. You can download individual assets in each section, or you can download everything all at once below.

Download All Assets

Our Name is Popup Maker

Popup Maker is two words. Always capitalize the P and the M.

Brand Name

PopupMaker

Not like this.

popup maker

Not like this.

POPUP MAKER

Not like this.

popupmaker

Not like this.

Popup Maker Colors

These are Popup Maker’s brand colors – copy the color codes below.

Brand Colors

Primary

#1dbe61

Light

#21db6f

Base

#1dbe61

Popup Maker Logo

These are Popup Maker’s marks & logos – copy or download in PNG/SVG format.

Logos & Marks

Not yet an affiliate?

Become an Affiliate
Earn commission when you recommend Popup Maker to your friends, fans & clients.
Sign Up

Popup Maker Historical Branding

These are Popup Maker’s past marks, logos & colors. Here for fun and archives.

Historical Marks, Logos & Colors
Popup Maker Logo - Archived
Popup Maker Logo - Archived
Popup Maker - Mark - Archived
Popup Maker - Mark - Archived

Primary

#9ab927

Light

#a8cb29

Base

#2d2d2d

Gray 1

#626262

Gray 2

#cacaca

Gray 3

#dfdfdf
View Categories

Extending Integrated Forms – Post Success Actions

Can I Perform Extra Actions After a Form Submission? #

Yes, you can. 

Even though 3rd-party form plugins have their own way of handling form submissions, Popup Maker v1.9+ provides a PHP hook you can use to run code after successful submissions.

What’s more, this single hook can reliably support AJAX & non-AJAX-based forms!

Add the following code to your site using the following options:

  • Child theme: Add the snippet to your child theme’s functions.php file
  • Theme settings: Use your theme’s custom code settings or snippets area
  • Code snippets plugin: Use a 3rd-party plugin that can add PHP code to your site
/**
 * This hook fires after any integrated form is submitted successfully.
 *
 * It does not matter if the form is in a popup or not.
 *
 * @since 1.9.0
 *
 * @param {Object} form JavaScript DOM node or jQuery object for the form submitted
 * @param {Object} args {
 *     @type {string} formProvider Such as `gravityforms` or `ninjaforms`
 *     @type {string|int} formId Usually an integer ID number such as 1
 *     @type {int} formInstanceId Not all form plugins support this.
 *     @type {string} formKey Concatenation of provider, ID & Instance ID.
 *     @type {int} popupId The ID of the popup the form was in.
 *     @type {Object} popup Usable jQuery object for the popup.
 * }
 */
PUM.hooks.addAction('pum.integration.form.success', function (form, args) {
	// Do something useful here.
});

Do you need help with adding custom PHP to your site? Check out our Getting Started with Custom PHP guide.

Leave the first comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.