leggo-my-eggo
Forum Replies Created
-
I’m looking for this support, too, @frederick Townes, any idea when we could expect this next release?
Specifically I need to have the admin pages redirected to the original domain, but have W3TC active on the mapped domain.
Forum: Fixing WordPress
In reply to: Unable to add or update themes/plugins, WP 2.9.2 on Mac OS X ServerI’m having this exact problem on Mac OS X Server 10.6.3. And it began a couple of weeks ago.
Forum: Fixing WordPress
In reply to: make_slugedit_clickable() is not defined@mralexweber if you’re not using the more fields plugin, then this problem likely does not relate to you.
You could try searching your plugins’ code for make_slugedit_clickable to see if some other plugin has implemented that function.
Forum: Fixing WordPress
In reply to: make_slugedit_clickable() is not definedActually, it seems there is a simple edit to the More Fields plugin which fixes this issue, posted by shortformblog on the More Fields Forums here:
https://labs.dagensskiva.com/forum/topic.php?id=234&replies=8#post-810
It fixes several problems related to More Fields and javascript.
So, no Core Edits necessary.
Forum: Fixing WordPress
In reply to: Link Categories Description@mossa, I love when people answer like this! Thank you.
Forum: Fixing WordPress
In reply to: Link Categories DescriptionWhat I think line47 is looking for is not displayed by that code. He’s looking for the information contained in the Link Category description, not the Link description.
If you use
wp_list_bookmarks('show_description=1')
you get the Link descriptions, but there is seemingly no equivalent parameter to show the Link Category description. (I tried show_category_description just in case, but no dice).
Does anyone know how to do this?
Forum: Fixing WordPress
In reply to: Dyanmic sup page links on parentI was struggling with this same issue, but it occurred to me that you could do it with these CSS rules:
.page_item ul li {
display: none;
}
.current_page_item ul li, .page_item .current_page_item {
display: block;
}
Hope that helps.
Forum: Fixing WordPress
In reply to: How to display subpages only if parent is viewed?I was struggling with this same issue, but it occurred to me that you could do it with these CSS rules:
.page_item ul li {
display: none;
}
.current_page_item ul li, .page_item .current_page_item {
display: block;
}
Hope that helps.