coopersita
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: View Custom Post Types as a List?Have you looked at “Simple Custom Post Type Archives” plugin? It generates support for custom post type archives, including pagination.
Forum: Fixing WordPress
In reply to: Sidebar Editing – Bizarre Theme Issue!!!How about removing the sidebar, and putting clear:both; in the css for the footer?
Google sometimes will penalize you for hiding content, so I don’t think it will help to hide it.
Forum: Fixing WordPress
In reply to: Captcha IssueWhich browser are you using. I went to that page in Safari and FF for Mac, and the text field is fine. You can see all 6 characters at once.
Forum: Fixing WordPress
In reply to: Insert image into post with wrapping div?I think so, too. The images added via Media Library also have many classes you could use.
Also, once you start hacking the source code for WordPress, upgrading would be a pain.
Forum: Fixing WordPress
In reply to: Insert image into post with wrapping div?Why do you need a div?
Forum: Fixing WordPress
In reply to: jQuery enqueue_script breaking jQuery ObjectsYou also have multiple calls to the ready function. To debug this, I would comment out all the jquery (and other javascripts as well), except for one, and then do something simple inside, like:
jQuery(document).ready(function($){
alert(‘test’);
});Then, I’d add all my jquery code inside that call to ready. I find that multiple calls to it cause issues.
Hope this helps
Forum: Fixing WordPress
In reply to: can't find my passwordIt’s in the documentation:
Forum: Fixing WordPress
In reply to: Every link redirects to my home pagePlease change the post status to “resolved”
Happy to help
Forum: Fixing WordPress
In reply to: jQuery enqueue_script breaking jQuery ObjectsLink, please. Hard to tell what’s wrong when you can’t see the error messages.
Forum: Fixing WordPress
In reply to: jQuery enqueue_script breaking jQuery ObjectsChange the jQuery first line in your script (not in plugin files, though, just the code that checks if the document is ready) to:
jQuery(document).ready(function($){
I’m not 100% sure why this is, but maybe someone could illuminate us.
Forum: Fixing WordPress
In reply to: open image in new windowhttps://www.domain.com_blank? Did the code formatter did something to your link? or is that actually the url you gave?
Forum: Fixing WordPress
In reply to: Every link redirects to my home pagecheck the url for the site under settings. Your page is in a ‘wp’ directory, but all your links point to the domain name (the ‘wp’ is missing from the url).
Forum: Fixing WordPress
In reply to: query_posts and multiple taxonomiesNever mind, I had a typo…
Forum: Fixing WordPress
In reply to: query_posts and multiple taxonomiesI found the “Query Multiple Taxonomies” plugin, but my problem now is that it’s doing an OR search on all fields, so the following:
query_posts('project_type=Films,Animation&post_type=projects&showposts=99');
Is also pulling posts from the post_type mediaentries who have a project type of Films and Animation…
I guess I could create a separtae taxonomy for projects and mediaentries, but is there a way to convey whether it’s an AND or an OR in the search query?
Forum: Fixing WordPress
In reply to: problem with homepageThe page seems complete to me. Do you mean the post is not showing complete? Do you want it to show the whole post, instead of just the excerpt?