wpismypuppet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why is wordpress telling people my pages don't exist??Did you recently upgrade WordPress? One thing you could try to do is flush the rewrite rules. It looks like you are using custom permalinks… try going to settings->permalinks and just clicking the “save changes” button. This will force a flush_rewrite. If that doesn’t fix the issue, then try changing your custom structure to a default just to see if it works. You can always change it back after…
Forum: Fixing WordPress
In reply to: Changing Order of PagesI don’t get it… in the admin section when viewing you list of pages? If that’s the case, you can order by name (asc, desc), author, comments or date. What other way would you need to order them by?
Forum: Fixing WordPress
In reply to: Please need help!chatzakity…
We need more information about what you are trying to do. Can you log into the admin panel? Are you trying to add hyperlinks to an existing post? A page? Updating the menu? If you need help, you need to be more specific so that we can better help troubleshoot.
What exactly is happening, as in tell us the steps you take before you run into this issue. An example might be… “I can log into the admin section, but when I edit a post I don’t get an option to do {this} anymore…” or “I can’t even log into the admin section, all I get is a white screen”. Give us something! Saying that you can’t add any links is very vague.
Forum: Fixing WordPress
In reply to: Moved Blogs – work, but Pages don'tStab in the dark without more info as to what you did when you moved the site… but sometimes the permalinks in the database get mixed up when you move things around.
Try going to settings->permalinks and just click the “save changes” button. That will cause a flush_rewrite to happen which might correct the issue. If that doesn’t work, please post more info like a link to the site in question so we can use debugging tools to see what’s actually happening.
Forum: Fixing WordPress
In reply to: How to make a posts page display only intros of posts?This link will probably help to answer that question:
http://codex.wordpress.org/Function_Reference/the_excerpt
You can use the_content() a certain way to limit what shows… but most prefer to use the_excerpt(). That link will talk about the differences between the two.
Forum: Fixing WordPress
In reply to: Problem with if/else custom fieldDang… over complicated it. It was a long, late night! Good catch YouON.
Forum: Fixing WordPress
In reply to: Installation – Missing imagesUnfortunately, yes… you have to have separate installations of wordpress for each site you run, even if it’s a sub domain. You can follow these instructions:
http://codex.wordpress.org/Create_A_Network
if you want to set up a network to control all the sites under one wordpress login. I’ve never actually set up a network before… so look into it to see if it’s really necessary. Looks like a lot of work.
Forum: Fixing WordPress
In reply to: Problem with if/else custom fieldtry:
<?php if ( !empty (get_post_custom_values("treatment_price") ) ) : $values = get_post_custom_values("treatment_price"); echo '<strong>£' . $values[0]. ' per treatment</strong>'; else : echo ''; endif;?>Works on arrays too, if that’s what being returned:
Forum: Fixing WordPress
In reply to: statichtmlapp.heroku.comEverything I’m finding on the subject is talking about facebook apps. Here’s a link to the actual facebook app how-to:
http://devcenter.heroku.com/articles/facebook#what_is_heroku
Granted that’s not the statichtmlapp.heroku.com you posted, but again… google search keeps bringing up facebook apps on that url. Hope that helps.
Forum: Fixing WordPress
In reply to: Image call on home pageDeleting an image from the media library doesn’t remove the photo from any page it was inserted on. To do that, you must edit those pages and delete the “reference” to that image from the code.
I think all you’ll need to do is edit the “home” page under the “pages” menu and remove the image from the bottom of the page. If you don’t see it, toggle over to the html tab and remove this code:
<a href="http://yamhillvalleyblog.com/wp-content/uploads/2012/01/ss_red_house_915.jpg"><img class="size-full wp-image-39 aligncenter" title="ss_red_house_915" src="http://yamhillvalleyblog.com/wp-content/uploads/2012/01/ss_red_house_915.jpg" alt="" width="915" height="310" /></a>As govpatel mentioned, you also have a nivo slider above your two sidebars (currently not working or showing images) that is giving a php error relating to a “foreach” loop. Look into that as it’s giving out info you might not want to share 😉
Forum: Fixing WordPress
In reply to: Image resizing when inserting into a postIt seems like there is something in the code itself telling the image to come out a certain way. Can you post a link to an example? We can use firebug to see what’s going on maybe.
Also, by default… WordPress will only “crunch” different sizes of the given image, on upload, if it is larger than the dimensions you specify in the media settings. Since your image is 110×110, WordPress won’t crunch up… so that’s why the only radio button option you have is full size. And because the dimensions of the image exactly match the thumbnail dimensions, WordPress won’t even crunch a thumbnail… It has to be larger by at least one pixel.
Because of this logic, WordPress is NOT resizing the image on upload… there is something in the code telling it to add a “width” and “height” attribute to the img tag itself.
So, if the page in question were trying to use the “medium” setting for your image, it would attempt to pump out:
http://mysite.com/wp-content/uploads/myimage-45×9999.jpg
as an example. Since WordPress does crunch up, a 45×9999 image was never made! Therefore, WordPress would not find that image, and default to the full sized version, or myimage.jpg. However, the function used to echo out that image would also include a “width” and “height” attribute to the img tag, which would still be width=”44″ height=”9999″, so there’s your problem.
Forum: Fixing WordPress
In reply to: 2 Posts With Separate ArchivesI’m confused… I thought the plugin I suggested:
http://wordpress.org/extend/plugins/wp-category-archive/
was exactly what you were looking for??? It’s description is (note the bold):
The WordPress Category Archive Widget Plugin displays a monthly or yearly archive of posts for one specific category. It is very similar to the WordPress Archive except that it just displays one specific category’s posts, not all categories. It can be configured to either show a listing or a pulldown by month or year with or without post counts.
Forum: Fixing WordPress
In reply to: Fatal ErrorSimply FTP in and rename your plugins folder to something else… like plugins-old. That will disable all plugins by default. Once you fix the issue, rename the folder back to plugins and active your plugins one by one to find the culprit.
Forum: Fixing WordPress
In reply to: 2 Posts With Separate ArchivesFirst off, if you are new to WordPress you’re in for a rough time. You’ll have to custom code a lot of what you’re looking to do unless you use a plugin. Here’s another post with some good info:
Special reference to http://sltaylor.co.uk/blog/wordpress-category-archives-by-date/ and the two plugins mentioned:
http://wordpress.org/extend/plugins/wp-category-archive/
http://wordpress.org/extend/plugins/category-based-archives/Hope this helps…
Forum: Fixing WordPress
In reply to: Installation – Missing imagesDid you follow these directions?
http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
It seems like your .htaccess file might be redirecting files to http://goulburnvalleyfoodcoop.com/ instead of (http://goulburnvalleyfoodcoop.com/{wordpress install folder}. This means all your css and whatnot are looking in the wrong place for the styles and images.
Just a shot in the dark since there’s so little info on how you went about installing your site.