ty_ga
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] metadata shortcodeWhere can I find the shortcodes for the metadata besides fx and random?
Fixed spacing issue. Not sure if you guys didn’t have issues b/c of a browser difference or just what, but I noticed the above code omitted a non-breaking space on line 64, replacing it with a ‘ ‘ that didn’t do the trick on my site. The following code includes the non-breaking space and solves the word-spacing issue:
$fscontent .= '<li id="fs-entry-'.$id.'" class="fs-entry">'; if(has_post_thumbnail($entry['post_id'])) { $fscontent .= get_the_post_thumbnail($entry['post_id'], 'large', array( 'class' => 'fs-skip fs-img', 'id' => "fs-entry-img-$id" )); $fscontent .= get_the_post_thumbnail($entry['post_id']); } else $fscontent .= '<img id="fs-entry-img-'.$id.'" class="fs-skip fs-img" alt=" " src="'.$entry['image'].'" />'; $fscontent .= '<div id="fs-entry-title-'.$id.'" style="position: relative; top: -44px;" class="fs-title">'.str_replace(' ','',$entry['title']).'</div>'; $fscontent .= '<span id="fs-entry-comment-'.$id.'" class="fs-skip">'.$entry['comment'].'</span>'; $fscontent .= '<span id="fs-entry-link-'.$id.'" class="fs-skip">'.$entry['link'].'</span>'; $fscontent .= '</li>';p.s. it’d be cool if we could edit posts so I didn’t have to triple post
nvm, I got into ftp to change things around, but now the spaces between words in my titles are gone
@fbozo, where is template.php? I don’t see it in the plugin editor with frontpage-slideshow.php
Viewing 4 replies - 1 through 4 (of 4 total)