crowdfundingbank
Forum Replies Created
Viewing 1 replies (of 1 total)
-
This is one of the most annoying bugs that I had to fix so far. I call it annoying because I wasn’t able to post or edit exiting posts or pages because of this problem.
The above mentioned fix DID NOT resolve the problem it actually made it worse.
To fix the problem do this:
Open up this file: /wp-content/plugins/facebook-awd/AWD_facebook.php
Go to line # 858, it says:
'url' => 'https://facebook-awd.ahwebdev.fr/feed/?post_type=page&parent=220',
REPLACE THE WHOLE LINE WITH YOUR OWN RSS LINK. For EXAMPLE
'url' => 'https://crowdfundingbank.com/feed/',
Then go to line 872 where it says:
'url' => 'https://facebook-awd.ahwebdev.fr/feed/?post_type=btp_work',
REPLACE THE WHOLE LINE WITH YOUR OWN RSS LINK. For EXAMPLE
'url' => 'https://crowdfundingbank.com/feed/',
And this is what it looks like in my case:
public function get_documentation_feed($echo=true) { $widget_awd_rss = array( 'link' => 'https://facebook-awd.ahwebdev.fr/documentation/', 'url' => 'https://crowdfundingbank.com/feed/', 'title' => $this->plugin_name.' Documentation', 'items' => 20, 'show_summary' => 1, 'show_author' => 0, 'show_date' => 0, ); if($echo){ echo $this->admin_get_feeds($widget_awd_rss); }else{ $this->admin_get_feeds($widget_awd_rss); } } public function get_plugins_feed($echo=true) { $widget_awd_rss = array( 'link' => 'https://facebook-awd.ahwebdev.fr/plugins/', 'url' => 'https://crowdfundingbank.com/feed/', 'title' => $this->plugin_name.' Documentation', 'items' => 20, 'show_summary' => 1, 'show_author' => 0, 'show_date' => 0, ); if($echo){ echo $this->admin_get_feeds($widget_awd_rss); }else{ $this->admin_get_feeds($widget_awd_rss); } }
You should be able to now post and edit without issues.
Cheers!
Viewing 1 replies (of 1 total)