This file contains hidden or 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
| Including, but not limited to: | |
| non breaking space : | |
| en space :   or   | |
| em space :   or   | |
| 3-per-em space :   | |
| 4-per-em space :   | |
| 6-per-em space :   | |
| figure space :   | |
| punctuation space :   |
This file contains hidden or 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
| /**************************** | |
| * Bulk change campaign names | |
| * Version 1.0 | |
| * Created by Martijn Kraan | |
| * Brightstep.nl | |
| ****************************/ | |
| function main() { | |
| /* |
This file contains hidden or 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
| add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); | |
| function custom_override_checkout_fields( $fields ) { | |
| unset($fields['billing']['billing_first_name']); | |
| unset($fields['billing']['billing_last_name']); | |
| unset($fields['billing']['billing_company']); | |
| unset($fields['billing']['billing_address_1']); | |
| unset($fields['billing']['billing_address_2']); | |
| unset($fields['billing']['billing_city']); | |
| unset($fields['billing']['billing_postcode']); |
This file contains hidden or 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
| #!/bin/bash -e | |
| echo "============================================" | |
| echo "A robot is now installing WordPress for you." | |
| echo "============================================" | |
| # Download and unpack | |
| wget http://wordpress.org/latest.tar.gz | |
| tar -xzf latest.tar.gz |
This file contains hidden or 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
| Option Explicit | |
| Sub AddElements() | |
| Dim shp As Shape | |
| Dim i As Integer, n As Integer | |
| n = ActivePresentation.Slides.Count | |
| For i = 1 To n | |
| Dim s As Slide | |
| Set s = ActivePresentation.Slides(i) |
This file contains hidden or 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
| function main() { | |
| var currentSetting = new Object(); | |
| // what do you want to check? | |
| currentSetting.entityToCheck = "product groups"; // valid options: keywords, product groups | |
| // How much cost is allowed before we alert? | |
| currentSetting.maxCost = 1; | |
| // Fewer than how many conversions before we alert? |
This file contains hidden or 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
| var DEBUG = 0; | |
| function main() { | |
| var spreadsheetName = "Bid Ranges"; | |
| var spreadsheetUrl = ""; | |
| var accountManagers = ""; | |
| var overWriteOldData = 1; | |
| var sheetNames = ["Campaigns", "Keywords"]; |
This file contains hidden or 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
| /* | |
| // AdWords Script: Negatives Blocking Converting Queries | |
| // ----------------------------------------------------------------------------- | |
| // Copyright 2017 Optmyzr Inc., All Rights Reserved | |
| // | |
| // This script identifies negative keywords that are now blocking ads from | |
| // appearing for previously converting queries | |
| // | |
| // For more PPC management tools, visit www.optmyzr.com | |
| // |
This file contains hidden or 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
| // Report on how close variants relate to your keywords in Google Ads | |
| // Free AdWords Script courtesy of Optmyzr.com | |
| // September 12, 2018 | |
| function main() { | |
| // ----------------- | |
| // Edit this section with your preferences | |
| // ---------------- | |
| var time = 'LAST_30_DAYS'; |
NewerOlder