Forum replies created
Thank you SO much Denzel… that fixed it!
🙂
This is happening in a private members area of the site. What do you need… my wordpress admin login?
It’s fixed. Thank you SO much for all your help.
🙂
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.
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.
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.