Viewing 14 replies - 1 through 14 (of 14 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Try this one:

    [wppa type=”filmonly” album=”2″][/wppa]

    and uncheck Table IV-B3.1

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    thanks for the reply.
    I also need to customize this scroller,Like changing its width,height,background color,changing its corner to be edgy corner of scroller instead of round corner and want to remove the double arrow from left and right.
    is it possible to do all this?

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Yes you can, see the Photo ALbums -> Settings admin page, it is the ‘filmstrip’

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    can you please describe in more detail because i can’t find all these options.i found filmstrip and film seam which does not bring those effects that i needed

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    found the option for background and border color.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Size: Table I-C1 and C3 ( keep them equal ), and make sure C4 is big enough. Set Table IV-C5 to center.

    Border thickness and radius: Table I-A5 and A6.

    Duble arrows:

    in any css file:

    #prev-film-arrow-1, #next-film-arrow-1 {
    display:none;
    }

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    Thanks for reply.Applied the setting as you said and all worked.

    But the thumbnail images in filmstrip is not of uniform size,is there some setting to keep the thumbnail image size to be uniform.

    And also i need to have frame on every image.

    And the width of filmstrip is not changing, is there any way to change the width of film strip?

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    Also need to add tittle to the title to the scroller,position of title should be inside the film strip box and above image.Which file should i edit.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Table I-A1 sets the default width of any wwp+ display.
    Use auto for responsive themes.

    You can overrule in the shortcode with size="500" ( for 500 pixels ) or size="0.6" for 60%.

    Thumbnail frame size is settable in Table I-C3 and C4.

    Thumbnail aspect is settable in Table I-C2.

    Edit wppa-slideshow.php, line 623:

    if (is_feed()) {
    		$wppa['out'] .= wppa_nltab().'<div style="'.__wcs('wppa-box').__wcs('wppa-nav').'">';
    	}
    	else {
    
    	$wppa['out'] .= wppa_nltab('+').'<div class="wppa-box wppa-nav" style="text-align:center; '.__wcs('wppa-box').__wcs('wppa-nav').'height:'.$height.'px;">';
    		$wppa['out'] .= wppa_nltab().'<div style="float:left; text-align:left; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;">';

    Change to:

    if (is_feed()) {
    		$wppa['out'] .= wppa_nltab().'<div style="'.__wcs('wppa-box').__wcs('wppa-nav').'">';
    	}
    	else {
    
    $height += '20'; // adjust to the height of your text
    	$wppa['out'] .= wppa_nltab('+').'<div class="wppa-box wppa-nav" style="text-align:center; '.__wcs('wppa-box').__wcs('wppa-nav').'height:'.$height.'px;">';
    $wppa['out'] .= 'Text'; // Your text above the filmstrip
    		$wppa['out'] .= wppa_nltab().'<div style="float:left; text-align:left; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;">';

    First update to 5.2.7 !!

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    so, do i need to remove the existing plugin and download new version 5.2.7?

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    There is a verticle dotted line in middle of filmstip.please help to remove it.

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    Height issue is done.Also i installed the new version.

    The only thing i am bothered now is the vertical dotted line in filmstrip.How to remove it?

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Uncheck Table II-B4

    Thread Starter Kamlesh

    (@kamleshpawar2006)

    Thanks.

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘how to display only scroller/reel.’ is closed to new replies.