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
| <?php | |
| function response_time() { | |
| echo "<script> | |
| window.addEventListener( | |
| 'load', | |
| function() { | |
| setTimeout( | |
| function() { | |
| if ( window.performance && window.performance.timing && window.console ) { |
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
| <?php | |
| add_filter( 'genesis_single_crumb', 'gj_single_crumb', 10, 2 ); | |
| /** | |
| * Remove Post Title from Breadcrumb. | |
| * | |
| * Takes a substring of crumb, starting at 0, with a length of up to the last occurrence of the | |
| * (start of the) separator string. | |
| */ | |
| function gj_single_crumb( $crumb, $args ) { |
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
| <?php | |
| add_filter( 'oembed_providers', 'oembed_fix_twitter', 10, 1 ); | |
| function oembed_fix_twitter( $providers ) { | |
| $providers[ '#https?://(www\.)?twitter\.com/.+?/status(es)?/.*#i' ] = array( 'https://api.twitter.com/1/statuses/oembed.{format}', true ); | |
| return $providers; | |
| } |
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
| <?php | |
| /* Set up Licence key for this theme. URL: https://easydigitaldownloads.com/docs/activating-license-keys-in-wp-plugins-and-themes */ | |
| /* This is the URL our updater / license checker pings. This should be the URL of the site with EDD installed. */ | |
| define( 'MINA_OLEN_SL_STORE_URL', 'http://localhost/foxnet-themes-shop' ); // use your own unique prefix to prevent conflicts | |
| /* The name of your product. This should match the download name in EDD exactly. */ | |
| define( 'MINA_OLEN_SL_THEME_NAME', 'Mina olen' ); // use your own unique prefix to prevent conflicts | |
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
| <?php | |
| /** | |
| * Snippet for deleting the customer IP address from WooCommerce orders. | |
| * Important for Trusted Shops® certificates in Germany. | |
| */ | |
| add_action( 'woocommerce_checkout_update_order_meta', 'mp1401091554', 1 ); | |
| function mp1401091554( $order_id ) { | |
| update_post_meta( | |
| $order_id, | |
| '_customer_ip_address', |
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
| /** | |
| * Change Image Alignment of Featured Image From Left to Right | |
| * | |
| */ | |
| function sk_change_image_alignment( $attributes ) { | |
| $attributes['class'] = str_replace( 'alignleft', 'alignright', $attributes['class'] ); | |
| return $attributes; | |
| } |
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
| <?php | |
| /** | |
| * Dont Update the Theme | |
| * | |
| * If there is a theme in the repo with the same name, this prevents WP from prompting an update. | |
| * | |
| * @since 1.0.0 | |
| * @param array $r Existing request arguments | |
| * @param string $url Request URL | |
| * @return array Amended request arguments |
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
| /** | |
| * to exclude field from notification add 'exclude[ID]' option to {all_fields} tag | |
| * 'include[ID]' option includes HTML field / Section Break field description / Signature image in notification | |
| * see http://www.gravityhelp.com/documentation/page/Merge_Tags for a list of standard options | |
| * example: {all_fields:exclude[2,3]} | |
| * example: {all_fields:include[6]} | |
| * example: {all_fields:include[6],exclude[2,3]} | |
| */ | |
| add_filter( 'gform_merge_tag_filter', 'all_fields_extra_options', 11, 5 ); | |
| function all_fields_extra_options( $value, $merge_tag, $options, $field, $raw_value ) { |
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
| <?php | |
| /* | |
| * @goliver79 | |
| * woocommerce hide empty categories in woocommerce widget "product categories" | |
| */ | |
| function woo_hide_product_categories_widget( $list_args ){ | |
| $list_args[ 'hide_empty' ] = 1; | |
| return $list_args; | |
| } |