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
/** | |
* Title: Triple Match MCC | |
* Descritpion: Adds the missing match types of each keyword in every ad group | |
* Author: Wolf+Bär Agency, Aleksandar Vucenovic | |
* Website: https://wolfundbaer.ch | |
* License: GNU GPLv3 | |
* Version: 0.4 | |
* URL: https://gist.github.com/alewolf/ae90ea9c658df09b08d129f58575213c | |
* URL: | |
*/ |
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
// Title: Triple Match | |
// Descritpion: Adds the missing match types of each keyword in every ad group | |
// Author: Wolf+Bär Agency, Aleksandar Vucenovic | |
// License: GNU GPLv3 | |
// Version: 0.1 | |
// URL: https://gist.github.com/alewolf/daae9228b396e3fd6216b5d72af17da7 | |
// URL: | |
// START Settings |
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
/* | |
* Title: Modified Broad Match MCC | |
* Descritpion: Switch all broad match keywords to modified broad match | |
* Author: Wolf+Bär Agency, Aleksandar Vucenovic | |
* License: GNU GPLv3 | |
* Version: 0.4 | |
* URL: https://gist.github.com/alewolf/91bc532014453ec2eac801bf342ee1f9 | |
* URL: | |
*/ |
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
// Title: Modified Broad Match | |
// Descritpion: Switch all broad match keywords to modified broad match | |
// Author: Wolf+Bär Agency, Aleksandar Vucenovic | |
// License: GNU GPLv3 | |
// Version: 0.3 | |
// URL: https://gist.github.com/alewolf/e6fcecfba548c765a4ad52d46abcd81e | |
// URL: | |
// START Settings |
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 template adds thumbnails to your SearchWP Live Ajax Search results. | |
* | |
* Create a folder called searchwp-live-ajax-search in your child theme folder and copy this file in there. | |
* In order for this to work you require the SearchWP and SearchWP Live Ajax Search plugins installed and active. | |
* | |
*/ | |
?> |
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
<script type="text/javascript"> | |
// In contrary to the original AdWords Phone Conversion Tracking Script this version doesn't require changes on the website. It even can implemented using Google Tag Manager. | |
// The original AdWords script requires an additional <span> element with an id that encloses the phone number. | |
// This new script doens't require that span element anymore. It autoaticall searches through the entire document and changes all phone numbers that match. Also it searches through all href sources and changes the phone number there too (for clickable phone numbers). | |
// In this version of the script there is one requirement though. The phone number on the website has to bee written in the exact same format, with spaces, etc. Only then the script will find and exchange the numbers. | |
// AdWords phone conversion ID. Since this is a number no quotation marks are necessary. | |
var gak = CONVERSION_ID; // eg. 12345678912 | |
// AdWords conversion label |
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
<script type="text/javascript"> | |
$( window ).load(function(){ | |
$.getScript("//geoip-js.com/js/apis/geoip2/v2.1/geoip2.js", function() { | |
var onSuccess = function(geoipResponse) { | |
// change '#lp-pom-form-64 #city' to match your form ID and field name | |
$('#lp-pom-form-64 #city')[0].value = geoipResponse.city.names.en; | |
}; |
NewerOlder