williamr4j
Forum Replies Created
-
Forum: Plugins
In reply to: [WP CSV] plugin does not work after updating to WP 3.9By the way Paul, you website is broken. So even if someone wanted to give you a donation there would be no way not do so. 🙂
Forum: Plugins
In reply to: [WP CSV] plugin does not work after updating to WP 3.9For anyone else looking to get this fixed:
File: CPK_WPCSV_Engine.php
Copy paste this from line 25-32$this->export_model->empty_table( ); $export_file = $this->settings['csv_path'] . '/' . self::EXPORT_FILE_NAME . '.csv'; if ( file_exists( $export_file ) ) unlink( $export_file ); $post_ids = $this->posts_model->get_post_ids( $this->settings['post_type'] ); if ($post_ids) { $this->export_model->add_post_ids( $post_ids ); }Also on file: CPK_WPCSV_Posts_Model.php
Copy paste this from lines 24-40global $wpdb; $results = $wpdb->get_results($sql); $post_ids = Array( ); foreach ($results as $result) { $post_ids[] = (int)$result->ID; } /*$results = mysql_query( $sql, $this->db->dbh ); if ( $results ) { $post_ids = Array( ); while ( $result = mysql_fetch_assoc( $results ) ) { $post_ids[] = (int)$result['ID']; } # End while mysql_free_result( $results ); }*/ return $post_ids; }Thank you n-for-all. I will see if I can fix it that way.
Additional information:
I am on WP 3.6.1
I do have a bunch of plugins, I’ll try shutting those off
Getting this in the console:
<b>Warning</b>: Illegal offset type in isset or empty in <b>/home/content/61/10600661/html/wp-includes/post.php</b> on line <b>1038</b>
Has to do with the feedback form and jQuery.js.I’m getting a bunch of front end and back end jQuery issues as well.
Forum: Plugins
In reply to: [Widget Shortcode] Some Widgets are not displaying shortcode :-(I am having the same issue. Please let me know why a widget would not be structured correctly to display the shortcode.
Forum: Plugins
In reply to: [Rotating Tweets (Twitter widget and shortcode)] Fatal ErrorWorked perfect!
Thank you Martin.
Forum: Plugins
In reply to: [Rotating Tweets (Twitter widget and shortcode)] Fatal Errorinclude(‘TwitterAPIExchange.php’);
Forum: Plugins
In reply to: [Rotating Tweets (Twitter widget and shortcode)] Fatal ErrorI think the template may have some social connection plugins built in but it doesn’t have a widget that rotates like this. I uploaded the plugin you gave to me and it dropped my site entirely, giving me this: Fatal error: include() [function.include]: Cannot redeclare class wp_twitteroauth in /home/content/61/10600661/html/wp-content/themes/spotfinder/includes/widgets/tweets/functions.php on line 3