Forum replies created

    Holly Cotter
    Spectator
    Posts: 13
    10.07.2016 at 16:08 #28868

    Thank you SO much Denzel… that fixed it!
    🙂

    Holly Cotter
    Spectator
    Posts: 13
    09.07.2016 at 22:04 #28863
    This reply has been marked as private.
    Holly Cotter
    Spectator
    Posts: 13
    08.07.2016 at 03:32 #28836

    This is happening in a private members area of the site. What do you need… my wordpress admin login?

    Holly Cotter
    Spectator
    Posts: 13
    09.06.2016 at 15:09 #28298

    It’s fixed. Thank you SO much for all your help.
    🙂

    Holly Cotter
    Spectator
    Posts: 13
    09.06.2016 at 15:08 #28297

    Thank you SO much!

    Yes, I figured I was either leaving out a symbol or including something I shouldn’t. I appreciate you fixing it for me.

    Holly Cotter
    Spectator
    Posts: 13
    09.06.2016 at 14:26 #28292
    This reply has been marked as private.
    Holly Cotter
    Spectator
    Posts: 13
    09.06.2016 at 14:21 #28291

    Here is what is currently in my custom css file:

    h1.entry-title {
    display: none;
    }
    .content {
    margin-top: 0px;
    }

    .nav-menu li a {
    text-shadow: none !important;
    }

    p#copyright .credits {
    color: #000000 !important;
    }

    As you can see, the code you gave me IS IN THE CUSTOM CSS FILE but it is not fixing the problem.

    Holly Cotter
    Spectator
    Posts: 13
    09.06.2016 at 13:25 #28288

    None of what you suggested is the issue. I hired someone to look at it and here’s what he said:

    File:

    library/functions/basic-functions.php

    The problem is these lines:

    $item_output .= $args->link_before . apply_filters(‘the_title’, $item->title_2, $item->ID) . $args->link_after;

    $item_output .= ( $args->has_children && 0 === $depth ) ? ‘ <span class=”arrow”></span>’ : ”;

    The first line should return “ROI Marketing” but doesn’t. Try replacing the two lines with the following:

    $label = $args->link_before . apply_filters(‘the_title’, $item->title_2, $item->ID) . $args->link_after;

    if (empty($label)) {
    $label =$args->link_before . apply_filters(‘the_title’, $item->post_title, $item->ID) . $args->link_after;
    }

    $item_output .= $label;

    Denzel, once I replaced those lines, the problem was fixed. I STRONGLY RECOMMEND YOU FIX THIS BUG IN FUTURE VERSIONS OF THE THEME using the fix provided in this ticket.

    Holly Cotter
    Spectator
    Posts: 13
    09.06.2016 at 13:22 #28287
    This reply has been marked as private.
    Holly Cotter
    Spectator
    Posts: 13
    09.06.2016 at 13:22 #28286
    This reply has been marked as private.