Title: cmunns's Replies | WordPress.org

---

# cmunns

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/cmunns/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/cmunns/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Import Users from CSV] [Plugin: Import Users from CSV] No user was successfully imported](https://wordpress.org/support/topic/plugin-import-users-from-csv-no-user-was-successfully-imported/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-import-users-from-csv-no-user-was-successfully-imported/page/2/#post-2599218)
 * Thanks [@thewpguy](https://wordpress.org/support/users/thewpguy/)…that did it
   for me as well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[JSON API] [Plugin: JSON API] Help with (4.6. Attachment response object)](https://wordpress.org/support/topic/plugin-json-api-help-with-46-attachment-response-object/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-json-api-help-with-46-attachment-response-object/#post-2199748)
 * You can use the filter they provide to unset whatever sizes you don’t need
 *     ```
       add_filter('json_api_encode', 'my_encode_attachments');
   
       function my_encode_attachments($response) {
         if (isset($response['posts'])) {
           foreach ($response['posts'] as $post) {
       		foreach ($post->attachments as $attachment){
       			unset($attachment->images['full']);
       			unset($attachment->images['thumbnail']);
       		}
           }
         }
         return $response;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Get Widget Titles from active widgets](https://wordpress.org/support/topic/get-widget-titles-from-active-widgets/)
 *  Thread Starter [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/get-widget-titles-from-active-widgets/#post-2083446)
 * No I never really got this working because I found a work around for what I needed.
   Sorry.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] [Plugin: NextGEN Gallery] Modify Watermark and re-apply?](https://wordpress.org/support/topic/plugin-nextgen-gallery-modify-watermark-and-re-apply/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-nextgen-gallery-modify-watermark-and-re-apply/#post-2014760)
 * If you have chosen to create automatic backups of your photos then you can revert
   your galleries to the backup on the server to get the original photos.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Enable shortcodes in custom post types?](https://wordpress.org/support/topic/enable-shortcodes-in-custom-post-types/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/enable-shortcodes-in-custom-post-types/#post-1862573)
 * Right on the money. Thanks for following up with the answer here tmuka
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Contact form for each author](https://wordpress.org/support/topic/contact-form-for-each-author-2/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/contact-form-for-each-author-2/#post-2212343)
 * Use the Grunion Contact Form by Automattic, which when left blank uses the post
   author as the email address
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Get Widget Titles from active widgets](https://wordpress.org/support/topic/get-widget-titles-from-active-widgets/)
 *  Thread Starter [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/get-widget-titles-from-active-widgets/#post-2083256)
 * Okay I suppose this won’t work. I figured that
 * `echo $wp_registered_widgets[$widget]['name']`
 * will get me the name of the each widget, but the “Title” option doesn’t exist
   for every widget. Therefore what I really need is to grab the Title when that
   option exists or to create a global widget option for name the way that the widget
   logic plugin adds an option to each widget
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Query only a certain Tag without effecting Structure](https://wordpress.org/support/topic/query-only-a-certain-tag-without-effecting-structure/)
 *  Thread Starter [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/query-only-a-certain-tag-without-effecting-structure/#post-2065059)
 * This works if anyone cares for it:
 *     ```
       global $bp;
       		$school_code = bp_get_profile_field_data('field=School Code&user_id='.bp_loggedin_user_id());
   
       if(is_archive() || is_category()):
       	$cat_ID = get_query_var('cat');
       	query_posts('tag='.$school_code.'&cat='.$cat_ID);
   
       endif;
       ```
   
 * It basically checks for a custom drop-down profile field for each buddypress 
   user. It then corresponds to a post tag so only certain posts are displayed to
   this user.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pointing 3 Different servers to the same DB](https://wordpress.org/support/topic/pointing-3-different-servers-to-the-same-db/)
 *  Thread Starter [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/pointing-3-different-servers-to-the-same-db/#post-2006427)
 * How would this work if I want one wp db instance accessed by multiple hosts?
 * The same way? I just want to clarify so you know exactly what I meant…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [has_cap was called with an argument that is deprecated](https://wordpress.org/support/topic/has_cap-was-called-with-an-argument-that-is-deprecated/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [16 years ago](https://wordpress.org/support/topic/has_cap-was-called-with-an-argument-that-is-deprecated/#post-1497860)
 * Hey you guys is this only a plug-in related issue? I deleted all plug-ins and
   still have the problem. There is a hard-coded twitter plug-in but I also deleted
   all references to that as well…
 * Thoughts? Original post here:
    [http://wordpress.org/support/topic/debug-errors-from-wp-includes?replies=1](http://wordpress.org/support/topic/debug-errors-from-wp-includes?replies=1)
 * I can’t seem to find information anywhere.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [How to create multi site page inheritance?](https://wordpress.org/support/topic/how-to-create-multi-site-page-inheritance/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [16 years ago](https://wordpress.org/support/topic/how-to-create-multi-site-page-inheritance/#post-1600674)
 * The site wide tags just aggregates all posts onto one blog. This would be sweet
   if someone came out with a clone solution.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [How to create multi site page inheritance?](https://wordpress.org/support/topic/how-to-create-multi-site-page-inheritance/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [16 years ago](https://wordpress.org/support/topic/how-to-create-multi-site-page-inheritance/#post-1600650)
 * This plug-in does not do pages or .xml content. Is there way to provide an option
   on the signup page where users can choose a default theme/page/post setup. I 
   know I can set default theme with this plug-in, but I also want certain content
   associated with each default theme e.g. pages, templates, images, etc and want
   the user to decide if possible.
 * Alternatively, it would be acceptable to have the users choose themes, and have
   each theme be automatically filled with a certain .xml file instead of sharing
   same db…would that be too cumbersome?
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Main Log-in page Redirects to subdirectory](https://wordpress.org/support/topic/main-log-in-page-redirects-to-subdirectory/)
 *  Thread Starter [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [16 years ago](https://wordpress.org/support/topic/main-log-in-page-redirects-to-subdirectory/#post-1597161)
 * Nevermind I found it here [http://mu.wordpress.org/forums/topic/14150](http://mu.wordpress.org/forums/topic/14150)
 * but had to replace get_usermeta with get_user_meta for WP3.0 compatibility
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [No theme updates on wp3](https://wordpress.org/support/topic/no-theme-updates-on-wp3/)
 *  [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [16 years ago](https://wordpress.org/support/topic/no-theme-updates-on-wp3/#post-1597159)
 * There is an “Update” section in the Super Admin. Although it doesn’t indicate
   updates I do believe it updated my default theme 1.1 on my test user site.
 * Give it a shot.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Super Admin Only Theme](https://wordpress.org/support/topic/super-admin-only-theme/)
 *  Thread Starter [cmunns](https://wordpress.org/support/users/cmunns/)
 * (@cmunns)
 * [16 years ago](https://wordpress.org/support/topic/super-admin-only-theme/#post-1595734)
 * Enlightened!
 * Not very intuitive way to do it. THanks for the tip.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/cmunns/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/cmunns/replies/page/2/?output_format=md)