la_ri_za
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress theme upload problemAha! I solved mine: I hade typed “Only in premium version:” in the description and the system thinks that this is where the version number should be. I simply used other words and now it passed the scanning. ??
Forum: Fixing WordPress
In reply to: WordPress theme upload problemI have the same problem. Did you solve this?
Hi,
I’m having the same problem. Did you find any solution?
Forum: Plugins
In reply to: [Plugin: BuddyPress Multilingual] this plugin does not work at allI agree. I have tested it with WP 3.0, WPML 1.7.8.1 and Buddypress 1.2.4.1 with no success.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] is conflicting with my Mootools image gallery?I have the same problem: Photo Galleria (https://devkick.com/lab/galleria/) conflicts somehow with the Contact Form 7. I have no idea what to do. ??
Forum: Themes and Templates
In reply to: problem calling ie6 stylesheetHi, thanks for the answers! I tried those versions also but it doesn’t have any effect. But actually, I got someone to check my site in another computer and for him it’s working fine! Weird, I emptied the cache and history and everything but in my ie6 I cannot see it. :O Apparently it’s just my ie6 causing this…???
Forum: Themes and Templates
In reply to: remove date/time stamp for some posts but not othersHi,
in similar situation (removing comments from one specific category), I have done like this in the post loop:<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="topPost"> <p class="topAuthor"><?php the_author_posts_link(); ?></p> <h2 class="topTitle"><?php the_title(); ?></h2> <p class="topMeta"><?php the_time('j F Y') ?> | <?php the_category(', '); ?> </p> <div class="topContent"><?php the_content(' More...'); ?></div> <p><?php the_tags('Tags: ', ', ', ''); ?></p> </div><!-- Closes topPost --> <?php if ( in_category(10) ) { continue; } else { include(TEMPLATEPATH . '/showcomments.php'); } ?> <?php endwhile; ?> <?php else : ?>
You could do something like this. Meaning that you save file (in your theme folder) called showdate.php or something where you put the date tag. And then you could put the if-else-condition above in the place where you have date tag now. My php skills are actually lousy but this is something which I found somewhere and works for me (possibly someone else has more elegant solution! :))
Forum: Plugins
In reply to: Recent posts by category in the sidebar, with thumbnails?ok, I’m again answering to my own questions :), but I managed to customize Category POsts Widget by adding this (with my non-existent php-skills…):
' . '<img align="left" class="thumbnail_cat_posts" src="' . get_post_meta($post->ID, 'post_thumbnail', true) . '">
into cat-posts.php, line 55:
echo '<li class="cat-posts-item-' . $post->ID . '">' . '<img align="left" class="thumbnail_cat_posts" src="' . get_post_meta($post->ID, 'post_thumbnail', true) . '"><a href="' . get_permalink($post) . '">' . $post->post_title . '</a>';
In other words, I used the custom values in the posts of this specific category.
The problem is that I still cannot use it because of the img-tag – it makes the page ugly in IE if there is no thumbnail in some posts, and I want to keep that option too. And it’s also quite painful to make the thumbnail every time I want to have one, I would really like to have it more or less automatically.
So, I keep searching… unless someone has better ideas?
Forum: Fixing WordPress
In reply to: Image & italics bug in IE7ok, somehow fixed width in .topPost helped… in case someone has similar problems. ??
Forum: Fixing WordPress
In reply to: Image & italics bug in IE7Thanks! Unfortunately resetting em/css didn’t help. Any other ideas?
Forum: Installing WordPress
In reply to: WordPress files on one server, database on another?Ok, thanks!!