Ivan Storck
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress hitting /wp-content/themes/index.php repeatedlyI am seeing this too. Any luck getting rid of the problem?
Thanks for trying again. Creating a user works for me. I click on the link in the top black bar on the site, the one that says sign up. How were you signing up? Now it’s me that can’t reproduce your issue ??
Thanks for taking a look so fast. I think I resolved the PHPMailer issue – had one too many newsletter plugins. If you get a chance to try again I would be so grateful! I’ve tried this in Safari 5.0.5 and Firefox 4.0.1 on Mac OS 10.6.7 I will try on Windos 7/IE9 when I get home
Forum: Plugins
In reply to: Disable Update Checking for a PluginThanks Mahalie! Always nice to see another Seattle PHP dev in here on www.ads-software.com
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] MS subdomain files not postTo clarify, govfresh is hosting at a cPanel server and using Rackspace Cloud Files as an asset host (CDN).
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] MS subdomain files not postI would also be interested in the solution to this.
This is helpful info. Would you be able to suggest a way to enable an older site?
Forum: Plugins
In reply to: [Mute Screamer] [Plugin: Mute Screamer] What's the purpose of this plugin?It seems like one should add Post.page and Post.comment (and requests) otherwise it has a lot of false positives.
Forum: Plugins
In reply to: [Link Shortcut] [Plugin: Link Shortcut] Add link shortcut doesn't showI see this error too. You can add the data for the shortcut, but there is no ‘done’ or ‘add shortcut’ button to finish the process.
Forum: Fixing WordPress
In reply to: Custom post type permalink rewritehas anyone figured out a solution to this issue yet?
Forum: Fixing WordPress
In reply to: best way to search for taxonomy termsI have this code, which should work, but there seems to be something that I did not write (either in WordPress core or elsewhere, which is catching it first?)
for example, I have a page called /degree-programs that uses a page template with the code below:
global $query_string; $query_args = explode("&", $query_string); $search_query = array(); foreach($query_args as $key => $string) { $query_split = explode("=", $string); # convert spaces to dashes $query_split[1] = preg_replace("/\s/","-",strtolower($query_split[1])); $search_query[$query_split[0]] = $query_split[1]; } // foreach # remove pagename from query args unset($search_query['pagename']); $search = new WP_Query($search_query); # this works fine # $search = new WP_Query('showposts=5&post_type=gddprogram&country=United-Kingdom');
but, if I browse to:
https://gdd.local/degree-programs?country=United+Kingdom
I get the 404 error page instead of my codeany idea where I should look?
Forum: Fixing WordPress
In reply to: best way to search for taxonomy termsfor example, here is some WP_Query code that is not returning the results I am looking for:
$result_posts = new WP_Query(); $result_posts->query('showposts=5&post_type=gddprogram&country=United+Kingdom');
Forum: Plugins
In reply to: Disable Update Checking for a PluginDid you ever figure out a solution for this? I am interested too.
Thanks,
IvanForum: Plugins
In reply to: External Link WarningI would also be interested in an answer to this question.
Forum: Themes and Templates
In reply to: Water theme hide category from postoh, i found it, it was in posts.php