Forum replies created

    Holly Cotter
    Spectator
    Posts: 13
    July 10, 2016 at 4:08 pm #28868

    Thank you SO much Denzel… that fixed it!
    🙂

    Holly Cotter
    Spectator
    Posts: 13
    July 9, 2016 at 10:04 pm #28863
    This reply has been marked as private.
    Holly Cotter
    Spectator
    Posts: 13
    July 8, 2016 at 3:32 am #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
    June 9, 2016 at 3:09 pm #28298

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

    Holly Cotter
    Spectator
    Posts: 13
    June 9, 2016 at 3:08 pm #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
    June 9, 2016 at 2:26 pm #28292
    This reply has been marked as private.
    Holly Cotter
    Spectator
    Posts: 13
    June 9, 2016 at 2:21 pm #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
    June 9, 2016 at 1:25 pm #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
    June 9, 2016 at 1:22 pm #28287
    This reply has been marked as private.
    Holly Cotter
    Spectator
    Posts: 13
    June 9, 2016 at 1:22 pm #28286
    This reply has been marked as private.