Viewing 21 posts - 1 through 21 (of 21 total)
  • Author
    Posts
  • #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!

    #729169

    Hey!

    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,
    Yigit

    #729597

    Hi!

    Here is the login info.

    I’ve also added a link to a sample page.

    Thanks!

    #729615

    Hey!

    I am getting following error when i try to load your login page.
    Can you please temporarily disable IP restriction? :)

    Regards,
    Yigit

    #730047

    hi,

    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!

    #730759

    could you repeat the problem?

    #730940

    Hi,

    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,
    Ismaelo

    #731006

    Thank 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 layout

    Sidebar Setting
    Choose a custom sidebar for this entry

    Footer 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

    #731008

    i’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

    #732201

    Hi,

    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,
    Andy

    #732392

    Thank you for your response.

    perhaps i have to add something to functions.php or style.css?

    #733420

    hi,

    there must be a way to show the TITLE of the pages even if i use the LEFT SIDEBAR…

    please advise!

    thanks :)

    #733862

    Hi,

    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,
    Ismael

    #734326

    Thank 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 title

    What 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!

    #735262

    Hi,

    Try using is_front_page() conditional statement: https://codex.wordpress.org/Function_Reference/is_front_page
    Hope this helps :)

    Best regards,
    Nikko

    #735517

    sorry, can you specify how to add
    is_front_page()
    and

    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;
    }

    to the functions.php file?

    i read the page you linked to and have no idea what it’s trying to say

    #735701

    Hi,

    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!
    Nikko

    #736874

    hello,

    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 MENU

    thanks for the help

    #738729

    Hi,

    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,
    Ismael

    #738848

    thank 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 MENU

    thanks for the help

    #738911

    Hi,

    Can you give us ftp access? so we can test on this.

    Cheers!
    Nikko

Viewing 21 posts - 1 through 21 (of 21 total)
  • You must be logged in to reply to this topic.