Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)
  • same here too.

    I also don’t see the icons in the feeds either, never have, but the developer says they do appear and that I must be doing something wrong.

    With all due respect to the developer, All I was activate the plugin, tick the boxes in the config area for the icons to appear under each post, and select RSS Feed Items… and still no icons appear.

    Maybe they don’t work on other templates and just the default one that WordPress supplies?

    Is anyone else having this problem?

    a cache thing? what you mean? I’ve got a brand new blog and installed this plugin and nothing in my cache yet the sociable plugin will not work in my wordpress feed.

    Same here, creator is not responding to fix this problem, they say it works for them, but it doesn’t for anyone else, go figure.

    Same here, doesn’t work, creator of plugin says it was a problem i created. i dont see how, i install, select to opt to have it in feed, and nothing shows up… it’s been this way for months.

    I have the same problem, Sociable does NOT work in RSS Feeds. The creator swears it does and blamed me that I did something wrong. But I know I didn’t.

    Forum: Fixing WordPress
    In reply to: [How To] RSS Tags?
    Thread Starter lozy

    (@lozy)

    Thanks Otto,

    yes, they do have tags, be rather silly not to test without tags on a post. 😉

    Ok,so I have implemented the two changes and both return an error.
    I get this error for the first recommendation.

    Parse error: syntax error, unexpected T_ENDWHILE in /home/username/public_html/folder/wp-content/themes/design/single.php on line 104

    line 104 is:
    [?php endwhile; ?]

    Implementing the other I get the same error.

    So I took out the if empty thing out and now get this error for the first implementation above you mention.

    Warning: Invalid argument supplied for foreach() in /home/username/public_html/folder/wp-content/themes/design/single.php on line 58

    Line 58
    foreach ( $terms as $term ) {

    Warning: join() [function.join]: Invalid arguments passed in /home/username/public_html/folder/wp-content/themes/design/single.php on line 63

    Line 63 are where all the UL and LI tags are where the join statement is
    And the 2nd alternative above you mention, returns the same error.

    Man, this is getting really frustrating. 🙁

    Forum: Fixing WordPress
    In reply to: [How To] RSS Tags?
    Thread Starter lozy

    (@lozy)

    like this?
    (I’d try and do the code thing, but when I add the backtick then the code below, and close it with a back tick, nothing happens, even adding the word code encased in <> still nothing. 🙁

    Any ways, replaced the <> with [] on some of the areas below.

    When adding the above you mentioned, nothing appears now, it was completely removed.

    <?php $terms = get_the_terms($id,’post_tag’);
    if (!empty($terms)) {

    foreach ( $terms as $term ) {
    $link = get_term_link($term,’post_tag’);
    $feedlink = get_tag_feed_link($term->term_id);
    $term_links[] = ‘[a href=”‘.$feedlink.'”>[img src=”/feed-icon.png” /][/a][a href=”‘ . $link . ‘” rel=”tag”>’ . $term->name . ‘[/a]’;
    }
    echo ‘[ul][li]’ . join(“[/li][li]”, $term_links) . ‘[/li][/ul]’;

    }

    ?>

    Forum: Fixing WordPress
    In reply to: [How To] RSS Tags?
    Thread Starter lozy

    (@lozy)

    Hmm, works ok locally, but uploading to site, spits out errors. 🙁

    Warning: Invalid argument supplied for foreach() in /home/username/public_html/folder/wp-content/themes/design/single.php on line 64

    Warning: join() [function.join]: Invalid arguments passed in /home/username/public_html/folder/wp-content/themes/design/single.php on line 69

    This is line 64
    foreach ( $terms as $term ) {

    This is line 69
    echo ‘[ul][li]’ . join(‘[/li][li]’, $term_links) . ‘[/li][/ul]’; ?>

    Forum: Fixing WordPress
    In reply to: [How To] RSS Tags?
    Thread Starter lozy

    (@lozy)

    never mind, figured it out, I didn’t place a forward slash in my permalinks, not sure why it forces me to do that, any hows… all looking good, except working locally my image doesn’t show up…

    Cheers again Otto for your help. 🙂

    Forum: Fixing WordPress
    In reply to: [How To] RSS Tags?
    Thread Starter lozy

    (@lozy)

    btw, there is a forward slash missing. I wouldn’t have a clue where it’s supposed to go.

    I ended up getting this
    http://localhost/blog/tag/creditfeed

    instead of
    http://localhost/blog/tag/credit/feed

    Forum: Fixing WordPress
    In reply to: [How To] RSS Tags?
    Thread Starter lozy

    (@lozy)

    Ok thanks Otto, but that just creates the feeds right, it doens’t show the tag name?

    like

    TagName [rss-image], TagName [rss-image], and so on.

    Forum: Fixing WordPress
    In reply to: [How To] RSS Tags?
    Thread Starter lozy

    (@lozy)

    K, i added &feed=rss2 to a section but nothing worked.

    <?php
    if(get_the_tag_list()) {
    echo get_the_tag_list(‘[ul][li]’,'[/li][li]’,'[/li][/ul]’);
    }
    ?>

    the above produces the tags just fine, but I can’t find out how I can get a rss feed icon next to each tag.

    <?php
    if(get_the_tag_list(‘&feed=rss2’)) {
    echo get_the_tag_list(‘[ul][li]’,'[/li][li]’,'[/li][/ul]’);
    }
    ?>

    That doesn’t work.

    when you added the image, there is a section there to load it to another page, you probably missed that part. go back and try again where it asks you to enter the page where you want the image to take you too once it’s clicked on.

    find out what class or ID it’s using in it’s css and modify it so it works.

    from what I am aware, you need to create a tag-slug.php
    http://codex.wordpress.org/Image:Template_Hierarchy.png
    If it’s not found, it defaults to the archive.php page.
    and customize it like you would any other page.

    Hope this helps.

Viewing 15 replies - 1 through 15 (of 26 total)