Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • adding the ? query indicator via some simple jquery

    hello,
    I have the same problem. Please can you tell how you fixed via jquery ? where do you add the ? indicator ?
    Thank you !

    Thread Starter booyaka97

    (@booyaka97)

    Problem fixed:
    I have changed the code inside the gallery.php page (views/default).
    At line 30, change the whole code block until <?php endif ?> to:

    <?php $image = basename($slide -> image_url); ?>
    <?php if ($slide -> uselink == "Y" && !empty($slide -> link)) : ?>
    <a href="<?php echo $this -> Html -> image_url($image); ?>" title="<?php echo $slide -> title; ?>" class="thickbox"><img src="<?php echo $this -> Html -> image_url($this -> Html -> thumbname($image, "150x150")); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" /></a>
    <?php else : ?>
    <img style="height:75px;" src="<?php echo $this -> Html -> image_url($this -> Html -> thumbname($image, "150x150")); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" />
    <?php endif; ?>

    In my case, the Media tool generates 150×150 thumbnails. Just check it under the option while importing the file and change the “150×150” option if needed.

    Thread Starter booyaka97

    (@booyaka97)

    Hello,
    this is how I proceed:
    – I upload a new picture via “media” (by doing this, the image is uploaded, and 2 thumbs are generated; those thumbs are respectively named “name-150×150” and “name-300×207” + extension.)
    – then I copy the url of the saved file
    – I go to the plugin “manage slides” button
    – then I add a new slide by copying the url of the file I just uploaded.

    I’m still stuck here : I have enabled the “show thumbnails” option. The big pictures are showing, but not the thumbnails, because the thumbnails are looking for “name-thumbs.jpg” and not “name-150×150.jpg” !
    it’s just a matter of name.

    You can check it here :
    https://www.kotesi.com/

    Thread Starter booyaka97

    (@booyaka97)

    thank you for your help.
    Actually I can make the thumbs by myself but there is still some things I dont understand:
    – The thumnails generated by wordpress contain the dimensions inside the filename: filename-300×250.jpg, for example. But how can I tell the plugin to load this file, instead of the filename-thumb.jpg ?
    – Secondly, when I click on “attach” under the media section, the box doesn’t list any existing page or post… I’m using WP 2.9.
    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)