Support

Garden Theme: Changing slide picture format, url linking and sidebar managment (19 posts)

  1. rss Andres

    member


    rss Posted 2 years ago
    #

    Hi Milo:
    Congratulations for your designs, solidarity and the simplicity to write code, is very easy and light to read.

    1) I'm trying to enlarge and change the format of the picture slides (to 280 x 190px) but the picture resolution turns low or is pixelate on the slides. What I'm doing wrong?

    2) It is possible that the pictures obtained through URL appear in slides too?

    3) In widgets it appear 7 sidebars but in no they appear the options of Calendar or Flickr that are seen in the site. Where I can to modify the data of the Calendar? I have Wordpress 2.8.3 and the theme Garden Ver. 3.17
    The site is [url=http://www.higestion.com]

    Thanks and best regards,

    Andres.

  2. rss milo

    moderator


    rss Posted 2 years ago
    #

    1) Slides are controlled via the image script at
    /garden/inc/image php on line 32
    with possible variation: thumbnail or full

    and the css at
    /garden/style.css at line 196
    adjust width and height

    2) yes, but then it's no more dynamic working,
    see featured php at
    garden/inc/featured php with this lines
    <?php get_the_image(array('width' => '120', 'height' => '120', 'class' => 'glideimg' ,'image_scan' => true)); ?>

    3a) Calendar is dynamically written via your post,
    add one of this plugins to change the behaviour

    3b) All sidebars as well as the footer is widgetized.

  3. rss Andres

    member


    rss Posted 2 years ago
    #

    Thanks Milo for so soon reply. I will take a look that points.
    Andres.

  4. rss Andres

    member


    rss Posted 2 years ago
    #

    I didn't know that the size of the header picture was related to the size of the objects defined in Wordpress (menu: Options - > Objects) I inserted the needed measures on header in the thumbnails options of wordpress, specifically the predetermined ones like medium size. So I went to /garden/Inc./image php, on line 32, and I added the variation: " medium". Now the pictures looks perfect!

  5. rss Andres

    member


    rss Posted 2 years ago
    #

    One more question Milo:
    How I can eliminate the categories placed in the bottom of the header?

    Thanks,

    Andres.

  6. rss milo

    moderator


    rss Posted 2 years ago
    #

    Slider post cats or cat navigation?

  7. rss Andres

    member


    rss Posted 2 years ago
    #

    Cat navigation.

  8. rss milo

    moderator


    rss Posted 2 years ago
    #

    Open categories php file at /garden/inc/categories php
    and erase everything except of this php call

    <?php include (TEMPLATEPATH . '/inc/searchform.php'); ?>

  9. rss Andres

    member


    rss Posted 2 years ago
    #

    Thanks again Milo, you have been of great helpful.

    Andres.

  10. rss Andres

    member


    rss Posted 2 years ago
    #

    Hi Milo:

    How I can made the slider search only 4 post? Now, I see a black slide at the end of my 4 entries and there is no loop.

    May I to include the pages on the slides too?

    Regards,

    Andrés.

  11. rss milo

    moderator


    rss Posted 2 years ago
    #

    Please explain slider search only 4 post?
    You mean only four sliders to show or what?

    And yes, it works with pages as well, just include the WordPress page loop with excerpts.

  12. rss Andres

    member


    rss Posted 2 years ago
    #

    Ok. Sorry my english.
    I want the slider looks only for 4 " post". At the moment it looks for more than 4, reason why I obtain a black sliders at the end.
    The other question is about the loop (indefinite repetition) of the slide. I am not getting this and the slide stops at the end.

  13. rss milo

    moderator


    rss Posted 2 years ago
    #

    Remove the latest slider from the php files,
    check the slider js file for settings to get infinite loop.

  14. rss Andres

    member


    rss Posted 2 years ago
    #

    Could you specify what php file you speak to me? (To Remove the latest slider)
    What function I have to change to obtain the infinite loop?

    Thanks.

  15. rss Andres

    member


    rss Posted 2 years ago
    #

    Milo: The infinite loop seems to be well now.
    I only need if you could specify what php file you speak (To Remove the latest slider)
    As you see, I am not very expert, reason why your help has been fundamental to me.

  16. rss milo

    moderator


    rss Posted 2 years ago
    #

    file is at /wp-content/themes/garden/inc/featured php

    check this lines and delete it (attention:MUST be this lines, no other)

    <div class="glidecontent">

    <?php
    $my_query = new WP_Query('showposts=1&offset=6');
    while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
    ?>

    <div class="hentry">
    <?php get_the_image(array('width' => '120', 'height' => '120', 'class' => 'glideimg' ,'image_scan' => true)); ?>

    <div class="contentdate">< h5>{ <?php the_time('M'); ?> }</h5><h6><?php the_time('j'); ?>< /h6></div>

    < h2>< a href =" <?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?>< /a>< /h2>

    < p><?php the_content_rss('', FALSE, '', 37); ?></ p>
    <div class="read">
    Category: <?php the_category(', ') ?> | <?php comments_popup_link('0', '1', '%'); ?> |
    < a title="Read more here" href="<?php the_permalink() ?>">Read on< /a>
    </div>

    </div>

    <?php endwhile; ?>

    </div>

  17. rss milo

    moderator


    rss Posted 2 years ago
    #

    Also please keep in mind that this is the last free question to ask,
    anything else is custom work and should be billed as it:

  18. rss Andres

    member


    rss Posted 2 years ago
    #

    It Works!!!!!!!
    I must to delete this too
    <div class="glidecontent">

    <?php
    $my_query = new WP_Query('showposts=1&offset=5');
    while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
    ?>

    <div class="hentry">
    <?php get_the_image(array('width' => '120', 'height' => '120', 'class' => 'glideimg' ,'image_scan' => true)); ?>

    <div class="contentdate"><h5>{ <?php the_time('M'); ?> }</h5><h6><?php the_time('j'); ?></h6></div>

    <h2>" title="<?php the_title(); ?>"><?php the_title(); ?></h2>

    <p><?php the_content_rss('', FALSE, '', 37); ?></p>
    <div class="read">
    Categoría: <?php the_category(', ') ?> | <?php comments_popup_link('0', '1', '%'); ?> |
    ">Leer...
    </div>

    </div>

    <?php endwhile; ?>

    </div>

    The loop it was solved adding a higher number (5) in featured.php on the value autorotateconfig: [12000, 5]

    Milo: Thanks again for all your patience. I hope this post help other people too.

  19. rss Andres

    member


    rss Posted 2 years ago
    #

    I understand that this is your work, I will not return to bother (unless it must whereupon pay your work evidently).

    Best regards,

    Andres.

Reply

You must log in to post.

Design by milo

Milo designs web sites that strike the perfect balance between professional high-class graphics, functionality, usability, user experience, and high performance.