displaytweets icon indicating copy to clipboard operation
displaytweets copied to clipboard

A simple Twitter feed plugin for WordPress that uses the v1.1 API.

Results 14 displaytweets issues
Sort by recently updated
recently updated
newest added

Fixes Issue #19 **Cause:** PHP Class "OAuthException" being redeclared if it already exists. **Solution:** Only declare if it doesn't already exist. ``` if (!class_exists('OAuthException')) class OAuthException extends Exception { //...

**Cause:** PHP Class "OAuthException" can't be redeclared. **Solution:** Only declare if it doesn't already exist **Error message:** `Cannot redeclare class OAuthException`

twitter feed runs first time but then after first load i get this error. Warning: Invalid argument supplied for foreach() in /{directory}/wp-content/plugins/displaytweets-master/displaytweets.php on line 591

When Trying to validate the site using this plugin the code fails at when the & Comes through, Simple fix for this.. on line 515 in displaytweets.php change the '&'...

This allows themes or users that have disabled the plugin and theme editor to use the plugin. Even while logged in as admin, if this plugin is enabled while the...

This should fix MatthewRuddy/displaytweets/issues/9 which looks like the same issue from the support forums here: http://wordpress.org/support/topic/date_i18n-and-timestamps

The transient name now includes the user's Twitter handle (e.g. displaytweets_tweets_matthewruddycom) so sites that are displaying multiple feeds (by using the the `displaytweets_args` filter) are able to function. **Use case:**...

According to [the WordPress Codex](http://codex.wordpress.org/Roles_and_Capabilities#edit_plugins), the `edit_plugins` capability is mostly used to determine whether Plugins > Plugin Editor is accessible. On sites that use wp-config.php constants like `DISALLOW_FILE_EDIT` (for instance,...

Hi Matthew, Thanks for a great plugin. I hit the same "Cannot redeclare class OAuthException" error that Sven Schneider mentioned on http://matthewruddy.com/display-tweets-plugin/. This change fixed it for me; hopefully it'll...