• Resolved naduhy2

    (@naduhy2)


    The title text display twice in header area.
    First one is display in the middle of id=”intro-core” div. And the other is display outside of id=”intro”.
    The problem happened only in sub pages of page.
    I googled about this problem, but I can’t find out.
    How can I fix it? Please let me know..

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter naduhy2

    (@naduhy2)

    I found the the solution that I mentioned above.
    I modified the function thinkup_input_breadcrumb() in 00.theme-setup.php file of /admin/main/options/ folder.

    169 line :
    the_title(); —-> $output .= get_the_title();

    177 line :
    echo get_queried_object()->name; ———-> $output .= get_queried_object()->name;

    does it correct ?

    Teresuken

    (@teresuken)

    many thanks friend! Now everything works properly!

    Thread Starter naduhy2

    (@naduhy2)

    You’re welcome. I am so glad to hear that.^^

    Thread Starter naduhy2

    (@naduhy2)

    You’re welcome. I am so glad to hear that.^^

    I am having the same problem but I am not very competent with coding to modify through function thinkup_input_breadcrumb() in 00.theme-setup.php file of /admin/main/options/ folder etc. I do not know where to start https://www.kasteli1663.com/?page_id=312
    Could you please explain it in a simpler way?
    thank you

    Thread Starter naduhy2

    (@naduhy2)

    Hi, kasteli!
    The file path is below.
    https://yourwordpress path/wp-content/themes/renden/admin/main/options/

    You can connect your website via FTP. And then correct 00.theme-setup.php file as I pointed.

    Good luck friend!~ ??

    Thanks naduhy2, that fixed it for me as well.

    Ray

    Hi naduhy2,
    Thanks for the very helpful reply. As you seem so knowledgable with render, I would like some help on the following please: I recently upgraded to Renden Pro hoping to be able to use more features. As soon as I activated it, the menu on the homepage lost its order. Headings and subheadings (parents and kinds) were displayed together. So until I find out how to fix it, I switched it back to essential renden. Thank you agai

    I wouldn’t call this solution a permanent one, I suppose someday the theme will be updated and the function be overwritten, causing the problem to happen again.
    I have found the reason why ánd a solution that’s permanent, it’s a bit of a hack and fooling the visitors but it works fine and there is no need for changing core-files.
    The reason is that line 169 of the function is displayed within <header></header> and not within <div id="header"></div>, therefore there is no other containing element, even not a span and it is not stylible other than styling <header> itself.

    Well: the one we have to get rid of is the first one, it’s sitting between the two headers at the left side of the page, it is displayed within <div id="body-core"></div>
    So if we give it the same color as the background of #body-core then it must be invisible, but that’s not all: the line it uses is still there, we don’t see the first text but it actually is there and uses one line, that’s a shame, we can use that space in a better way, so i gave the second header (which is #intro) a negative margin-top of 24px.
    This can all be done now by adding some rules in your child-theme’s style-sheet:

    header {
    color: #f0f0f0;
    }
    #intro {
    margin-top: -24px;
    }

    Being f0f0f0 also the background-color of #body-core:

    div#body-core {
    background-color: #f0f0f0;
    }

    Now it is solved for me as well :-}

    Thank you so much naduhy2!! I’ve been searching for weeks for this solution!!!

    Divine

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Displaying title text twice in header area’ is closed to new replies.