Pramod Jodhani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: BannerHi,
Can you please share the URL of the page where you have set this template?
Forum: Plugins
In reply to: [Facebook Publish] Module not wok error autorizeHello @laetitia-godet,
I have noticed that there are some problems with the plugin and the current approach.
I am working on the next version of the plugin which will be much easier to set up and more stable.
If you want to try the beta version, please let me know.
Forum: Plugins
In reply to: [Facebook Publish] Error AuthorizingThis is a warning, you can ignore it.
Facebook wants you to submit your app for review, which is a tedious task. You can just skip this warning and start using this plugin, this shouldn’t affect your experience.
Forum: Plugins
In reply to: [Facebook Publish] Authorization ErrorHello Scotty1234,
Can you please send me the debug log at my email ID [email protected].
Forum: Plugins
In reply to: [Facebook Publish] Error Authorizing Facebook AppHi,
You need add this URL
https://yoursite.com/?fb_publish_validate=1&cauth_return=Facebook [replace yoursite.com with your site url.]
here:
IMPORTANT: if your website is https, add replace http with https in above URL.
This should solve your problem, add this to functions.php of your current active Theme/Child theme
add_filter("the_content" , "add_2_articles_if_less_than_200"); function add_2_articles_if_less_than_200($content) { global $post; if($post->post_type == "post") { $count = word_count($content); if($count < 200) { //if count is less then 200 then add two more articles from the same category $current_post_id = $post->ID; $categries = wp_get_post_categories($current_post_id); if(isset($categries[0])) { $cat = $categries[0]; $args = array( "cat" => $cat, "posts_per_page" => 2, "post__not_in" => array($current_post_id) ); $qry = new WP_Query($args); while($qry->have_posts()) { $qry->the_post(); $content .=" <div class='additional_post'> <h3>".get_the_title()."</h3> <div class='additional_post_content'>".get_the_content()."</div> </div> "; } wp_reset_query(); } } } return $content; } function word_count($content) { $word_count = str_word_count( strip_tags( $content ) ); return $word_count; }
Forum: Fixing WordPress
In reply to: Editing a website without changing it’s current live setupThe best approach is to:
1. Take a backup of your site. There are few good free plugins out there like : All-in-One WP Migration and Duplicator.
2. Install the site on your local computer. You will need to install XAMP/LAMP or WAMP based on your operating system.
https://www.wpbeginner.com/wp-tutorials/how-to-move-live-wordpress-site-to-local-server/
3. Make all the changes you want on the localhost.
4. Once done, take a backup again but this time of localhost an push it to the live server.
https://premium.wpmudev.org/blog/guide-to-migrating-localhost-wordpress-to-live-site/
I hope it answers your question.
Forum: Plugins
In reply to: [Facebook Publish] Publishes unpubliches postsYou mean when you are saving a post in the draft then also it gets published to FB?
Thanks, that’s helpful.
Forum: Plugins
In reply to: [Facebook Publish] Authorization errorBtw I have updated the plugin, please check if your problem is fixed else send forward me the debug data as requested in the previous comment.
Thanks,
PramodForum: Plugins
In reply to: [Facebook Publish] Authorization errorHi,
When do you get this error?
Also can you please send debug data (Dashboard > Facebook Publish > Debug Info ) to my email: [email protected]?
Forum: Plugins
In reply to: [Facebook Publish] You buried him or is he going to live?Hi,
I have tested scheduling with multiple sites having WordPress version 4.7.3 and it seems to work fine. I believe something is also wrong with your WordPress installation.
Can you please send the debug information found in WordPress dashboard > Facebook Publish > Debug Info to my email: [email protected]
Forum: Plugins
In reply to: [Facebook Publish] You buried him or is he going to live?okay, sorry for the inconvenience. I’ll fix the issues by this Saturday.
Forum: Plugins
In reply to: [Facebook Publish] You buried him or is he going to live?Hi Sevirs,
I’m sorry for not being able to reply. The plugin is still active although I haven’t been able to update anything new but I’ll try to keep it working well.
Can you please let me know what issue you are having?
Hello @travislima,
Thanks a lot for explaining. It really is a great hack, though I really wish something like this was included in the plugin itself.