Git Product home page Git Product logo

wp-twitter-tools's People

Contributors

alexkingorg avatar bradt avatar mospaw avatar nddery avatar shawndrew avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wp-twitter-tools's Issues

"Create blog posts" comes in as wrong time

I had a tweet created and then twitter tools imported it at the wrong date (12:29 local, 16:29 in WP). I'm guessing this is the GMT time (-7 hours +1 for daylight savings).

Stopped working

Hi, since i Updated to wordpress 4.7 This pluggin stopped working. Can you help me?

Settings Page Saving

I am unable to save settings on the Twitter Tools settings page. Using Twitter Tools 3.0b2 and Social 2.0.

only pull twitter feeds from 2012

Hi, I'm using the awesome plugin for a long time, however recently the plugin is only pull twitter feeds from 2012. I'm using version 2.3.1, is that might be the issue?
Also I trying to verify my login info, WP notify me "Sorry, login failed. Error message from Twitter: Rate limit exceeded. Clients may not make more than 150 requests per hour."
Thanks

Support Searches

  • specify search criteria (hashtag, terms)
  • bring in tweets
  • widget output of search results
  • shortcode output (how to specify which search?)

Install issue: unexpected T_FUNCTION

When attempting to active Twitter Tools, I get the following error message:

Plugin could not be activated because it triggered a fatal error.

Parse error: syntax error, unexpected T_FUNCTION in /home/blogan/public_html/blog/wp-content/plugins/crowdfavorite-wp-twitter-tools-ada7e4d/widget.php on line 105

Links issue

Hi there,

I'm having trouble with links:
Normal Tweets: doesn't bring a link to twitter site.(t.co)
Tweets with Link: bring the link, but don't bring the link to twitter site(t.co)
Tweets with photo: Brings a link to twitter site
Tweets with photo and link: Brings a link to twitter site and to link.

Can you help me?

Use dashicons for the meu icon

Is it possible to use the Twitter dashicon as the Tweets menu icon? Maybe not hardcode it, but filtering the arguments used on the register_post_type.

Add option to not download images but just expand the links instead

I would like to be able to not download images and add them into the content (or as a featured image) and just expand the links. In a next step I would like a filter added so I could choose how the link expansion would be. What I really want is a short code for [twitter image].

I'd like to help create a patch myself if you dont have the time @alexkingorg. Just help point me in the right direction. So far Ive just found how to not download images. But the image urls are left un-expended as t.co images.

Post Formats

Suggestions:

  1. I'd love a wildcard for Tweet Prefixes that would identify the post format. So, "New %format%:" would prepend tweets with "New Quote: ", "New Video: ", "New Link: ", etc.

  2. Also, it would be swell if there was an option to remove the Tweet Prefix and link for posts with a "Status" format.

Very inconsistent pulling of tweets

On my multisite setup I have all 3 'blogs' setup identical.

I have a brand new twitter account with 7 tweets made by me. At the most my sites show 4 tweets in the admin panel 'tweets' custom post-type archives. No matter how many times I click import, they won't import in to sync up.

blog 1 = shows 3 tweets, missing most recent - http://screensnapr.com/v/JwTNQh.png

blog 2 = does not show most recent tweet even after a few days and clicking import tweets multiple times - http://screensnapr.com/v/YIZKoU.png

blog 3 = no tweets found - http://screensnapr.com/v/ZBh2DX.png

Like I said everything is setup identical on all the sites on the network. I have checked dozens of times to make sure, even reset, removed, added, resetup, you name it, doesn't help.

I am also running social and I figured maybe adding the debug log might help, who knows. My 'issues' keep getting closed out with no explanation of how to fix it
http://dl.dropbox.com/u/2045194/debug_log.zip

I haven't even tried auto posting or anything yet until I can at least get the base portion to work.

Is there anything else I can do to help explain the problems to help troubleshoot this, as I'd love to use the plugin:?

Empty Tweets

Hello, running Version 3.1 for a client.

She seems to be getting empty tweets titled '(no title)' into her feed that ends up looking quite ugly on her frontend. We've added a condition into our template to now show these empty tweets however they are sill crowding her backend. Is this a known issue or would you have an idea of where to start to debug?

We have Debug loggin enabled however we have nothing recent within our root error_log, nor our theme's error_log and debug_log

Thanks

_aktt_tweet_post_id meta fields empty on posts.

I'm trying to pull the twitter status URL through to use within the Post display for tweets. I'd be able to get this working if I could only get the "_aktt_tweet_post_id", though this seems to be stored as nothing when i look at the database via phpmyadmin.

Here's where I guess it should be set in aktt_tweet.php?
update_post_meta($this->blog_post_id, '_aktt_tweet_post_id', $this->post_id);

If there's any easier way to get the status URL through to each associated blog post, that'd be great too.

Even better would be if there was some way to associate the Author of blog posts (per twitter account setting) to the Tweet-posts themselves so I could forgo having to use the Posts section for these altogether. Enabling the Author ability within the post type itself was easy enough, getting it to automatically store that Author, not so much.

Appreciate any help anyone can give. Pretty much just want Authors + Status links working nicely together.

No tweets available at this moment

I saw the #1 issue was fixed so I applied the updates. That indeed did solve the problem of the widget not showing what accounts to choose.

However, when placing the widget onto the page it says 'No tweets available at this moment'.

It does have the proper follow me twitter address below that, i.e. my twitter username

Social is picking up my tweets and is populating the tweet custom post-type, so I am not sure where the widget is getting lost.

*Not that it probably matters, but I am using this on a multi-site setup and this is my root blog

"Title prefix" is ignored

the posts generated from the tweets always have the tweet's text as title, truncated.

according to the code in aktt_tweet, line 536ff, a prefix should be added, if one is set, but this is not working - the title remains unchanged.

I also tried to hook into the "aktt_tweet_create_blog_post_data" filter with a simple title replacement:

function aktt_post_title( $post_data ){
    global $wpdb;
    $post_data['post_title'] = $wpdp->escape('Gezwitschert...');
    return $post_data;
}
add_filter('aktt_tweet_create_blog_post_data','aktt_post_title');

but as a result, no posts from tweets are created.

If I run "Download tweets now" from the settings page, I see these lines in the apache error log (Debug logging is set):

Downloading tweets for webrocker: http://mydomain.tld/index.php?aktt_action=download_account_tweets&acct_id=xxxxxxxx&social_api_key=yyyyyyyyyyyy, referer: http://www.webrocker.de/blog/wp-admin/options-general.php?page=twitter-tools&settings-updated=true

which looks good to me.
But somehow no "create post from tweet" is happening.

If I remove the filter from my functions.php, the post-creation is working, but the title prefix is ignored.

How can I debug this?

thanks for the plugin,
Tom

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.