This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Gravity Forms PDF Extended | |
Plugin URI: http://www.gravityformspdfextended.com | |
Description: Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission. Our Business Plus package also allows you to overlay field onto an existing PDF. | |
Version: 3.5.10 | |
Author: Blue Liquid Designs | |
Author URI: http://www.blueliquiddesigns.com.au |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
self::$endpoint = 'leads'; | |
/* Tag Include Test - 1 tag */ | |
self::$data = array( | |
'results_per_page' => 1, | |
'include_tags' => array( 'hello' ) | |
); | |
Response: | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Travis CI Configuration File | |
# Tell Travis CI we're using PHP | |
language: php | |
# PHP version used in first build configuration. | |
php: | |
- "5.5" | |
# WordPress version used in first build configuration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action(‘wp_head’, ‘kill_form_tracking_for_specific_pages’); | |
if (!function_exists(‘kill_form_tracking_for_specific_pages’)) { | |
function kill_form_tracking_for_specific_pages(){ | |
// targeting page ID 106. Replace with your specific page ID | |
if (is_page(106)) { | |
echo ‘ | |
<script type=”text/javascript”> | |
jQuery(document).ready(function($) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template Name: Demo Template | |
* | |
* @package WordPress Landing Pages | |
* @author David Wells | |
* @link http://www.inboundnow.com | |
* @version 1.0 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* WordPress Landing Page Config File | |
* Template Name: Demo Template | |
* @package WordPress Landing Pages | |
* @author Inbound Now | |
* | |
* This is a demo template for developers and designers to use as a reference for building landing page templates | |
* for Wordpress Landing Pages Plugin http://wordpress.org/plugins/landing-pages/ | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* This example seeks to help developers understand how to access the /leads/ endpoint. | |
* | |
*/ | |
if ( !class_exists( 'Example_API_Calls' )) { | |
class Example_API_Calls { | |
static $key; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This example seeks to help developers understand how to access the /analytics/track-link/ endpoint. | |
*/ | |
if ( !class_exists( 'Example_API_Calls' )) { | |
class Example_API_Calls { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"url": "http:\/\/inboundsoon.dev\/inbound\/v6io5n87" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This example seeks to help developers understand how to access the /field-map endpoint. | |
*/ | |
if ( !class_exists( 'Example_API_Calls' )) { | |
class Example_API_Calls { |