I've made a static front page (www.tapemissions.com) and would like to remove the title that normally shows for each post. I don't have a title there only because I left it blank (I'd prefer another method), but I still can't find where I can delete the bar/box that normally houses the title. Thanks for the help!
Remove box for empty title
(10 posts) (4 voices)-
Posted 1 year ago #
-
go to funcitons.php and edit within
itx_single_content()functionPosted 1 year ago # -
Okay, I've found the itx_single_content() function, and forgive me for being too simple, but what exactly do I do within that to take away the title and the box that houses it, for my static front page only? Thank you in advance.
Posted 1 year ago # -
if you're using newest albizia, no need to edit anything. An empty title won't have any box
Posted 1 year ago # -
I've made a LOT of customizations, and don't really want to lose them. I'm brand new at this and it's taken me a month to get the website like I want it (well, almost). Can I just edit it out in the itx_single_content() function? If you tell me what to delete or edit, I will try it. I've been editing a lot within the CSS and HTML stuff, so I have a basic idea, but nothing mega.
Gracias!
Posted 1 year ago # -
Anybody have any ideas?
Posted 1 year ago # -
Hello new@this,
I was starting with the theme just last week, almost at the same time I started with Wordpress -:)
Allthough it is a few monts ago you had your problem, and maybe you did solve it, I just found out how to deal with the title:
in the mentioned function itx_single_content() in functions.php there is this if-then-else statement:<?php if ( is_singular() && !is_front_page() ): ?>
<h1>
" rel="bookmark"><?php echo $thetitle; ?>
</h1>
<?php else: ?>
<h3>
" rel="bookmark"><?php echo $thetitle; ?>
</h3>Now, the last href line you must delete to get rid of the title on the frontpage. The first href line you must delete to get rid of the title on all other pages.
Posted 1 year ago # -
I see in my previous post the href lines aren't complete ( missing permalink word ) but for the solution it doesn't matter !
Posted 1 year ago # -
I had the same problem, removed the 2 lines (just using one page) but the text "edit this entry?" doesn't disappear, even when logged out of wordpress. maybe it's my cache but it was still there after cleaning the cache.
Posted 1 month ago # -
it's solved, my browsercache wasn't flushed yet (ctrl+f5)
Posted 1 month ago #
Reply
You must log in to post.