shappix
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Crontrol] Fatal Error on 1.13.x versions – only stable 1.12.1Remane the /wp-content/plugins/wp-crontrol to /wp-content/plugins/wp-control to disable the plugin temporary until the developers fix it.
Forum: Plugins
In reply to: [WP Crontrol] Fatal Error on 1.13.x versions – only stable 1.12.1Same problem here.
Warning: require_once(/wp-content/plugins/wp-crontrol/vendor/autoload.php): failed to open stream: No such file or directory in /wp-content/plugins/wp-crontrol/wp-crontrol.php on line 45 Fatal error: require_once(): Failed opening required '/wp-content/plugins/wp-crontrol/vendor/autoload.php' (include_path='.:/usr/share/php') in /wp-content/plugins/wp-crontrol/wp-crontrol.php on line 45
Please fix it.
Thank you
- This reply was modified 2 years, 4 months ago by shappix.
Same problem here.
Forum: Plugins
In reply to: [WP Social Post And Widget] Invalid request options.Same problem here.
Dear user,
Your post ID 24917 not posted on Instragram due to following reason.
Invalid request options.Same problem here:
General Errors: Slideshow Contains Unsupported Elements: Only image elements can appear in a slideshow. Ensure that slideshow (at /html/body/article/figure[1]/figure[1]) only contains supported elements. Refer to Slideshows under Format Reference in Instant Articles documentation for more information.
Find comment_type = ” and replace it to comment_type = ‘comment’
New code:
$recent_comments = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_author_email, comment_date_gmt, comment_approved, comment_type, comment_author_url, SUBSTRING(comment_content,1,110) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = 'comment' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT $number";