Title: jondewitt's Replies | WordPress.org

---

# jondewitt

  [  ](https://wordpress.org/support/users/jondewitt/)

 *   [Profile](https://wordpress.org/support/users/jondewitt/)
 *   [Topics Started](https://wordpress.org/support/users/jondewitt/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jondewitt/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jondewitt/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jondewitt/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jondewitt/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jondewitt/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[P3 (Plugin Performance Profiler)] Does not scan other plugins](https://wordpress.org/support/topic/does-not-scan-other-plugins/)
 *  [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [8 years ago](https://wordpress.org/support/topic/does-not-scan-other-plugins/#post-10263859)
 * This is happening on my site as well and I think it’s related to PHP7 (see GoDaddy’s
   sticky post at the top of the forum). Unfortunately considering the update history
   it doesn’t seem like they plan on putting much more (if any) effort into this
   plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Category to Pages WUD] Category Description Query](https://wordpress.org/support/topic/category-description-query/)
 *  Thread Starter [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/category-description-query/#post-9149854)
 * Hi [@wistudatbe](https://wordpress.org/support/users/wistudatbe/), I have figured
   out a solution for another request of mine, listing all pages in the same category
   as the current page:
 *     ```
       <?php
           global $post;
           $term_list = wp_get_post_terms($post->ID, 'categories', array("fields" => "ids"));
           $cat_id = array_values($term_list)[0];
           $args = array(
               'post_type' => 'page',
               'tax_query' => array(
                   array(
                       'taxonomy' => 'categories',
                       'field' => 'id',
                       'terms' => $cat_id
                   )
               )
           );
   
           $related = get_posts($args);
           foreach ( $related as $post ) : setup_postdata( $post ); ?>
               <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
           <?php
           endforeach;
           wp_reset_postdata();
       ?>
       ```
   
 * It could probably be nicer but works for now!
 * I look forward to your updates.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Category to Pages WUD] Category Description Query](https://wordpress.org/support/topic/category-description-query/)
 *  Thread Starter [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/category-description-query/#post-9146836)
 * I figured this out by myself using an SQL query but boy would it be great if 
   this plugin could be updated with some helper functions such as: get_pagecat_title(),
   get_pagecat_description() and get_pagecat_children();
 * My solution:
 *     ```
       $table_prefix = $wpdb->prefix;
   
       $query = "
           SELECT taxonomy.description
           FROM {$table_prefix}terms as terms, {$table_prefix}term_taxonomy as taxonomy
           WHERE terms.term_id = taxonomy.term_id AND terms.name = %s
           ";
   
       $desc = $wpdb->get_var($wpdb->prepare($query, $cat_title));
   
       echo $desc;
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor for WordPress] /edit/ results in 404 and no content](https://wordpress.org/support/topic/edit-results-in-404-and-no-content/)
 *  Thread Starter [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/edit-results-in-404-and-no-content/#post-5062791)
 * I edited the plugin core to use ?edit and not trailing slashes which has been
   working well for me and also fixed what was a broken update page:
 * /edit/&message=1 instead of /?edit&message=1
 * The getContent error was a fault of my own, not using reset_wp_query() in a sidebar
   loop.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front-end Editor for WordPress] /edit/ results in 404 and no content](https://wordpress.org/support/topic/edit-results-in-404-and-no-content/)
 *  Thread Starter [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/edit-results-in-404-and-no-content/#post-5062745)
 * using /?edit instead of /edit successfully puts me into editing mode. However,
   the page title always changes to my latest blog entry title, while the content
   stays correct.
 * Editing works, but saving does not. JS error console shows “Uncaught TypeError:
   Cannot read property ‘getContent’ of null”
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mqTranslate] Please remove Max_Supported_WP!](https://wordpress.org/support/topic/please-remove-max_supported_wp/)
 *  Thread Starter [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/please-remove-max_supported_wp/#post-4540933)
 * It’s a bad feature. Editing a page or post after the plugin has disabled itself
   can lead to a single post housing all of the content for whatever languages you
   previously had separated. Thanks though I’ll just keep editing the plugin file
   to change max supported version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IQ Testimonials] 404 Error after submitting the form ?](https://wordpress.org/support/topic/404-error-after-submitting-the-form/)
 *  [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/404-error-after-submitting-the-form/#post-3887088)
 * Had the same problem, found another plugin. Author is non-responsive, don’t download.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IQ Testimonials] Testimonials Submission via Widget](https://wordpress.org/support/topic/testimonials-submission-via-widget/)
 *  [jondewitt](https://wordpress.org/support/users/jondewitt/)
 * (@jondewitt)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/testimonials-submission-via-widget/#post-3781191)
 * Trying to do the same thing here. Form submission redirects to the same URL it
   was submitted from, but returns 404 content. I’m using do_shortcode([iq-testimonials-
   form]) in my sidebar.php file.
 * Author, please respond!

Viewing 8 replies - 1 through 8 (of 8 total)