hunden
Forum Replies Created
-
Forum: Plugins
In reply to: [Apiki WP FAQ] [Plugin: Apiki WP FAQ] Short codeSorry, no need to answer..that was not hard to find out ??
Forum: Fixing WordPress
In reply to: CSS Problem on blogNo, nothing helped.. I’m quite sure it’s something with the CSS…
Forum: Fixing WordPress
In reply to: CSS Problem on blogI will try that out thanks. The funniest thing is that it’s looking all good in both Firefox and IE, but not in Safari.
Forum: Fixing WordPress
In reply to: CSS Problem on blogSorry, I am unable to validate this document because on line 230 it contained one or more bytes that I cannot interpret as utf-8 (in other words, the bytes found are not valid values in the specified Character Encoding). Please check both the content of the file and the character encoding indication.
The error was: utf8 “\x96” does not map to Unicode
I don’t have a clue what it’s all about, don’t even know where to look.
Forum: Fixing WordPress
In reply to: My RSS Feed doesn’t workI found the problem by myself,
This was the right code:
function custom_social_media_links() { ?> <div id="custom_social_media_links"> <div id="social_media_opening_line">Share this post:</div> <a href="https://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>&t=<?php the_title(); ?>" target="blank"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/facebook.jpg" alt="Share this article on Facebook" /></a> <a href="https://twitter.com/home?status=<?php the_title(); ?> – <?php the_permalink(); ?>" title="Click to send this page to Twitter!" target="_blank"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/twitter.jpg" alt="Share this Article on Twitter" /></a> <a href="https://www.stumbleupon.com/submit?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/stumbleupon.jpg" alt="Add this Article to Stumbleupon" /></a> <a href="https://del.icio.us/post?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/delicious.jpg" alt="Add this Article to Del.icio.us" /></a> <a href="https://digg.com/submit?phase=2&url=<?php the_permalink() ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/digg.jpg" alt="Add this Article to Digg" /></a> <a href="https://reddit.com/submit?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/reddit.jpg" alt="Add this Article to Reddit" /></a> <a href="https://www.myspace.com/Modules/PostTo/Pages/?u=<?php the_permalink(); ?>&t=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/myspace.jpg" alt="Add this Article to Myspace" /></a> <a href="https://www.google.com/bookmarks/mark?op=edit&bkmk=<?php the_permalink(); ?>&title=<?php the_title(); ?>&annotation=<?php the_excerpt(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/google.jpg" alt="Add this Article to Google" /></a> <a href="mailto:blank?body=I thought you might be interested in <?php the_title(); ?>. You can view it at: <?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/mail.jpg" alt="Tell a Friend" /></a> </div> <?php }
Its funny I found it since I really don’t have a clue about PHP ?? ??
Forum: Fixing WordPress
In reply to: My RSS Feed doesn’t worksomeone?
Forum: Fixing WordPress
In reply to: My RSS Feed doesn’t workAnd I added this code to index.php:
<div class="postcontent"> <?php custom_social_media_links(); ?> </div>
Forum: Fixing WordPress
In reply to: My RSS Feed doesn’t workThis has something to do with the social buttons I added to the blog today. Probably I did something wrong because I can’t see the admin, rss feed and if someone writes a comment it’s like it it doesn’t work.
I added this code to the bottom of my functions.php to be able to display the social sharing buttons on the bottom of each post:
<?php function custom_social_media_links() { ?> <div id="custom_social_media_links"> <div id="social_media_opening_line">Share this post:</div> <a href="https://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>&t=<?php the_title(); ?>" target="blank"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/facebook.jpg" alt="Share this article on Facebook" /></a> <a href="https://twitter.com/home?status=<?php the_title(); ?> – <?php the_permalink(); ?>" title="Click to send this page to Twitter!" target="_blank"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/twitter.jpg" alt="Share this Article on Twitter" /></a> <a href="https://www.stumbleupon.com/submit?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/stumbleupon.jpg" alt="Add this Article to Stumbleupon" /></a> <a href="https://del.icio.us/post?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/delicious.jpg" alt="Add this Article to Del.icio.us" /></a> <a href="https://digg.com/submit?phase=2&url=<?php the_permalink() ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/digg.jpg" alt="Add this Article to Digg" /></a> <a href="https://reddit.com/submit?url=<?php the_permalink() ?>&title=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/reddit.jpg" alt="Add this Article to Reddit" /></a> <a href="https://www.myspace.com/Modules/PostTo/Pages/?u=<?php the_permalink(); ?>&t=<?php the_title(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/myspace.jpg" alt="Add this Article to Myspace" /></a> <a href="https://www.google.com/bookmarks/mark?op=edit&bkmk=<?php the_permalink(); ?>&title=<?php the_title(); ?>&annotation=<?php the_excerpt(); ?>" rel="nofollow"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/google.jpg" alt="Add this Article to Google" /></a> <a href="mailto:blank?body=I thought you might be interested in <?php the_title(); ?>. You can view it at: <?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/social/mail.jpg" alt="Tell a Friend" /></a> </div> <?php } ?>
Did I write something wrong?
Forum: Themes and Templates
In reply to: Help with adding my own social buttons without pluginsAnyone!? Please…
Forum: Themes and Templates
In reply to: Help with my WordPress themeThanks! It worked like a charm. I would look where to change this for hours ??
Forum: Themes and Templates
In reply to: Help with my WordPress themeHi,
Thanks for answering! I will try it out tomorrow, because now I’m going to sleep. Let’s hope it will work out.
Forum: Fixing WordPress
In reply to: Smilies problemHi!
Well when I noticed problem I linked to pictures and added them as images.
The funny thing is that some pics are working normaly and they show, some are just empty spaces like they are not there, not even code shows.
So to put it in other words:
Smilies are upploaded, they are in directory.. when I use code for smilies some show some don′t. Maybe there is something wrong with smilies code? But wouldnt code show in post?hunden