Skip to content

Instantly share code, notes, and snippets.

View webzunft's full-sized avatar

Thomas Maier webzunft

View GitHub Profile
@webzunft
webzunft / body section
Created January 29, 2014 17:04
asynchronous Google DFP for Publishers Tag code with explanations
<!-- the id must match the id defined in the slot -->
<!-- style attribut is optional, but useful to prevent to shift layout after ad is loaded -->
<div id="banner1" style="width:300px; height:250px;">
<script type="text/javascript">
// id 'banner1' is used here, again
googletag.cmd.push(function() { googletag.display('banner1'); });
</script>
</div>
@webzunft
webzunft / functions.php
Created February 18, 2014 19:54
Sample code for an adblocker check based on BlockAlyzer for WordPress
function adblock_alert(){
?><script type="text/javascript">
jQuery(document).ready(function($) {
setTimeout(function(){
if ( ba_blocked == true ) alert("You are using adblock.");
},200)
});
</script><?php
}
add_action('wp_footer', 'adblock_alert');
@webzunft
webzunft / gist:5598039
Created May 17, 2013 09:35
Code to allow to create and update a user in WordPress without an e-mail address. It simply removes the error message. This code was written to be used in a plugin written as a class
public function __construct () {
// other code...
add_action( 'user_profile_update_errors', array( $this, 'remove_empty_email_error' ));
}
function remove_empty_email_error( $arg ) {
if ( !empty( $arg->errors['empty_email'] ) ) unset( $arg->errors['empty_email'] );
}
@webzunft
webzunft / log.php
Last active December 18, 2015 12:09
function to log events for themes in WordPress functions.php
/* LOG FUNCTION */
function log( $input ){
$time = date('d-m-Y H:i T');
$file = get_template_directory() . '/log.txt';
$handle = fopen($file, 'a');
$data = '--------------- ' . $time."--------------- \r\n".$input."\r\n";
fwrite($handle, $data);
fclose($handle);
}
@webzunft
webzunft / css
Created September 17, 2018 09:17
Reserve ad space with a ratio
/** this code allows to reserve ad space with a ratio, e.g., when width is 100% and height needs to be adjusted dynamically
https://www.w3schools.com/howto/howto_css_aspect_ratio.asp
"top-banner-ads" is the class of the main container, in Advanced Ads derived from the placement name
**/
.top-banner-ads {
width: 100%;
height: auto;
padding-top: 12.4%; /* 728:90 ratio */
position: relative;
}
@webzunft
webzunft / advanced-ads-company-category.php
Last active March 5, 2019 10:30
Add a company taxonomy to ads managed by the Advanced Ads plugin.
<?php
/**
* Advanced AdsCompany Category
*
* @wordpress-plugin
* Plugin Name: Advanced AdsCompany Category
* Plugin URI: https://wpadvancedads.com
* Description: Add a Company category to ads so that you can group them.
* Version: 0.1
* Author: Thomas Maier
@webzunft
webzunft / helper-functions.php
Last active December 10, 2019 09:09
Suggestion for improved edd_all_access_user_has_pass() in EDD All Access
<?php
/**
* Check if a specific customer has a valid, specific All Access Pass.
*
* @since 1.0.0
* @param int - The ID of the user
* @param mixed - The ID of the All Access product, separate multiple IDs using comma
* @param mixed - The price_id (price variation) of the All Access product, separate multiple IDs using comma, leave empty for all price IDs
* @param string - The status of the pass we want to check if the user has.
* @return object/int - The All Access Pass if it exists or false if not.
@webzunft
webzunft / shortcodes.php
Last active December 10, 2019 10:06
Extend edd_aa_all_access() function in EDD All Access to work for multiple All Access passes
<?php
/**
* Shortcode which can be used to easily give a user the option to log in or purchase an All Access Pass.
* If the user is already logged in but does not have a valid All Access Pass, they will see a buy button.
* If the user is both logged in and has a valid All Access Pass, they will be redirected to the page defined by the shortcode args.
* Can also be used to restrict content.
*
* @since 1.0.0
* @param array $atts Shortcode attributes
* @param string $content
@webzunft
webzunft / check cURL version
Last active January 22, 2022 08:35
Check cURL version in EDD Software Licensing > activate_license
if ( is_wp_error( $response ) ) {
$body = wp_remote_retrieve_body( $response );
if ( $body ) {
return $body;
} else {
$curl = curl_version();
return __( 'License couldn’t be activated. Please try again later.', 'advanced-ads' ) . " (cURL {$curl['version']})";
}
}
@webzunft
webzunft / fix-unclosed-query.php
Created September 25, 2020 11:53
Fixes an unclosed WP_Query() or query_posts() before Advanced Ads loads an ad
/**
* Fix the "Current post is not identical to main post."
* and "Current query is not identical to main query." warnings in Advanced Ads
* caused by custom queries not using wp_reset_postdata() or wp_reset_query()
*
* @source https://wpadvancedads.com/manual/ad-debug-mode/
* @source https://developer.wordpress.org/reference/classes/wp_query/
* @source https://developer.wordpress.org/reference/functions/query_posts/
*
* Developers should not use this and rather add wp_reset_postdata() or wp_reset_query() to their code