theApe
Forum Replies Created
-
Also, being able to upload to a gallery from with in the section of where a gallery is managed, rather than having to always use an independent page for uploads. Would save a lot of time.
Forum: Themes and Templates
In reply to: Author's first post in loop..Brilliant! That was exactly what I was looking for! It was the order=ASC that I was missing. 🙂
Thank you very much! Much appreciated!
Forum: Fixing WordPress
In reply to: is there some worldwide wordpress plugins page mess up?It’s back!
Forum: Everything else WordPress
In reply to: The Limitations of WordPressThank you! That link was very helpful! I did not know that.
Forum: Fixing WordPress
In reply to: get_the_author_meta value?So…
$value = get_the_author_meta('country', get_the_author_ID()); if ($value == 'united_states') {🙂 Thank you very much!
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Internal server errorI don’t think the error_log is going to be any use, I can’t open it… 215MB. 🙁
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Internal server errorSorry just understood you meant the error_log for the server, I’m just downloading it now.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Internal server errorIs there an uninstall script or instructions for an uninstall about? I would like to do a fresh install.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Internal server errorWhere would I get the error log for the cache from?
Forum: Plugins
In reply to: Automatic plugin updates…Thanks! I must have a conflict with a plugin then or maybe my function file. I’ll report back if I find anything of interest.
Forum: Everything else WordPress
In reply to: URL on login page…Worked around it by removing the error reporting from the wp-login file. I still don’t know why its doing it, but if no one else has come across this problem before I suppose it doesn’t matter that much. It doesn’t do it on a fresh install.
Forum: Fixing WordPress
In reply to: Conditional on author with no posts in cat…$userposts = get_posts('cat=3&showposts=-1&author='.$post->post_author); $count=count($userposts); if ($count)Thank you! That was exactly what I needed!
Forum: Fixing WordPress
In reply to: Conditional on author with no posts in cat…Alternatively, how can I call an authors ID in author archive if they have no posts.
Forum: Plugins
In reply to: Limit the_author_meta( ‘user_description’ )Cropped it with overflow:hidden as far as I can see this is the only way without over complicating the matter, so I’ll mark this as resolved.
Forum: Plugins
In reply to: Limit the_author_meta( ‘user_description’ )My alternative is to crop it using CSS if this really isn’t possible.