Category: PHP

Parsing Domain From URL In PHP

For our customization want to parsing domain from URL in PHP then use the following code. Here $parse[‘host’] prints the domain name of a given URL in $url.

$url = 'http://www.boopathirajan.com/dhasjkdas/sadsdds/sdda/sdads.html';
$parse = parse_url($url);
print $parse['host']; // prints 'boopathirajan.com'

Have any doubt, then comment here!

Hide woocommerce shop page tittle programmatically in WordPress

For our customization want to hide woocommerce shop page tittle programmatically in WordPress then place the following snippet in functions.php within your theme folder!.
[sourcecode language=”plain”]

add_action( ‘woocommerce_show_page_title’, ‘cw_woocommerce_show_page_title’, 10);
if( !function_exists(‘cw_woocommerce_show_page_title’) ) {
function cw_woocommerce_show_page_title() {
return false;
}
}

[/sourcecode]
Have any doubt, then comment here!

Remove woocommerce related products programmatically in WordPress

For our customization want to remove woocommerce related products programmatically then place the following snippet in functions.php within your theme folder!.
The remove_action can be used for removing the related products from woocommerce page.

remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products',20);
remove_action( 'woocommerce_after_single_product', 'woocommerce_output_related_products',10); 

Have any doubt, then comment here!

Check post type and remove media buttons in wp-admin

For our customization want to check post type and remove media buttons in wp-admin then place the following snippet in functions.php within your theme folder!. add your custom post type slug instead of custom-post-type.

add_action('admin_head', 'check_post_type_and_remove_media_buttons');
function check_post_type_and_remove_media_buttons()
{
	global $post;
	if($post->post_type == 'custom-post-type')
	{
		remove_action( 'media_buttons', 'media_buttons' );
	}
}

Have any doubt, then comment here!