eivindvr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Want help in Permalink linksit’s possible to redirect your old links to the new permalink structure if you add a redirect to your htaccess file. Check out this post: http://yoast.com/change-wordpress-permalink-structure/
Works like a charm for me!
Forum: Plugins
In reply to: [Plugin: TDO Mini Forms] Add Facebook Connect?did you find a solution for this??
love to hear about it.Forum: Fixing WordPress
In reply to: Thumbnail in teaser and large image in the full postYou could try custom fields
Forum: Fixing WordPress
In reply to: multiple errors updating options after upgrading to 2.8.13. Whenever I changed my blog and wordpress address in Dashboard > General it would stuff up.
So I made sure that the wp-config.php file had
define(‘WP_HOME’,’http://mydomain.com’);
define(‘WP_SITEURL’,’http://mydomain.com’);This did the trick for me. Thanx retrosneak!
Forum: Fixing WordPress
In reply to: Sorting query results by value of custom keyNICE!!!!!
Just what I need, works perfect!Forum: Fixing WordPress
In reply to: the_meta WORKS, get_post_meta does notnice work:-D
Forum: Plugins
In reply to: Twitter->Gravatar Avatar used in post.I´m looking for the exact same thing!
I tried the <?php echo get_avatar($post->post_author); ?> but it only pulls the WP default avatar:-(I would like to use both facebook and twitter avatars for posts.
I´m using them for commenst and recents comments and it works fine.How can I use the twitter/facebook avatars to my post author?
/eivind
Forum: Fixing WordPress
In reply to: remove bullets in listPlz post the solution, I have the same problem.
eivind
Forum: Plugins
In reply to: How to change the excerpt for “recent comments with avatar” pluginI solved by changing the default comments excerpt in wp-includes/comment-tamplate.php
This site gave me the help I needed http://adambrown.info/p/wp_hooks/hook/get_comment_excerpt?version=2.9&file=wp-includes/comment-template.php
Forum: Plugins
In reply to: Get Recent Comments Gravatar in SidebarI got the same problem, did you solve the problem???
best eivind
Hi!
How can I change the length of the excerpt for the “recent comments with avatar” plugin??
I`ve tried to modify a core wordpress file (formatting.php). it changes the excerpt for everything except for the plugin. I´ve also tried various solutions with the function.php file, with the same result.and I cant find anything in the plugin editor either.
Any suggestions??
eivind
Forum: Plugins
In reply to: Changing length of the_excerpt without changing it on the whole wordpressyou could also try this:
`function my_excerpt_length($text){
return 10;in the functions file
Forum: Plugins
In reply to: Changing length of the_excerpt without changing it on the whole wordpressI tried it to and it work fine, but not in my “avatrs in recent comments” widget:-(
I also tried this: http://jarretcade.net/changing-the-default-wordpress-excerpt-length
I belive that is the best way to change the default exerpt.
Eivind
Ah pvalure! works like a charm!
just what I need!Forum: Fixing WordPress
In reply to: Only last post on homepage and full blog in “/blog” directoryI solved that by changeing this line
<?php the_title(); ?>to
<h2 class="postTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>eivind