• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Take off page title

Started by ronyhage,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ronyhageTopic starter

Hi,

How can I take off the page title as explained in the screen shot?

Please advise.

Thanks!
  •  

PHPVibe A.

com/com_post.php or com_page.php

$txt = '<h3 class="loop-heading"><span>'._html($_post->title).'</span></h3>';


changed to

$txt = '';

ronyhageTopic starter

ok changed the code from

$txt = '<h3 class="loop-heading"><span>'._html($_post->title).'</span></h3>';

to

$txt = '';

It was in the file com_post.php but no changes appeared.

I even cleaned cache and cookies in my browser, still no changes.
  •  

PHPVibe A.

Ok, this is for articles single post. Are you looking there?
From your image I can't tell if it's the blog page, or single article/page...I assume single article.

ronyhageTopic starter

basically I just create these pages from the dashboard under pages. I attached an image for where I create them from.
  •  

PHPVibe A.

If they are pages, you edit com_page.php and change

$txt = '<h3 class="loop-heading"><span>'._html($_page->title).'</span></h3>';


to

$txt = '';


To remove the title.

Similar topics (7)