ceiTim
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Navigation Menu Not Working ProperlyHere is a function that I found in my functions.php file that seems to control this behavior. How can I edit it to make the menu display properly?
function add_first_and_last($output) { $output = preg_replace('/class="menu-item/', 'class="first-menu-item menu-item', $output, 1); $output = substr_replace($output, 'class="last-menu-item menu-item', strripos($output, 'class="menu-item'), strlen('class="menu-item')); return $output; } add_filter('wp_nav_menu', 'add_first_and_last');Forum: Fixing WordPress
In reply to: Navigation Menu Not Working ProperlyThe site is http://www.claimslink.com. I do not have the menu visible right now however, so I’m not sure if you will be able to determine anything. Since the website is in production, I don’t want the error to be seen by the public until it is resolved.
Forum: Fixing WordPress
In reply to: Site layout broken in IE9 Compatibility mode and IE7Thanks for your help. I tried removing that line of code but it not fix my problem.
Forum: Fixing WordPress
In reply to: Site layout broken in IE9 Compatibility mode and IE7It seems like I can’t get support from them at the moment because the theme was purchased by someone else under a different account.
Viewing 4 replies - 1 through 4 (of 4 total)