-
AuthorPosts
-
January 3, 2017 at 6:40 pm #729103
Hi,
After importing the consulting demo, it seems like something is missing from the theme files?
I have multiple pages and after loading them, I can see that the title is missing at the top of the page.
For example:
– my page title is “Frequently Asked Questions”
– Currently, when I load the page, the content of the page is at the top.Please let me know how I can get the PAGE TITLE (“Frequently Asked Questions”) to show up before the content starts.
Thank you!
January 3, 2017 at 10:01 pm #729169Hey!
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
YigitJanuary 4, 2017 at 8:20 pm #729597Hi!
Here is the login info.
I’ve also added a link to a sample page.
Thanks!
January 4, 2017 at 9:43 pm #729615Hey!
I am getting following error when i try to load your login page.
Can you please temporarily disable IP restriction? :)Regards,
YigitJanuary 5, 2017 at 7:54 pm #730047hi,
I don’t think I can disable the IP restriction actually…
But to repeat the problem, it’s simple.
I simply installed the enfold theme on a new wordpress install. Then I imported the CONSULTING DEMO. Then the import will add a “welcome” and a “sample page” to the wordpress pages.
Lastly, go to wordpress admin sidebar > Pages > Sample Page > View
You’ll see the “sample page” shows no title at the top… but starts with the content as per below:
This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:
Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)
…or something like this:
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!
- This reply was modified 7 years, 10 months ago by whats1thingnow.
January 7, 2017 at 10:20 pm #730759could you repeat the problem?
January 9, 2017 at 4:21 am #730940Hi,
Please check the Enfold > Header > Header Title and Breadcrumbs settings. Make sure that the title and breadcrumb is enabled. Or edit the page then set the Layout > Title Bar Settings accordingly.
Best regards,
IsmaeloJanuary 9, 2017 at 8:32 am #731006Thank you!
for “Enfold > Header > Header Title and Breadcrumbs settings. Make sure that the title and breadcrumb is enabled. ”
I cannot edit this because it says:
These options are only available if you select a layout that has a main menu positioned at the top. You currently have your main menu placed in a sidebar
You can change that setting at General Layout
for “edit the page then set the Layout > Title Bar Settings”
The only options available to edit are:
Sidebar Settings
Select the desired Page layoutSidebar Setting
Choose a custom sidebar for this entryFooter Settings
Display the footer widgets?And “Title Bar Settings
Display the Title Bar with Page Title and Breadcrumb Navigation?”
Settings is grayed out because it says:These settings are only available for layouts with a main menu placed at the top – Change layout
January 9, 2017 at 8:36 am #731008i’m using a child theme…
perhaps i have to add something to functions.php or style.css?
currently my theme options has:
enfold > general layout > logo and main menu SET TO “left sidebar”and that is causing the title to be not shown at the top of any page
thanks for the help
January 11, 2017 at 6:27 pm #732201Hi,
as you discovered by yourself, this option is not available when using header as inside sidebar. Please use header on top to get unlock this feature.
Best regards,
AndyJanuary 12, 2017 at 12:15 am #732392Thank you for your response.
perhaps i have to add something to functions.php or style.css?
January 14, 2017 at 3:38 am #733420hi,
there must be a way to show the TITLE of the pages even if i use the LEFT SIDEBAR…
please advise!
thanks :)
January 16, 2017 at 4:42 am #733862Hi,
Please add this in the functions.php file.
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { $header['header_title_bar'] = ''; return $header; }
This will enable the title container even if the Logo and Main Menu settings is set to left or right sidebar.
Best regards,
IsmaelJanuary 16, 2017 at 7:48 pm #734326Thank you Ismael!!
That’s exactly what I was looking for!
One additional tweak is…
For the page that’s set to the front page, is it possible to disable this rule?
So…
– For other pages, we enable the title.
– For the front page, we disable the titleWhat small tweak do I need to add to functions.php to achieve this?
I can get the wordpress page id to specific the front page if needed.
Thanks!
January 18, 2017 at 12:11 pm #735262Hi,
Try using is_front_page() conditional statement: https://codex.wordpress.org/Function_Reference/is_front_page
Hope this helps :)Best regards,
NikkoJanuary 18, 2017 at 8:22 pm #735517sorry, can you specify how to add
is_front_page()
andadd_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { $header['header_title_bar'] = ''; return $header; }
to the functions.php file?
i read the page you linked to and have no idea what it’s trying to say
January 19, 2017 at 7:07 am #735701Hi,
The code should look something like this:
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { if( is_front_page() ) { $header['header_title_bar'] = ''; return $header; } }
Let us know if this helps :)
Cheers!
NikkoJanuary 22, 2017 at 1:06 am #736874hello,
just tested the code above and didn’t work unfortunately…
2 errors:
1) on the front page, the title is still appearing
2) on the other pages, it changed the LEFT SIDEBAR menu to become a TOP MENUthanks for the help
January 26, 2017 at 6:28 am #738729Hi,
Please try the is_page() instead of the is_front_page() conditional function plus the ID of the current homepage.
// https://developer.wordpress.org/reference/functions/is_page/
Best regards,
IsmaelJanuary 26, 2017 at 11:59 am #738848thank you!
i tried:
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { if( is_page( 126 ) ) { $header['header_title_bar'] = ''; return $header; } }
didn’t work unfortunately…
same 2 errors:
1) on the front page, the title is still appearing
2) on the other pages, it changed the LEFT SIDEBAR menu to become a TOP MENUthanks for the help
January 26, 2017 at 1:53 pm #738911Hi,
Can you give us ftp access? so we can test on this.
Cheers!
Nikko -
AuthorPosts
- You must be logged in to reply to this topic.