manadeprived
Forum Replies Created
-
Forum: Plugins
In reply to: [Comic Easel] Web Comic Not Showing on SiteWhat’s the URL of your site?
Reproduced this as well. Please fix!
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] add Facebook admin ?WordPress version: 3.4.2
WordPress SEO version: 1.2.8.6Whenever I click on “Add Facebook Admin”, it sends me to a page on my site that it cannot find.
Note: I have replaced actual values with [name of value].
If I shorten the link, it works.
Have other users run into this problem?
Forum: Fixing WordPress
In reply to: Search Media Does Not Workesmi,
If I understand your code correctly, would that make it so that search only works properly if you an administrator? I have editors that I wish for search to work for them as well.
Thanks!
Forum: Fixing WordPress
In reply to: Search Media Does Not WorkHmmm, searching up the code on Google seems to show that this is code used to exclude pages from the search. Somehow it affects my Media Library searches too.
Forum: Fixing WordPress
In reply to: Search Media Does Not Workesmi, you are awesome.
I was able to narrow the bug to one line.
/* LIMIT SEARCH RESULTS */
function vibeExcludePages($query) {
if ($query->is_search) {
$query->set(‘post_type’, ‘post’);
}
return $query;
}
add_filter(‘pre_get_posts’,’vibeExcludePages’); <–Deleting this line makes it work.Not entirely sure what this line actually does though, so I am afraid I am breaking something if I do this.