by Jacob Allred | Sep 24, 2013 | Tips
Putting an Infusionsoft® web form on your site is an easy way to capture leads. Coordinating the web form’s design with your existing site can increase the effectiveness of your campaign. One of the ways you can accomplish this is to give your web form a transparent background, so your website’s design shows through. We’ve created a small stylesheet that does this for you. All you have to do is add an HTML snippet to your web form with the following line of code: <link href="https://d1zcb7keu4rf07.cloudfront.net/free/transparent-webform.css" rel="stylesheet" type="text/css" /> You are welcome to download this file and host it on your own server, but we recommend letting us host it for you. We’ll keep it up-to-date in case Infusionsoft® changes anything down the road so it will continue to work. To see this tip in action, visit our Contact Us...
by Jacob Allred | Sep 17, 2013 | Tips
WordPress is the most popular blogging platform in the world. It powers over 60 million websites. With that much of a reach, there is a good chance that at some point you’ll want to include an Infusionsoft® web form on a WordPress blog. You may think you can just copy and paste the web form JavaScript code into your WordPress post or page, but this won’t work or may stop working unexpectedly. WordPress “sanitizes” your posts by removing or modifying potentially harmful code, like JavaScript. To fix this, we’ve created the Infusionsoft Web Form JavaScript plugin for WordPress. When you install and activate this plugin, it will automatically convert web form JavaScript into a WordPress-friendly shortcode. You can even add CSS to your web form, making it easy to control where your web form appears on the page, whether it has a border, and other options. Let’s take a look at an example. Our contact us page uses a web form to make it easy for our visitors to get their inquiries to the right person at Novak Solutions. The JavaScript snippet for this web form looks like this: <script type="text/javascript" src="https://joey.infusionsoft.com/app/form/iframe/38b94063ae96e76dd0b7c1ff6328ad59"></script> If you were to copy and paste that into a post (like this one!) without using the Infusionsoft Web Form JavaScript plugin, then that is exactly what your visitors would see: a line of code. Not exactly pleasing. If you were using our plugin, however, that line of code would be automatically replaced with the following shortcode as soon as you saved or updated your post: [[javascript src="https://joey.infusionsoft.com/app/form/iframe/38b94063ae96e76dd0b7c1ff6328ad59"]] When the post or page is viewed, the plugin automatically...
by Jacob Allred | Sep 10, 2013 | Tips
Infusionsoft® gives you the ability to offer promo codes to your customers. To make it easier on your customers and to simplify the checkout process, you can add a snippet of JavaScript to your order form to automatically apply a promo code. To use this JavaScript, replace YOUR-PROMO-CODE with the promo code you want to be applied. Add this JavaScript to the Custom Header HTML area for your order form: <script type="text/javascript"> // <![CDATA[ jQuery( document ).ready(function() { jQuery('#promoCode').val("YOUR-PROMO-CODE"); jQuery('a.codeButton')[0].click(); }); // ]]> </script> When your customers open the order form, the promo code will be applied automatically as soon as the page finishes...