Weird issue when upgrading Craft to 2.5 that the settings link in the revised dashboard redirects to the settings page for the Dukt twitter add-on. If I disable the add-on then works just fine. Anybody else experiencing this problem?
Asked
Active
Viewed 163 times
2 Answers
2
While we wait for an official update, you can patch this pretty easily. Just open up craft/plugins/twitter/TwitterPlugin.php and find this function:
public function getSettingsHtml()
{
// ...
}
Delete the function entirely, and replace it with this:
public function getSettingsUrl()
{
return 'twitter/settings';
}
Brandon Kelly
- 34,307
- 2
- 71
- 137
1
I actually had to make this same change to the OAuth part of this plugin at craft/plugins/oauth/OauthPlugin.php
Adam McCombs
- 1,695
- 12
- 25
-
1Are you on the latest versions? Could explain my recent issues – Alan Miller Dec 09 '15 at 21:03