rubberband
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: CDN Sync Tool] Images not syncingThe live support technician looked into the matter and the mime_content_type() settings were correct. He sent a ticket to a server administrator to look into the matter since it involved coding, but I’m doubtful they will be able to help either.
Forum: Plugins
In reply to: [Plugin: CDN Sync Tool] Images not syncingI have sent a support ticket to my host to verify that mime_content_type is installed and working properly. However, according to my cpanel, it is installed and mime types are set for all files.
Forum: Themes and Templates
In reply to: Display excerpts/thumbnails side by sideFound the solution. For anyone else wondering, just do a search for “remove paragraph tags from wordpress excerpts”.
Forum: Fixing WordPress
In reply to: Using post thumbnails outside the loopCould either of you explain this in a little more detail? Sorry, I don’t really understand PHP too well.
t31os_, is this what you were talking about?
<h4>Most Popular</h4> <?php foreach($top_posts = stats_get_csv('postviews', "days=7") as $post): if(!get_post($post['post_id'])) continue; ?> <a href="<?php echo $post['post_permalink']; ?>"><?php the_post_thumbnail( (int) $post['post_id'] ); ?></a> <?php endforeach; ?>Forum: Fixing WordPress
In reply to: Using post thumbnails outside the loopIf anyone could help me set up a custom WP query that would basically do the same thing using WordPress.com stats, that would be even better.
Forum: Fixing WordPress
In reply to: 404 Error on all Internal linksMy guess is that you haven’t properly setup your .htaccess for your custom permalinks. Try changing these back to default and see if it works then.
If that solves the problem, make sure your .htaccess is writable when you change it back to custom permalinks or update it manually.
Forum: Fixing WordPress
In reply to: can i hide the header on additional pages?Make a copy of your page.php file, name it gallery.php (or whatever) and put it in the theme folder. Do the same with header.php and rename it something like header2.php.
In gallery.php, replace the get_header.php with get_header2.php.
Open up header2 and edit out anything that you don’t want. If you want everything gone, just delete everything after the body tag.
Now when you create one of your gallery pages, look on the sidebar and select gallery.php as the template. (Note: the option to pick a template won’t be there until you actually put in a non-default template in the theme folder)
I think that should do it.
Edit: You could also use Jocken’s script below instead of picking the template inside the admin panel. Just replace //show logo with get_header and //don’t show logo with get_header 2.
Forum: Themes and Templates
In reply to: Thumbnails in a grid fashion on main indexThanks RVoodoo. I’ve managed to get the padding almost like I want it.
I know tables are taboo to most people now, but it seems like a good time to use one. Anyone know if it’s possible to use a table inside the loop?
Forum: Themes and Templates
In reply to: Thumbnails in a grid fashion on main indexOkay, after some digging, I was able to add the function that would turn the post thumbnails into links thanks to a post on John Tadlock’s blog.
I still need help with 2 and 3 though.