Files
szkoleniauryzaj.pl/wp-content/plugins/woo-product-feed-pro/classes/class-google-remarketing.php
2024-11-10 21:08:49 +01:00

30 lines
786 B
PHP

<?php
/**
* This class sets Google Remarketing functions
*/
class WooSEA_Google_Remarketing {
public static function woosea_google_remarketing_pagetype ( ) {
$ecomm_pagetype = "other"; // set a default
if (in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
if(is_product()){
$ecomm_pagetype = "product";
} elseif (is_cart()){
$ecomm_pagetype = "cart";
} elseif (is_checkout()){
$ecomm_pagetype = "cart";
} elseif (is_product_category()){
$ecomm_pagetype = "category";
} elseif (is_front_page()){
$ecomm_pagetype = "home";
} elseif (is_search()){
$ecomm_pagetype = "searchresults";
} else {
$ecomm_pagetype = "other";
}
}
return $ecomm_pagetype;
}
}