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_theme_support( 'title-tag' ); | |
?> |
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
<table> | |
<tbody> | |
<tr> | |
<td> | |
<div><label>CCL Business Segment</label> | |
<p>Food & Beverage</p></div> | |
<div><label>Site Location</label> | |
<p>Holzkirchen, Germany</p></div> | |
</td> | |
<td> <div><label>CCL Team Lead</label> |
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_action( 'elementor/query/brandProductsQuery', function( $query ) { | |
$meta_query[] = [ | |
'key' => '_stock_status', | |
'value' => 'instock', | |
'compare' => '=', | |
]; | |
$query->set('meta_query', $meta_query); | |
}); |
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
https://api.whatsapp.com/send/?phone=9055555555555&text=Merhaba |
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
billing country MUST NOT be mandatory | |
add_filter('woocommerce_billing_fields', 'vg_customize_checkout_form'); | |
function vg_customize_checkout_form($fields) | |
{ | |
$fields['billing_city']['required'] = false; | |
return $fields; |
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 | |
$remote_add=$_SERVER['REMOTE_ADDR']; | |
$hostname = gethostbyaddr($remote_add); | |
$googlebot = 'googlebot.com'; | |
$google = 'google.com'; | |
if (stripos(strrev($hostname), strrev($googlebot)) === 0 or stripos(strrev($hostname),strrev($google)) === 0 ) | |
{ | |
//add your code | |
} | |
?> |
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 disablegateways( $gateways ) { | |
if( is_admin() ) { | |
return $gateways; | |
} | |
if ( isset( $gateways[ 'stripe' ] ) ) { | |
unset( $gateways[ 'stripe' ] ); | |
} |
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
<!DOCTYPE html> | |
<html lang="en-GB"><head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" /> | |
<!-- This site is optimized with the Yoast SEO plugin v19.0 - https://yoast.com/wordpress/plugins/seo/ --> | |
<title>Home Care in Essex | Domiciliary & Live-in Care Services</title> | |
<meta name="description" content="Compare Essex home care agencies & providers in our trusted guide. Domiciliary care, live-in care & specialist Dementia care in Essex" /> | |
<link rel="canonical" href="https://www.agespace.org/county/essex" /> | |
<link rel="next" href="https://www.agespace.org/county/essex/page/2" /> |
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
<!DOCTYPE html> | |
<html lang="en-GB"><head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" /> | |
<!-- This site is optimized with the Yoast SEO plugin v19.0 - https://yoast.com/wordpress/plugins/seo/ --> | |
<title>Home Care in Essex | Domiciliary & Live-in Care Services</title> | |
<meta name="description" content="Compare Essex home care agencies & providers in our trusted guide. Domiciliary care, live-in care & specialist Dementia care in Essex" /> | |
<link rel="canonical" href="https://www.agespace.org/county/essex" /> | |
<link rel="next" href="https://www.agespace.org/county/essex/page/2" /> |
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
<script> | |
jQuery(document).ready(function($){ | |
setTimeout(function(){ | |
$('.flatpickr-input').each(function(){ flatpickr( $(this)[0] ).set('dateFormat', 'd/m/Y');}); }, 1000 ); | |
}); | |
</script> |