fgshepard
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: margin-top added to html and body tags after upgrade to 3.1!?!Worked for me, too. Thanks!
Forum: Fixing WordPress
In reply to: margin-top added to html and body tags after upgrade to 3.1!?!Are there any upgrade-specific template changes that might be necessary to make this work? Similar to those necessary to make widgets appear awhile back?
Forum: Fixing WordPress
In reply to: margin-top added to html and body tags after upgrade to 3.1!?!I’ve gone into the Webkit element inspector and turned off all of my scripts and stylesheets and still cannot get the admin bar to display. Not sure if this is an effective way to test something like this, however.
Forum: Fixing WordPress
In reply to: margin-top added to html and body tags after upgrade to 3.1!?!Thanks for the info. I guess this would have been obvious if the admin bar actually appeared on the site. I am logged in but only see the extra margin — no admin bar. Is there a setting I need to adjust to make this work?
Thanks!
Frank
Forum: Themes and Templates
In reply to: images won’t show on certain pagesSo this definitely seems to be a permalink issue. I haven’t bothered to figure out the details, but all the old links are still working, and dynamic image calls to new images in the old folder still work well. It’s only the new pages that have this problem, and they have slightly different permalink structures than most other pages (they use child categories). I’ve worked around the problem by putting all the necessary images in a new folder within the “uploads” folder. I’ll report back when I have time to figure this out.
Forum: Themes and Templates
In reply to: images won’t show on certain pagesI hope not. But we’ve been using WordPress for about 8 months and this behavior just started today. I haven’t changed any of the settings, so I can’t imagine what would have triggered it. Very puzzling.
Forum: Themes and Templates
In reply to: images won’t show on certain pagesThanks for your response. The thing that confuses me about this is that some calls to those folders work properly while others don’t. What could account for the inconsistency? The unwanted behavior seems to apply only to files that i’ve added recently.
Forum: Themes and Templates
In reply to: images won’t show on certain pagesYes, of course:
http://ircpl.org/category/blog/revisiting-religion/I’ve placed 5 images in the middle of the page for testing.
text-embellishment01.png and revisiting-religion-header.jpg are also present on the page just above, as the type embellishment below the italicized paragraph, and the header above it, respectively. These show up there because I placed copies of them in the uploads folder, as described in my initial post. But they don’t work when placed in my images directory. The large rounded rectangular photograph is in the same directory as these other images, and it shows up just fine. I know that the files are OK.also, note that the first of my test images in another directory, also called images, inside my theme folder. this also doesn’t display. Oddly, this is the same folder as the header image at the top of the page.
Finally, I should note that I’m using CSS to display these in my real code, but my test code uses img tags. I just wanted to be sure that it’s not my CSS. But this is why you won’t see other copies of these images in the source code.
Hope that’s not too much info!
Thanks!
Forum: Fixing WordPress
In reply to: ASC and DESC in SQL query not producing different resultsYes, that did it. Thanks!
Forum: Fixing WordPress
In reply to: sorting by 2 custom fieldsUPDATE: Another question is this: can I retrieve to custom fields in the same SELECT statement? So i’d have wpostmeta.meta_key = “Date” as well as wpostmeta.meta_key = “Time Start” in my SELECT statement? If so, how do I distinguish the values in the ORDER BY statement? I want to order by year, month, day, hour (in that order), but the date and time info are in separate custom fields.
Forum: Fixing WordPress
In reply to: Using the include parameter with get_posts to order the postsThanks again! It will take me awhile to figure out how this one works — I’m new to filters. My main concern from looking at it is that the IDs are hard-coded, whereas I want to be able to pull them from a custom field. I’ll let you know what happens.
Forum: Fixing WordPress
In reply to: wordpress to wordpress import duplicates custom fieldsI spoke too soon. This didn’t solve the problem. Hmm.
Forum: Fixing WordPress
In reply to: Using the include parameter with get_posts to order the postsThanks! This is what i’m looking for…
But for some reason it’s not working for me. For example, here is the value of $argument for the page as it stands right now:
'include=456,450&orderby=none'
But the page displays 450 first, and then 456. So the orderby parameter doesn’t seem to stop the order parameter from operating. It’s sorting them either by ID or Date (not sure which yet) even though I haven’t specified either explicitly.I checked query.php and I have the code mentioned in the article you sent. What’s wrong? Any help is much appreciated!
Forum: Fixing WordPress
In reply to: wordpress to wordpress import duplicates custom fieldsTemporary Fix: I installed the “Custom Field Taxonomies” plugin, which includes a function that removes all duplicate custom fields. Works nicely. Still, there ought to be a way to prevent this from taking place when importing.