• Can anyone tell me why IE has to suck so badly… Aye caramba…
    Exhibit 1.1d is available.
    Changes:

    • Fixed preview selection problem.
    • Fixed client-side display of added images.
    • The code that Exhibit inserts into the post body when clicking on an image in the list is now configurable.
    • Added button to file-picker to add full-sized image tag to post body.
    • Added uber-popup code – Allows visitor to click through all images attached to the post without closing the popup.

    If you’re trying to do something in Exhibit and you think it should work but it doesn’t, please try it with FireFox before you report it so that I know whether to look at javascript or PHP. Please?

Viewing 15 replies - 61 through 75 (of 159 total)
  • Thread Starter ringmaster

    (@ringmaster)

    Cool. Thanks d!

    I’ve just installed 1.1d, but for some reason it’s not making thumbnails. If I manually upload an identical filename of my desired image into the “t” dir it works fine. I have all my dirs CHMODed to 777, but when I press the little ‘make a single thumbnail’ button next to the image it bascially just refreshes the screen without doing anything.
    Any ideas?
    – Daonath

    Thread Starter ringmaster

    (@ringmaster)

    I’m going to guess that you don’t have jpeg functions enabled in GD. Do you have other programs in PHP that will manipulate your pictures that are working?

    Wow! What a great plugin! Just what I’ve been looking for. Thanks!

    Thread Starter ringmaster

    (@ringmaster)

    That’s kinda weird. So much for testing, eh?
    I’m not sure what’s going on with your full picture display on your external page. It should be displaying only the full-sized image, because a particular picture is specified on the querystring.
    Hmm… The list for 1.1e grows.

    Well, the information for the single picture appears. What php code do you use to pull the picture down? It doesn’t look like that exists in the default exhibit_full.php.

    I also want to point one other problem that I noticed out to you. If you are displaying as pictorialis and set display_captions=true, the captions don’t display correctly. I turned this option on, so check it out at the same address as above. On the permalink page, only one caption is displayed. They show up on the exhibit_full.php page, though, but underneath the footer.

    Hi RM! I am now able to insert individual thumbnails using < !–exhibit-thumbs:1-3–> . I am using it like this:
    Text:
    Thumbs of pic 1-3
    Text
    Thumbs of pic 4-5
    However, for some reason Thumbs 1-5 are still shown under the post as well…. Is there a way to turn that off for an individual post?
    Thanks!!!

    Disregard my last post – I found that I edited a tag to accomodate a plugin, so I had to edit the exhibit plugin to use my custom tag (the_contentshowhide instead of the_content) and now it works great.

    Is it possible to have the exhibit thumbs show up in the post but AFTER the <–more–> tag?
    Gracias

    Thread Starter ringmaster

    (@ringmaster)

    @michiel:
    Yes. Use the < !–nothumbs–> tag to disable thumbs for a single post.
    @ayteale:
    By default Exhibit does what you ask, unless you mean to be more specific with what you want it to do.
    If you have changed your configuration to display each post on your home page as if it was displayed on its own, then it won’t behave as you’ve described. You would do better not to use this setting.

    Does Exhibit play nice with Alex King’s wp-photos plugin?

    Hello, It seems that I’ve massive Problems with the .cfg File because the File dosent seem to be reached by exhibit. I have to type everything into the exhibit10.php

    Hi,
    I’m working thru the installation of Exhibit and my head is starting to hurt because I keep hitting a brick walls. This time my problem is that the Exhibit plugin doesn’t show up in my admin page so that I can activate it. I’ve followed the readme file and I have the “exhibit10.php” file and the “exhibitimg” folder in wp-content/plugins area. The other five plugin file that are located here by default show up on my admin page but Exhibit doesn’t. What am I missing?
    Thanks,

    If anyone is still reading this…
    Exhibit 1.1d
    Ok, I have the situation where my production install is able to edit captions fine (running on IIS) but my dev. install -cannot- edit/save captions (running on Apache). So after a bit of poking around I see that Exhibit is doing 2 (possibly) things wrong:
    – adding a filter when it should add an action
    – adding it to the wrong action
    So I made the following changes to enable captions to work more consistently. In exhibit10i.php change the line:
    add_filter(‘edit_post’, ‘exhibit_process_form’);
    to be these two lines:
    add_action(‘edit_post’, ‘exhibit_process_form’,6);
    add_action(‘publish_post’, ‘exhibit_process_form’,6);
    and then captions seem to work as intended. I haven’t dug deep enough to figure out why WordPress is not calling the ‘edit_post’ action when editing posts (!?) but it always seems to call the ‘publish_post’ action. The wiki (https://wiki.www.ads-software.com/Plugin/API) seems to indicate either should work. In any event though, they should be actions not filters.
    ~dave

Viewing 15 replies - 61 through 75 (of 159 total)
  • The topic ‘Exhibit 1.1d Photo Gallery Plugin’ is closed to new replies.