Skip to content

Instantly share code, notes, and snippets.

View fredfontes's full-sized avatar

Fred Fontes fredfontes

View GitHub Profile
@fredfontes
fredfontes / index.markdown
Created April 26, 2018 17:58
Integrações RD Station - HTML e Ajax com jQuery

Integrações RD Station

HTML e Ajax com jQuery

Formulário HTML

Crie normalmente um formulário com os campos que desejar, mas tendo sempre o campo email ou email_lead que é obrigatório.

É necessário também que o formulário tenha o atributo id como conversion-form.

É possível utilizar uma lista de outros campos já cadastrados na ferramenta de CRM do RD Station. Segue uma breve lista de opções:

  • nome
  • telefone
  • empresa
  • cargo
  • twitter
  • etc

@fredfontes
fredfontes / web.config
Last active March 24, 2017 14:09 — forked from jonahvsweb/web.config
How to Setup WordPress Permalinks on Windows IIS — Place this file into the base directory of your WordPress installation to allow permalinks (or "pretty URLs") on Windows IIS.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="wordpress" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_URI}" matchType="Pattern" pattern="^/wp-content/" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
@fredfontes
fredfontes / In your functions file
Created March 23, 2017 18:50 — forked from mrkdevelopment/In your social icons file
Divi social icons extension
/**
* Loads theme settings
*
*/
if ( ! function_exists( 'et_load_core_options' ) ) {
function et_load_core_options() {
global $shortname, $$themename;
require_once get_template_directory() . esc_attr( "/options_{$shortname}.php" );