erikeric
Forum Replies Created
-
I am having the same problem.
Forum: Plugins
In reply to: [Social] Social for custom postsNevermind, figured it out. If anyone else wants to know:
Go to the plugins page. Click the “Edit” link under Social’s entry. Do a find-in-page search for “social_broadcasting_enabled” which will bring you to this line:
return apply_filters(‘social_broadcasting_enabled_post_types’, array(‘posts’));
And then just change “posts” to whatever the name of your custom post types are. I was also able to add multiple post types to that function as well, such as:
return apply_filters(‘social_broadcasting_enabled_post_types’, array(‘posts’,’news’));
The only difficulty might be finding out what your custom post types are actually named in the code.
Forum: Plugins
In reply to: [Social] Social for custom postsHow exactly do we enable this? I’ve found that line in the social.php file but I am not sure how to change it to enable custom post types. Do I just add another array() command to that line?
Forum: Fixing WordPress
In reply to: Lost Password, Link In Email Not Valid (key), ‘Fix’ Does Not Work¡Muchos gracias, Otto!
Downloading the two files, editing the wp-login.php file with the code snippet you provided and uploading them over my existing wp-login.php and pluggable.php fixed it. Now myself and my users can reset their passwords all day long without a problem.
Forum: Fixing WordPress
In reply to: how to show author in the post?Thanks so much!