• Hi it is nice plugin but has some shortcomings! let me list them

    1. In IE 8 html is broken: string <!–[if lt IE10]> appears above slideshow. I corrected it – that string doesn’t have WHITE SPACE between “IE” and “10”… so I added white space in plugin file “shortcode.php” line 146.

    2. It doesn’t work if it’s container div isn’t floated left.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author todiadiyatmo

    (@todiadiatmo)

    Hi Vahan,
    thank you for the fix ?? we will update the script , btw could you show me a link for the broken plugin on left div ? you could send me password protected post if you want.

    Best Regards,
    Todi

    Thread Starter Vahan4033

    (@vahan4033)

    Do you mean my second point?
    I tested it locally (latest version) simply by inserting shortcode in to template with function do_shortcode("[pjc_slideshow slide_type='Home']"); as written in docs.

    Thread Starter Vahan4033

    (@vahan4033)

    new bug!
    no matter how many slide I have (all with unique order) it shows only FIRST 3 slides!

    I deleted slides and added them anew but…ie. I should be satisfied only with 3 slides.

    Thread Starter Vahan4033

    (@vahan4033)

    Hi again with the good news!!! I just have fixed a bug.

    If I set the parameter “Blog pages show at most” from “Settings->Reading Settings” to 3 slideshow shows only 3 images because it uses loop parameters without ‘showposts’=>”your desired number” and wordpress automatically takes the general value from “Reading Settings” parameter.

    $condition  = array('orderby' => 'tonjoo_frs_order_number meta_value_num',							'order' => 'ASC',							'meta_key' => 'tonjoo_frs_order_number',							'slide_type' => $attr['slide_type']
    );
    
    	    $query = new WP_Query( $condition);

    so I added my desired value

    $condition  = array('orderby' => 'tonjoo_frs_order_number meta_value_num',							'order' => 'ASC',							'meta_key' => 'tonjoo_frs_order_number',							'slide_type' => $attr['slide_type'],
    'showposts'=>6
    );
    
    	    $query = new WP_Query( $condition);

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Good!!! but has some bugs’ is closed to new replies.