Does’nt appear your widget in safari iOs.
]]>Hi,
We use the HL twitter Plugin for a few years. Now it stoped imporing tweets since April 21st.
When i ad a new user is also imports his tweets until april 21st.
https://www.ads-software.com/plugins/hl-twitter/
Please help.
]]>There is a periodic Fatal error that is generated in HL Twitter for memory exhausted.
I have set the memory limit to 64 and also tired to increase it to 256, but was of no use.
Because of this there are memory issues that are created on server and we need to restart the server periodically.
Please help we with a solution for this.
Thanks
]]>Hi Please help.
I have installed the HL Twitter plugin it is working fine. Displays the tweets but there is no search box to search the tweets. normal search box does not search the tweets
Thanks
]]>Today I’ve been moving one of mine wordpress sites to HTTPS. This however gave me an issue with the HL-Twitter plugin, since the twitter profile image only was returned as a NON SSL link (https://pbs.twing.com..). And this causes the site to be not fully secure.
I Fixed that with changing the hl_twitter_get_avatar function in functions.php
FROM:
function hl_twitter_get_avatar($url) {
return $url;
}
TO:
function hl_twitter_get_avatar($url) {
$url=str_replace(‘https://’, ‘https://’, $url );
return $url;
}
This seems to have done the trick.
Since I don’t have to time to debug the complete code i have no idea if this will have any other impact on the script.
Do you have any official solution or will there be a change in the future?
Regards André
]]>Hi,
Maybe I am missing a setting – I only get the user’s name and “no recent tweets” web page output. Same for the display user area. There are 11,000 tweets but none show up.
Thank you
]]>Since a few weeks new Tweets aren’t loaded. I tried the method mentioned in the FAQ (calling the cron manually) but the page just keeps loading without an errorcode.
]]>I added a new user, but the plugin is not showing the tweets anymore. Not at the website, as on hl twitter > user > tweets. It says: No tweets were found. And that’s weird, cause at the overview is says this account has 27 tweets. When I tried to import the tweets, I get an error after a few minutes:
Fatal error: Maximum execution time of 60 seconds exceeded in xxxxxx/hl-twitter/api/EpiCurl.php on line 82
what went wrong?
]]>Hi,
I will like to list all archived tweets. I have over 50K tweets archived, how can I list them all with Pagination? Please help. thanks
]]>I see this has been asked previously, and, like others, I’ve followed the instructions in the FAQ to no avail. Even after changing the permalink and saving on that page and in Settings>Permalinks, clicking on more tweets still yields a broken link. Any solutions on the horizon? Thanks for any help you can provide.
]]>The default header is: Recent Tweets from (name of site). How can I change that header? Thanks for any help you can provide.
]]>Hello, excuse my english.
I’m using this great plugin, but the only one thing I dislike is that special characters like quotes is shown in html code.
For Example, if the title of the post is: Hello “my honey”, HLTwitter will display: Hello “my honey” on the tweet
Is there any solution for this? This issue always has been from its previous versions. Thanks.
]]>Small problem but one I thought I would check to see if there was an answer for. If you head to https://www.jbrightstore.com/ there is a huge difference in quality between the Facebook and Twitter Avatars is there any reason that HL_Twitter reduces avatar quality?
Cheers
I have the same problem. Since the 14th January 2014 will not be stored tweets. Is there a solution?
]]>I made a new account in twitter and my new tweets were not imported to my web site. I got the message “No tweets were returned by the Twitter API. Please try again later.”. After some hours we found out that in the table hl_twitter_users there is some another user_id. It happened because the type of column twitter_user_id is INT and is too short for a new twitters id’s. We changed it on BIGINT and now everything is OK.
Please, pay attention with it!
The plugin is not working on Godaddy servers since 14th Jan – ie when Twitter changed the oauth and SSL protocol. The recent update does work on other client hosts – such as hostgator and dreamhost, but not on Godaddy.
Previously, to get the plugin to work on Godaddy I had to check the curl and follow suggestions from here: https://www.ritey.com/blog/2012/03/wordress-hl-twitter-uncaught-exception-during-twitter-authentication/ and here: https://hybridlogic.co.uk/code/wordpress-plugins/hl-twitter/ . The plugin worked fine up until 14th January.
However, these workarounds don’t solve the problem now. The error message when trying to load a user on the plugin add user page is: “The selected user could not be found or an error was encountered while contacting Twitter. Please try again later.”
I’ve tried clearing caches, disabling, deleting and reinstalling plugin etc.
Any help would be much appreciated.
]]>Hi,
On the settings page, it mentions that the shortcode can display a bit.ly URL. How to I enable that? Right now, it’s just Tweeting the full ugly URL for my blog posts and taking up valuable characters.
Any suggestions?
Cheers.
]]>Our client wishes to be able to Tweet from a Custom Post Type. However no Metabox is available. Any thoughts? Thanks.
]]>Just launched a client’s site and it looks like when someone clicks on a hashtag, there’s a message on Twitter to upgrade to v1.1 of the API.
ie; https://search.twitter.com/search?q=socialmedia
Anyone have any info on how to fix that?
]]>Love the plugin. Does anyone how to fix the fact that my gravatar is showing https:// for the image reference even though my twitter account is using https and the image in my twitter account shows https there. I’m guessing it’s something in the plugin because my whole site is https…
Thanks,
Bob
Any other ideas? I changed the archive link in HL link settings.
Then I went to settings/permalinks and hit saved
Then I refreshed and hit archive – still 404.
Do I need to wait an hour until it checks for new tweets.
A great plugin. Think I donated before, but plan to use on a client’s site and will shoot some money your way. I’m a struggling one person webdev agency – but your plugin has helped me.
]]>Hmmm. Apparently no activity after installing and setting up a number of users. Test case when trying to manually import:
=====
Tweets made: 740
Tweets in DB: 0
Tweets to import: 740
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 32 bytes) in /~/wp-content/plugins/hl-twitter/api/EpiTwitter.php on line 222
======
Any help much appreciated!
]]>Here is a fix for being able to use the plugin’s template files when a child theme is in use.
if(is_child_theme() && file_exists(get_stylesheet_directory() . '/' . $widget_file) ) {
include get_stylesheet_directory() . '/' . $widget_file;
} elseif (file_exists(get_template_directory() . '/' . $widget_file) ) {
include get_template_directory() . '/' . $widget_file;
} else {
include HL_TWITTER_DIR . '/' . $widget_file;
}
Widget Support
in hl_twitter_display_widget() from wp-content/plugins/hl-twitter/functions.php change line 380:
// Load view (look in theme first)
- $current_template_directory = get_template_directory();
- if(file_exists($current_template_directory . '/' . $widget_file)) {
- include $current_template_directory . '/' . $widget_file;
+ if(is_child_theme() && file_exists(get_stylesheet_directory() . '/' . $widget_file) ) {
+ include get_stylesheet_directory() . '/' . $widget_file;
+ } elseif (file_exists(get_template_directory() . '/' . $widget_file) ) {
+ include get_template_directory() . '/' . $widget_file;
} else {
include HL_TWITTER_DIR . '/' . $widget_file;
}
Archive Support
in hl_twitter_display_archive_page() from wp-content/plugins/hl-twitter/archive.php change line 142:
// Output template
- $current_template_directory = get_template_directory();
- if(file_exists($current_template_directory . '/' . $widget_file)) {
- include $current_template_directory . '/' . $widget_file;
+ if(is_child_theme() && file_exists(get_stylesheet_directory() . '/' . $widget_file) ) {
+ include get_stylesheet_directory() . '/' . $widget_file;
+ } elseif (file_exists(get_template_directory() . '/' . $widget_file) ) {
+ include get_template_directory() . '/' . $widget_file;
} else {
include HL_TWITTER_DIR . '/' . $widget_file;
}
Hope this helps and to see this in the next update!
]]>Hello,
On a multisite installation, when I try to add a new user who is already registred on another website of the network, there is a database conflict :
This user has already being added to the database of users
. And the user is not added.
Would it be possible to correct this special issue ?
Many Thanks,
O. Stern
]]>#-Tags are linked to “search.twitter.com” domain, but that leads to “not found” message. Just linking to “twitter.com” (with the same request parameter) does the job. I fixed functions.php, but I hope this will be fixed in next release.
Also I see that “#grüne” is not linked in complete, just “#gr”, German umlaut seems to be a problem.
]]>When I post anything with an ‘ & ‘ in the title it doesn’t show on twitter correctly. It shows up as & with numbers next to it.
How can I fix this?
Quick question about the archive page. I think the last time it worked was the week I installed way back when. Sorta forgot about that part of the plugin since then, but overhauled the site, clicked to view more tweets and remembered when I saw the broken url, and I’ve tried everything to get the page working, the whole permalinks thing, changing the slug etc. Even moved the archive over to a blank dev copy and zip, went fiddling in your code but that just resulted in some funky results.
Anything new popped up to get that working. Tweets are going back to 2010 so would be nice to have it searchable etc from the front-end. Gracias anyhow, still a great plugin.
]]>Is there any way to automatically link the Twitter Avatar to the Twitter page for that user?
I have a list of 10 Twitter users, and would like to be able to have users click through to the full Twitter feed for that user.
]]>Hi there!
I’ve just installed this plugin on my site. I’m using widget on my footer area but this widget doesnt display Cyrillic characters. Cyrillic works nice on other pages. Is there any way that I can fix this?
Regards!
]]>The avatars are covering the tweet text. I cannot read first part of tweets. Can I remove avatars? Please advise. Thank you.
]]>