Hi. I recently started a new page and I just configured my settings to have the homepage as a static page (rather than a blog). However, I want to remove the "Home" name from the page content (while leaving it in navigation bar).
I have searched online for solutions - and found many! - but none seem to apply to me. I cannot locate the correct files in page.php or index.php (as many forums suggest). I am using the Mystique theme, if that helps.
I ONLY want to do this to the main page - not my other pages.
Any ideas? Thank you!
add a custom field in the page named "hide_title"
Unfortunately I'm pretty new to this. Could you give me some instructions on how exactly to do that? Thanks, I appreciate it!
here
instead of "state" add "hide_title"
value can be empty.
Perfect! Thanks so much, that was much easier than all the other explanations I came across.
I have two other quick questions which you may have the answer to, since you're clearly the guy to ask!
1. Is it possible to add widgets to pages in Mystique? If so, how?
2. Do you have any recommendations for websites where I can use a WYSIWYG tool to generate text html?
Thank you so much!
1. where in pages?
2. why would you need that when you can write a post in Visual (WYSIWYG) mode in WordPress?
Regarding the widgets on pages, I figured out I don't really need to do that anymore. My mistake!
In terms of using the Visual mode for pages, I was looking for a little more control (for instance, over text size, font, etc). Is there a way to add those capabilities?
inam_321
Member
Posted 2 years ago #
hi! adamsfischer
plz tell how to show widgets inside the page
thanks
inam_321
Member
Posted 2 years ago #
also plz explain how can i hide custom home page name
as i am very new to WP
markandroena
Member
Posted 2 years ago #
I did as you suggested added "hide_title"and left the value blank and got message needs a value,added value which I put Home and it did not remove home on my static page any suggestions.
Mark
I had the same problem while trying to add "hide_title"
Here's what I did, edit the code in core.php. find the mystique_page() function and find the
<h1 class="title">
<?php
the_title();
?>
</h1>
add
if(!is_front_page())
to make it
<h1 class="title">
<?php
if(!is_front_page()) the_title();
?>
</h1>
franius
Member
Posted 2 years ago #
Set hide_title as value for the custom field hide_title