@ Joshua
Connections seems to be working fine now. The map links are working and the one entry I could find with notes worked too.
However, seems there was a minor typo in the code I gave you. Use this:
if ( $("li.menu-item").hasClass("current-menu-item") ) {
$magicLine
.width(jQuery(".current-menu-item, .current-menu-parent, .current_page_parent").width())
.css("left", jQuery(".current-menu-item, .current-menu-parent, .current_page_parent").position().left+30)
jQuery("#magic-line").fadeIn('slow')
.data("origLeft", $magicLine.position().left)
.data("origWidth", $magicLine.width());
};
After you upload the modified code, make sure you force refresh or open a private browsing window to test otherwise the browser will use the locally cached version instead of the new version.
Lastly, the character index, is functioning. It only jumps to the character clicked if it is on the current page of results. For example, go to page 10 in your directory, click the letters; Q, R, and S. You’ll see that it is working. The character index does not filter by character. Older versions of the template showed only the actual characters that were on the page, but I’ve received more requests than I can count to have the entire alphabet show even after explained it would not work as expected to those requesting it. I don’t feel this is good user experience and I am working on a better overall solution which will enable filter by character just like the admin. Actually, the work down in the admin is the first step.
