View add_quantcast_choice_headar.php
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 | |
add_action( 'wp_head', array( $this, 'quantcast_choice_enable_action' ), function() { | |
?> | |
<!-- Quantcast Choice. Consent Manager Tag v2.0 (for TCF 2.0) --> | |
<script type="text/javascript" async=true> | |
(function() { | |
var host = window.location.hostname; | |
var element = document.createElement('script'); | |
var firstScript = document.getElementsByTagName('script')[0]; | |
var url = 'https://cmp.quantcast.com' |
View ga_tcf2.js
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
/* Need help? Hire us: https://www.webdados.pt/contactos/ */ | |
//We need to wait for the page to be ready, or else the Consent platform may not be loaded yet, and we'll fire the pageview earlier than we should | |
window.onload = function() { | |
var google_analytics_id = 'UA-111111-01'; //Replace with yours | |
//Prepare the data layer | |
window.dataLayer = window.dataLayer || [] | |
//gtag function | |
function gtag() { | |
dataLayer.push(arguments); |
View ifthen_send_email_instructions.php
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 | |
add_filter( 'multibanco_ifthen_send_email_instructions', 'my_multibanco_ifthen_send_email_instructions', 10, 5 ); | |
add_filter( 'mbway_ifthen_send_email_instructions', 'my_multibanco_ifthen_send_email_instructions', 10, 5 ); | |
add_filter( 'creditcard_ifthen_send_email_instructions', 'my_multibanco_ifthen_send_email_instructions', 10, 5 ); | |
add_filter( 'payshop_ifthen_send_email_instructions', 'my_multibanco_ifthen_send_email_instructions', 10, 5 ); | |
function my_multibanco_ifthen_send_email_instructions( $send, $order, $sent_to_admin, $plain_text, $email ) { | |
$emails_to_remove = array( | |
'customer_completed_order', |
View flatsome_live_search_relevanssi_search_ok.php
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 | |
add_filter( 'relevanssi_search_ok', 'flatsome_live_search_relevanssi_search_ok' ); | |
function flatsome_live_search_relevanssi_search_ok( $search_ok ) { | |
if ( is_ajax() && isset( $_GET['action'] ) && trim( $_GET['action'] ) == 'flatsome_ajax_search_products' ) { | |
return true; | |
} | |
return $search_ok; | |
} |
View include_kk_categories.php
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 | |
//Get the plugin from https://www.webdados.pt/wordpress/plugins/feed-kuantokusta-para-woocommerce/ | |
add_filter( 'kuantokusta_product_node_show', 'my_include_kk_categories', 10, 2 ); | |
add_filter( 'kuantokusta_variation_node_show', 'my_include_kk_categories', 10, 2 ); | |
function include_kk_categories( $show, $product ) { | |
//If not show, we don't neeed to process the item | |
if ( $show ) { | |
//Init as false | |
$show = false; | |
//Product categories IDs to include in the feed |
View invoicexpress_woocommerce_document_item.php
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 | |
add_filter( 'invoicexpress_woocommerce_document_item', function( $item_data, $item, $product, $order_object, $document_type, $args ) { | |
//Do whatever you want with the $item_data array, for example, change its reference or description | |
$item_data['name'] = 'whatever'; | |
//Or add somthing to its description | |
$item_data['description'] .= 'whatever'; | |
//And return it | |
return $item_data; | |
}, 10, 6 ); |
View invoicexpress_woocommerce_fetch_at_code.php
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 | |
/* Get AT Code 2 minutes after issuing Delivery Note - WordPress crons need to be running properly */ | |
add_action( 'invoicexpress_woocommerce_after_document_finish', function( $order_id, $type ) { | |
if ( $type == 'transport_guide' ) { | |
$minutes = 2; | |
wp_schedule_single_event( time() + ( $minutes * 60 ), 'invoicexpress_woocommerce_fetch_at_code', array( $order_id ) ); | |
} | |
}, 10, 2 ); |
View shop_as_client_autocomplete_limit.php
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 | |
//Return 10 users and 10 order (20 results) to the Shop As Client Pro Add-on autocomplete feature | |
add_filter( 'shop_as_client_autocomplete_limit', function( $limit ) { | |
return 10; | |
} |
View woo_dpd_portugal_email_tracking_hook_action.php
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 | |
add_filter( 'woo_dpd_portugal_email_tracking_hook_action', function( $action ) { | |
return 'woocommerce_email_customer_details'; | |
} ); | |
add_filter( 'woo_dpd_portugal_email_tracking_hook_priority', function( $priority ) { | |
return 1; | |
} ); |
NewerOlder