YukataNinja
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Rotating Posts] Not rotatingLooks like you got this working, let me know if you are still having problems.
Forum: Plugins
In reply to: [Plugin: Rotating Posts] How to set navigation buttons stay at the bottom?I’m not quite sure what is happening on your site. Is the title too long that it is causing a line break and this creates a second line, pushing the buttons down? You could edit the css to set a fixed height for div.rp_post_title or some other div to always have it be 2 lines tall.
Forum: Plugins
In reply to: [Plugin: Rotating Posts] not rotatingLooks like you got this fixed. Let me know if it is still a problem.
Forum: Plugins
In reply to: [Plugin: Rotating Posts] rp_content to display imageAre you putting in the html code like:
<img src="\Images\myimage.jpg" \>
?Forum: Plugins
In reply to: [Plugin: Rotating Posts] Adding custom fieldsYou could put a subtitle in the top of your post, but the tool itself, along with wordpress, does not support subtitles.
Forum: Plugins
In reply to: [Plugin: Rotating Posts] How to move nav menu to the topNot easily. The source could be edited, in rotating-posts.php, the nav is all contained in <div id=’rp_nav’>. For this to be moved above, the code would need to be refactored as local arrays are populated in the for loop that displays the content.
Forum: Plugins
In reply to: [Plugin: Rotating Posts] Editing Display1. You could use custom css for all the related ID/classes that you want to be removed with
display:none
, I think just this might do it (untested):div#rp_nav { display: none; }
2. In rotating-posts.php, move the if statement block
if ($rp_display_title)
to below the block with$postContent
or wherever you want it. But note if there is a new version released, it will blast over any changes you make to source.Forum: Plugins
In reply to: [Plugin: Rotating Posts] Double Images in PostsDo you have a link to your site? Did you include the code in your php file or use the shortcode in page/post?
Forum: Fixing WordPress
In reply to: [Plugin: Rotating Posts] Resetting Defaults in this pluginIn the next version (1.01), when you uninstall, all of the settings should be deleted.
Forum: Plugins
In reply to: [Plugin: Rotating Posts] Help please – printing code above possNext version should fix hopefully this (1.01). Also, if you have ?debug in your url, these will show.
Forum: Plugins
In reply to: [Plugin: Rotating Posts] Request plugin author change Support linkWill do, thanks for pointing this out.
Forum: Requests and Feedback
In reply to: [Plugin: Rotating Posts] Using Excerpt Instead of Content?RP is designed to work with the
<!--more-->
tag in your post to only show part of the post on the front page.Forum: Plugins
In reply to: [Plugin: Rotating Posts] Skipping the first few postsYou could create a category for those posts and then assign the posts you want to show up in the plugin by selecting that category in
settings -> rotating posts -> Show posts from category
.Forum: Plugins
In reply to: Ical for Events Calendar 1.0 not workingIt works for me on WP Events Calendar 6.6-beta.
Forum: Fixing WordPress
In reply to: [Plugin: Rotating Posts] Errors?Those are there only if it is in debug mode, some other plugin must have set DEBUG to true. Guess I should have used a more local variable.