Question : Joomla-how to stop componentheading displaying in page

I'm a Joomla Newbie but learning reasonably quickly.

I am using this template: http://osc4.template-help.com/joomla_28832/

The A, B, C etc tabs are Modules, the text you see on the buttons is edited in the Module. I have linked the 'Read More' links to Articles that display OK. However, I am getting a default (the Domain name) componentheading displaying above the Article heading on every page. How can I turn it off?

I have tried switching off various Parameters to do with showing headings (as suggested in Joomla forums) but nothing is working for me

Answer : Joomla-how to stop componentheading displaying in page

you have 2 ways, both below...
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
<?php
$lat = $_GET['lat'];
$lng = $_GET['lng'];
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'http://maps.google.com/maps/api/geocode/json?latlng='.$lat.','.$lng.'&sensor=false');
curl_exec($curl_handle);
curl_close($curl_handle);

?>

<?php
$lat = $_GET['lat'];
$lng = $_GET['lng'];
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,"http://maps.google.com/maps/api/geocode/json?latlng=$lat,$lng&sensor=false");
curl_exec($curl_handle);
curl_close($curl_handle);

?>
Random Solutions  
 
programming4us programming4us