Viewing 5 replies - 1 through 5 (of 5 total)
  • I have the same issue. I’ve selected to have replies not showing but the checkbox has no effect.

    Is there a fix for this coming?

    Thanks,
    Rob

    Is this going to be fixed? It’s pretty annoying to see replies when you don’t want them. If no intention of something that should be a simple fix, let us know so we can find plugin that actually works.

    I made it work by editing controller/twitter_widget.class.php

    Find this code (line 222 – 229):

    $fetchedTweets = $api_call->get(
    				'statuses/user_timeline',
    				array(
    					'screen_name'     => $name,
    					'count'           => $totalToFetch,
    					'replies_excl' => $replies_excl
    				)
    			);

    Change the 'replies_excl' to 'exclude_replies'. That should do it. Just wait until the cache is reloaded and your replies should go away.

    I myself also changed the value to true like this:

    $fetchedTweets = $api_call->get(
                                    'statuses/user_timeline',
                                    array(
                                            'screen_name'     => $name,
                                            'count'           => $totalToFetch,
                                            'exclude_replies' => true
                                    )
                            );

    Hey, Just started to use this twitter plugin (thanks to coders!), had the same issue with replies and the help/modification above works as a charm still 🙂

    Cheers

    solution of @niklaskurvinen works… but it’s better that this problem would be fixed officially

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Still showing @replies in feed’ is closed to new replies.