Matthias Pupillo
Forum Replies Created
-
Forum: Reviews
In reply to: [FluentC - AI-Powered Translation for WP] It doesn’t workI would be happy to answer any support requests you have. I can not find any email or support ticket of any type.
Are you positive you have put a review on the correct plug-in?there is a support forum that is public to all and would be a better place than giving a 1 star review to a plug-in
We have updated the plugin to handle this use cases. Please update and review.
Forum: Reviews
In reply to: [FluentC - AI-Powered Translation for WP] Free 1 language tranlsation offerHi, Happy to discuss this. I am not positive that it belongs in a review of the application. 1 Free Automated language was a limited time promotion. We now offer Free Manual translations. Please start a support topic so that I can get all of your information and help you setup FluentC
Forum: Fixing WordPress
In reply to: Page content not showing up on some pagesCan you post a link?
Forum: Fixing WordPress
In reply to: Image Not Showing Up In SidebarWhen I opened the image in Photoshop it was in CMYK. I converted the mode to RGB and resaved it. I did not know that IE had that problem. I saved the image here. http://www.pupillo.info/wp-content/uploads/2010/04/performancetab1.jpg
Forum: Plugins
In reply to: [Plugin: Exclude Pages] Plugin having no effectI was able to solve the problem by adding ” AND $wpdb->posts.post_parent = ‘0’” to the end of the query to exclude all sub pages. I am sure it could be modified to exclude a page by post_id
OLD
$querystr = "SELECT $wpdb->posts.ID, $wpdb->posts.post_title FROM $wpdb->posts WHERE $wpdb->posts.post_status = 'publish' AND $wpdb->posts.post_type = 'page''NEW
$querystr = "SELECT $wpdb->posts.ID, $wpdb->posts.post_title FROM $wpdb->posts WHERE $wpdb->posts.post_status = 'publish' AND $wpdb->posts.post_type = 'page' AND $wpdb->posts.post_parent = '0'