jonimueller
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingI knew that, but I wanted to check to be sure it was in the wp-settings.php file, and indeed it is. I already added the code you supplied, ESMI, to my functions.php file as explained in my original post. And added the template code as well.
“I checked my wp-settings.php file and that code is already there on lines 720-21. Thanks for checking tho….” (emphasis added).
I don’t know if this is significant or not, but listing the files in the media gallery causes broken images as well, even freshly added ones. I am at a loss. And it’s not just posts, but images on pages that are behaving this way (check out http://pixelita.com/about-us).
:(((
Forum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingFurther to this, if I try to upload a new, fresh file, it too is broken and won’t display. I tried switching the path/URL to mytestbed.com (because those images on that server appear fine), and it does the same thing. What is causing ths blockage?
Forum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingOh, what’s more, if I view my Media, they all have broken links. Does this help anyone?
I’ve gone over my settings thoroughly (don’t think I’ve missed anything there) and cannot figure out why it’s doing this on the live site.
In other words, this entire path seems “blocked” — for lack of a better word —
http://www.pixelita.com/wp-content/uploadsForum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingI checked my wp-settings.php file and that code is already there on lines 720-21. Thanks for checking tho. 🙂
Forum: Fixing WordPress
In reply to: User Content – PICTURES ONLY??You mean something that hooks into the WP registration form, but with more fields? I’ll keep my eyes open.
Forum: Fixing WordPress
In reply to: Display first 25 words of excerpt on index pageTry this technique.
Forum: Fixing WordPress
In reply to: screwed up codeFirst of all LOSE the sense of entitlement. This is a volunteer forum. Demanding anything will get you pretty much nothing. That being said, the error message indicates to me that you were mucking around in your functions.php file.
You can still get into your site via FTP; that is what ClaytonJames was trying to tell you (but you wouldn’t listen). So NO, you are not locked out of your site unless you have forgotten your web hosting login details.
If I were you, I’d FTP a fresh copy of functions.php from whatever theme you were using, overwriting the one you have fuxored. But before doing that, rename the bad file functions.php.bak so you can at least salvage some good code from it if you want.
HTH.
Forum: Fixing WordPress
In reply to: Only half of my header image acts as a linkHmm. I have my headers called via CSS usually. Then whatever containing division they are in, and for this example, we are assuming
<div id="banner">, put this code in yourheader.phpfile:<div id="banner" onclick="window.location.href='http://yourdomain.com/'" style="cursor: pointer;"></div>HTH.
Forum: Fixing WordPress
In reply to: Different designs of Pages and insert categories manually?You’ll have to do trial and error on the excerpt length. WP buries its default 55 *character* excerpt length in the code, but you can override this with whatever number you choose by putting this code in your functions.php file:
// POST EXCERPT LENGTH IS SET HERE function my_excerpt_length($text){ return 55; } add_filter('excerpt_length', 'my_excerpt_length');Where
55is the value you decide upon.HTH.
Forum: Fixing WordPress
In reply to: I can only see my homepage@t310s … Sure just let me know what I need to do. I have a text version of it as well that may be more useful for the Codex. 🙂 Check my profile for email info.
Forum: Fixing WordPress
In reply to: User Content – PICTURES ONLY??This one?
http://wordpress.org/extend/plugins/photosmash-galleries/
Because this is a community forum, it’s nice to provide as much info as possible so others can benefit from the collective knowledge. Let me know if this is NOT the plugin you meant. Sounds really interesting, although I wouldn’t really trust too many people to upload images to my server, but that’s just me. If you have a small community of registered users that you trust, should be fine. 🙂
Forum: Fixing WordPress
In reply to: Content of Blog Not Showing UpTry Next Gen Gallery for that. It’s a pretty neat little plugin that does quite a lot. 🙂
We use NGG to embed random banner images in this testbed site (under production) here:
http://gnoics.mytestbed.comIf you take a peek at the source code you can see how it’s done. 🙂
Forum: Fixing WordPress
In reply to: User Content – PICTURES ONLY??And about FB, I don’t think you can pull photos from it automatically. If there are photos that you are tagged in, but which do not belong to you, then absolutely not. You’d have to download them and then upload them to your WP site.
Forum: Fixing WordPress
In reply to: User Content – PICTURES ONLY??Further to the above, you would also have to give each of those users access to the Next Gen Gallery album area in the WP dashboard and I am not sure if that can be done with Role Manager. In other words, I don’t know if you can restrict them to just accessing the posting area, and the NGG gallery management area. But as long as they don’t have rights beyond what you give them, they likely won’t be able to access (or destroy, by accident or otherwise) any other areas of your site.
Make sense?
Forum: Fixing WordPress
In reply to: User Content – PICTURES ONLY??You’d have to have registered users uploading photos to a single page or gallery that would then be displayed?
Grab Role Manager, and assign those users to a specific class and be careful what rights you assign them.
I’d use Next Gen Gallery to create a gallery, associate the gallery with a specific page, and then restrict users to that page (or any or all gallery pages you have or want to create).
HTH.