twelliott
Forum Replies Created
-
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Double paginationI knew it had to something simple. Thanks for troubleshooting and fixing it!
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Double paginationWith all the other plugins off I still have the 4 extra pages. This is a Twenty Eleven child theme and is the first time I have ever seen this sort of thing with Meteor Slides.
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Double paginationWhen I posted I did not have any slideshow set-up, just 4 slides. I added a slideshow called ‘Home’, added those 4 slides to it and there are still 4 extra pages.
The only thing I changed from the stock CSS was positioning to center the pagination:
.meteor-slides .meteor-buttons {
bottom: -15px;
height: 9px;
left: 42%;
margin: 0;
padding: 6px 0 0;
position: absolute;
width: 100%;
z-index: 999;
}If I change is back to stock, I still get the 8 pages so my positioning isn’t causing this.
Forum: Fixing WordPress
In reply to: New Posts Not Showing Up On Main PageLooks like you might have figured this out already but I had a similar problem with a client blog that appeared after upgrading to WP 2.5.1. I found that I had to delete the wp-super-cache plug-in, the cache folder and related files from the root of the wp-content folder before the blog displayed properly.
Forum: Plugins
In reply to: [Plugin: Events Calendar] 2.5 Compatible?I’ve just upgraded to WP 2.5 and have a working install of Events Calendar. Make sure you install version 3.1.1 RC3 as the regular release doesn’t seem to work correctly.
Forum: Fixing WordPress
In reply to: blog home – change text in tabIt’s really pretty easy with this theme. Just look at the function.php for the following section and replace “Home” with whatever you want (I put in “Blog” here):
// WP-Andreas01 Page Navigation
function widget_andreas01_pagenav() {
?>
<h2 class=”hide”>Site menu:</h2>
<ul class=”page”>
<?php if (is_page()) { $highlight = “page_item”; } else {$highlight = “page_item current_page_item”; } ?>
<li class=”<?php echo $highlight; ?>”>“>Blog
<?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’); ?><?php
}
if ( function_exists(‘register_sidebar_widget’) )
register_sidebar_widget(__(‘Pages’), ‘widget_andreas01_pagenav’);It will be always the first choice which you might not want if you are using a static homepage for “Home”