hobbsh
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Posts Timeline] Max. of 10 wordsMaybe you changed your site since you posted – I’m not seeing what you mean. Let me know if I can still help – I apologize for the delayed response. Thanks for using WPT!
-Wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] scroll bar on left sideIt looks like a CSS conflict/override with another selector statement in your main stylesheet. You also have a background image set in there which the below statement will get rid of.
Go into the plugin CSS and ADD the following to the already present selector:
#timeline ul li{
overflow: visible;
background: none;
}Thanks for using my plugin!
-Wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] Left Side Posts not Aligning ProperlyCan you post an updated link? Very sorry about the delayed response!
-wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] Timeline always on topCan you post a link to your site? Could be a CSS issue in the plugin.
-Wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] Date format customizationI think I will do something like this, I have had multiple people email or post about needing a special date format. Thanks!
-Wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] Multiple TimelinesI never thought people would:
1. Have a use for my plugin
2. Need TWO timelines!I’ll have to get working on a new version with this added. Thanks!
-Wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] Shortcodes Broken in TimelineCan you post a link to your site? Are you using shortcodes in the post editor? What does the post content look like in HTML view?
-Wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] Futrue(Scheduled) PostsHmm, future dated posts…
Try this plugin which will allow you to publish instead of “schedule” future posts:
https://wordpress.org/extend/plugins/no-future-posts/
Then, the post dates should show up.
-Wylie
If you want to do historical dates, just backdate your posts – that is the simplest way. Or do you mean a date range? Sorry for the delayed response, but thanks for using my plugin!
-Wylie
Forum: Plugins
In reply to: [WordPress Posts Timeline] [Plugin: WordPress Posts Timeline] IEI am planning on debugging CSS issues with IE and incorporating them in the next release which should be in a few weeks. Thanks for you patience!
Forum: Plugins
In reply to: [WordPress Posts Timeline] [Plugin: WordPress Posts Timeline] css not workingHi Ellen, is there any way you can post a link to your site? Also, are you using the shortcode inside a loop?
-Wylie
Check out this plugin that has the very similar functionality in a much simpler package:
http://wordpress.org/extend/plugins/jquery-roundabout-for-posts/
Hey Peter,
If you go into the CSS and find this block of code:
#timeline ul .timeline-image { height: auto; min-height: 100px; overflow-x: hidden; width: 22%; }Change width to auto – that should solve your problem. I may add an option to specify timeline image dimensions in the future.
Your new code will look like
#timeline ul .timeline-image { height: auto; min-height: 100px; overflow-x: hidden; width: auto; }Forum: Plugins
In reply to: [WordPress Posts Timeline] [Plugin: WordPress Posts Timeline] SuggestionsIf you want to add a link with the post title you can use:
echo '<a href="' . get_permalink() . '" title="' . $post->post_title . '">' . $post->post_title . '</a>';I have released an update for WPT which links the date for each entry to the post’s permalink page.
Forum: Plugins
In reply to: [WordPress Posts Timeline] [Plugin: WordPress Posts Timeline] CatergoiesCan you post a link to the page it’s being used on? I apologize for such a slow reply.