• Resolved nintey

    (@nintey)


    This looks like a great plugin and just what I was after, but I have dragged the plugin over to my widget sidebar and I am getting a blank row on the bottom of the table?

    I have changed the number of posts to display (currently 3) it whatever number of posts I put in, it always has a blank row at the bottom? Can anyone help me with this as I really want to use the plugin?

    http://wordpress.org/plugins/get-post-list-with-thumbnails/

Viewing 4 replies - 1 through 4 (of 4 total)
  • hi!
    I have the exact same problem.
    I used this shortcodes:
    [gplt nocats="2,3,6,7" ptype="post" orient="h" imgo="false" ttgo="true" dtgo="true" dtfrm="1" postnr="6" linn="3" divwid="300" tbwid="90" tbhig="90" cp="4" cs="4" lwt="2" tte="" sptb="false" tgtb="false" ordf="date" metk="" mett="" pgin="" ptype="post" dexcp="false" gptb="true"]

    and i get a black row at the bottom, as you can see here: http://www.iversoncru.com/usenreuse/

    Plugin Author alvaron

    (@alvaron)

    Hi guys, please try deleting posts on the trash can, if doesn’t work, please send me an email with an admin user and I’ll check your managers to see if we can figure out.

    Plugin Author alvaron

    (@alvaron)

    I’m changing to resolved.
    If you need more assistance, please write to wpworking@wpworking.com

    Hi there.
    The problem is in get_post_list_with_thumbs.php at line 548
    change:

    $htmlcod .= '<tr><td><table cellspacing="0" cellpadding="0"><tr>';
    	if($prevflg):
    		$htmlcod .= '<td><a href="#'.$gplwtdiv.'" class="gplwt_pvlink" onclick="goprocess_gplwt(\''.$gplwtdiv.'\',\''.$parflw_p.'\')"><</a></td>';
            endif;
    		if($nextflg):
    		$htmlcod .= '<td><a href="#'.$gplwtdiv.'" class="gplwt_nxlink" onclick="goprocess_gplwt(\''.$gplwtdiv.'\',\''.$parflw_n.'\')">></a></td>';
            endif;
    		$htmlcod .= '</tr></table></td></tr>';
    		$htmlcod .= "</table></div>";
    	if($ech):
        	echo $htmlcod;
    	else:
    		return $htmlcod;
    	endif;

    to:

    if($prevflg):
    		$htmlcod .= '<tr><td><table cellspacing="0" cellpadding="0"><tr>';
    
    		$htmlcod .= '<td><a href="#'.$gplwtdiv.'" class="gplwt_pvlink" onclick="goprocess_gplwt(\''.$gplwtdiv.'\',\''.$parflw_p.'\')"><</a></td>';
            endif;
    		if($nextflg):
    		$htmlcod .= '<td><a href="#'.$gplwtdiv.'" class="gplwt_nxlink" onclick="goprocess_gplwt(\''.$gplwtdiv.'\',\''.$parflw_n.'\')">></a></td>';
            endif;
    		$htmlcod .= '</tr></table></td></tr>';
    		$htmlcod .= "</table></div>";
    	if($ech):
        	echo $htmlcod;
    	else:
    		return $htmlcod;
    	endif;

    …and the empty <tr> will go away…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Blank row at bottom of table on widget?’ is closed to new replies.