dizee
Forum Replies Created
-
Forum: Plugins
In reply to: Shortcode only run on one post per page?THANK YOU for the hint! That is essentially what the problem was… It actually needed to be reset back to false for every post, and the image arrays needed to be reset.
I modified this function to reset everything…
function gallery_content($content){ global $gallery_displayed, $full_images, $thm_images, $captions, $gallery_id; //reset all the gallery info $gallery_id = false; $gallery_displayed = false; $full_images = Array(); $thm_images = Array(); $captions = Array(); ... }
Again, thank you for bringing this to my attention! ??
Forum: Plugins
In reply to: Shortcode only run on one post per page?I’m not sure what you mean about seeing the code… it is exactly what is in the function, except of course with the $gallery_id with is a php uniqid. The first post shows that code and the rest show nothing… nada… zip…
Unfortunately putting the string together and returning it at the end didn’t help ?? Thanks for the tip, though!
Any other ideas?
Forum: Fixing WordPress
In reply to: WP 3.0 – Preview and Save Draft Functions not workingI need to solve this issue also. My site requires the admin url be different than the main site and we are not able to preview posts because of this. Changing the URLs to be the same is not an option here…
Forum: Fixing WordPress
In reply to: Setting Max Number of Top Level links in Link MenuI need to know how to do this also…
Forum: Fixing WordPress
In reply to: different image upload problemI’m lost… I’ve tried all the ideas that people have posted… nothing…
Forum: Fixing WordPress
In reply to: Image upload not working in WordPress 2.8Oh yah, and I just upgraded to 2.8.4 from 2.7
Forum: Fixing WordPress
In reply to: Image upload not working in WordPress 2.8I am having the following problem:
– Click to upload image
– Flash uploader
– Select image(s)
– For each image I select, a login box shows up within the “lightbox”I have tried all without any fix:
– Switch to default and classic theme
– Remove all plugins
– PHP 5.210
– Uploads directory already set correctlyDoes anyone have any other ideas??
Forum: Fixing WordPress
In reply to: different image upload problemI am having this problem too. I click to the media uploader, select photos, and for each photo I select, it displays a login box one after the other within the “lightbox”.
I just upgraded to 2.8.4 ??