in2sky
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook] use fb comment box, hide wp's comment boxI’ve tried it, it doesn’t hide WP comments so I had to simply disable WP comments in the backend and only FB comments are shown now.
Still thinking it might be better to integrate Disqus or something like that.my files are like 5mb and it can’t do the back, I get the same warning file ‘xxx’ exceeds 40 percent of PHP
Forum: Plugins
In reply to: [Tumblr Importer] [Plugin: Tumblr Importer] How long do I have to wait?Hum, ok one thing that’s a REAL problem…
After I finished importing some 900 posts from my Tumblr, they all appeared on my backend with the default category (blog).
When I batch changed the category to something else, I discovered that WordPress doesn’t let you change the category when you batch. At best you can add a category, but you can’t take one off. Have you experienced this?
So far the only way to change the category is to quick edit each post! arf, it’s going to be a long one.
Forum: Plugins
In reply to: [Tumblr Importer] [Plugin: Tumblr Importer] How long do I have to wait?Thanks for the advice.
Actually, I think what prevented the import was that my site was in “maintenance mode”.
But it worked, imported 900 posts in less than one hour.
Thanks!!Forum: Plugins
In reply to: [Tumblr Importer] [Plugin: Tumblr Importer] How long do I have to wait?Hum, so far, the importer imported 1 post in 24 hours, the image that was originally uploaded on Tumblr is only linked.
On an earlier message, you mention “See, the plugin can only fire up when somebody visits the site. So if nobody is actually visiting the site, then it’ll never fire and you’ll be waiting forever.”
Are you saying someone must visit the new website in order for the plugin to work? That’d mean a site that’s in maintenance mode would never fire up the imports? Are we talking just visit the site, any post or posts that’s been importer through the plugin?A suggestion would be to add, right from the start, an option in the importer to choose a category on which the posts are going to be stored.
thanks.
Forum: Plugins
In reply to: [Tumblr Importer] [Plugin: Tumblr Importer] How long do I have to wait?I have a question, once imported, how do you handle the images? they are just links to tumblr images.
thanksForum: Fixing WordPress
In reply to: Maintenance mode when my core files are in a sub foldernope, the content of the site is not visible. you can only see the framework (menus, header, footer, but no content).
I know it sounds weird…Forum: Fixing WordPress
In reply to: Maintenance mode when my core files are in a sub folderYes, that is exactly what I did to set my site up.
Still, while on maintenance mode… I need to see the content of my site…Forum: Plugins
In reply to: wp-o-matic cannot fetch beyond 10 postssame here. it fetches 8 posts here.
Forum: Fixing WordPress
In reply to: Grid style layout for post listsJob done! It worked like a charm, thank you so much!
Now just going to play a bit with the CSS and make things look better ??Forum: Fixing WordPress
In reply to: Grid style layout for post listsThank you SO MUCH alchymyth!
Im going to try this right now then report.
Thanks again, I appreciate!Forum: Fixing WordPress
In reply to: Grid style layout for post listsOk thanks alot. The code I’ve copied here is the actual code from my category.php and it works, only it has taken the first post of the category and not the others, and no grid…
I’m posting a screenshot of what I see now:https://img684.imageshack.us/img684/3227/screenshotcategory.png
Forum: Fixing WordPress
In reply to: Grid style layout for post listsAs you can see I’m using timthumb to get the first image of the post into the square.
the CSS is:
.new-wrapper {background:#222; padding:0px; float: left; width: 200px; height: 200px; margin: 5px 20px 15px 0px; }Forum: Fixing WordPress
In reply to: Grid style layout for post listshere’s my current code. the website however is on maintenance mode (I can’t put it public now)..
I decided on a category I would like to stand out. It’s “features”. Therefore I copied category.php and named it category-4.php (4 being the features ID).
The code I have now is:
<?php get_header(); ?>
<div class=”breadcrumb”>
<?php if(function_exists(‘bcn_display’))
{ bcn_display(); } ?>
</div><?php include (TEMPLATEPATH . ‘/strings.php’); ?>
<div class=”new-wrapper”>
<?php
$values = get_post_custom_values(“feat-img”);
if (is_array($values)) : ?>
<?php if (file_exists($upload_path . ‘timthumb.php’)) { ?>
” title=”<?php the_title(); ?>”><img src=”<?php echo get_settings(‘home’); ?>/scripts/timthumb.php?src=<?php echo “$values[0]”; ?>&h=160&w=200&zc=1″ alt=”<?php the_title(); ?>” />
<?php } else { ?>
” title=”<?php the_title(); ?>”><img src=”<?php echo “$values[0]”; ?>” alt=”<?php the_title(); ?>” width=”200″ height=”160″ border=”0″ />
<?php } ?>
<?php else: ?>
<?php if (file_exists($upload_path . ‘timthumb.php’)) { ?>
” title=”<?php the_title(); ?>”><img src=”<?php echo get_settings(‘home’); ?>/scripts/timthumb.php?src=<?php echo get_first_image() ?>&h=160&w=200&zc=1″ alt=”<?php the_title(); ?>” />
<?php } else { ?>
<img src=”<?php echo get_first_image() ?>” alt=”<?php the_title(); ?>” width=”200″ height=”160″ border=”0″ />
<?php } ?>
<?php endif; ?>
<h5>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h5>
</div> <!– closing div of new-wrapper –><div class=”clear”></div>
<?php include (TEMPLATEPATH . ‘/paginate.php’); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Grid style layout for post lists