Title: Gustave F. Gerhardt's Replies | WordPress.org

---

# Gustave F. Gerhardt

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[FancyTabs] Exactly what i needed](https://wordpress.org/support/topic/exactly-what-i-needed-250/)
 *  Plugin Author [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/exactly-what-i-needed-250/#post-8001061)
 * Thanks! Glad it still works after all these years lol
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FancyTabs] Use ajax?](https://wordpress.org/support/topic/use-ajax/)
 *  Plugin Author [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/use-ajax/#post-4703895)
 * I do not have a demo setup anywhere that is accessible. It does not use ajax.
   It merely shows and hides `<div>`s
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FancyTabs] Fancy tabs don't accept shortcodes](https://wordpress.org/support/topic/fancy-tabs-dont-accept-shortcodes/)
 *  Plugin Author [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/fancy-tabs-dont-accept-shortcodes/#post-4673847)
 * I will try to look into it when I find time
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Types Order] Conflict with gallery order](https://wordpress.org/support/topic/conflict-with-gallery-order/)
 *  Thread Starter [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/conflict-with-gallery-order/#post-4379698)
 * Adding this around line 83 fixes it. I don’t want to mark this as resolved since
   I want to make sure the developer sees this. There is no need to modify the orderby
   on the admin side when dealing with attachment types, I think. It is too destructive.
   Perhaps only if autosort is on?
 *     ```
       if (isset($query->query_vars['post_type']) && ((is_array($query->query_vars['post_type']) && in_array('attachment', $query->query_vars['post_type'])) || ($query->query_vars['post_type'] == 'attachment')))
               	return $orderBy;
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Types Order] Conflict with gallery order](https://wordpress.org/support/topic/conflict-with-gallery-order/)
 *  Thread Starter [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/conflict-with-gallery-order/#post-4379685)
 * By the way, admin autosort is _not_ enabled
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Types Order] 'menu_order' not reordering items](https://wordpress.org/support/topic/menu_order-not-reordering-items/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/menu_order-not-reordering-items/#post-3916218)
 * Actually, in my case, as you may see from the code, I had accidentally transposed“
   order” and “orderby” parameters. Oops. Thank you for this plugin. Working now
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Types Order] 'menu_order' not reordering items](https://wordpress.org/support/topic/menu_order-not-reordering-items/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/menu_order-not-reordering-items/#post-3916217)
 * I am having this same issue. How it this resolved?
 * `SELECT wp_posts.* FROM wp_posts INNER JOIN wp_term_relationships ON (wp_posts.
   ID = wp_term_relationships.object_id) WHERE 1=1 AND ( wp_term_relationships.term_taxonomy_id
   IN (12) ) AND wp_posts.post_type = 'location' AND (wp_posts.post_status = 'publish'
   OR wp_posts.post_status = 'private') GROUP BY wp_posts.ID ORDER BY wp_posts.post_date
   DESC`
 *     ```
       $tax_args = array(
       	'post_type' => 'location',
       	'numberposts' => -1,
       	'posts_per_page' => -1,
       	'tax_query' => array(
       		array(
       			'taxonomy' => 'location-category',
       			'field' => 'id',
       			'terms' => get_queried_object()->term_id,
       		),
       	),
       	'order' => 'menu_order',
       	'orderby' => 'DESC',
       );
       $loop = new WP_Query($tax_args);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FancyTabs] [Plugin: FancyTabs] Inline CSS](https://wordpress.org/support/topic/plugin-fancytabs-inline-css/)
 *  Plugin Author [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-fancytabs-inline-css/#post-2977243)
 * I was not subscribed to emails for this plugin – oops! I will try to get an update
   out in the next week or two.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Username Changer] Invalid username](https://wordpress.org/support/topic/invalid-username-23/)
 *  Thread Starter [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/invalid-username-23/#post-3309449)
 * Update:
    In the `wp_users` table for this user, the user_login field has a “tab”
   of whitespace after the actual email address. for example: [example@example.com]
 * In the user_nicename field, I find this tab followed by “-2-2-2-2-2”. For example:[
   example@example.com -2-2-2-2-2]
 * Note that I have pasted actual tabs in here and have no idea how they will format
   once this message posts. The display_name field is uncorrupted, as is the user_email
   field. I will try to research this a bit.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Force un-secure an external URL, from a secure page?](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-force-un-secure-an-external-url-from-a-secure-page/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-force-un-secure-an-external-url-from-a-secure-page/#post-2973514)
 * I am also having this issue. Trying to simply link to a site that is not my client’s,
   and it is converted to [https://](https://wordpress.org/support/users/ghosttoast/replies/?output_format=md).
   This is a custom menu item.
 * Edit: this is happening on elements referenced within the content as well (links
   to other sites)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meteor Slides] [Plugin: Meteor Slides] Centering buttons](https://wordpress.org/support/topic/plugin-meteor-slides-centering-buttons/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-meteor-slides-centering-buttons/#post-2644537)
 * JLeuze, thanks so much for this plugin. I use it all the time. I was trying to
   center the nav buttons myself and I think this will allow you to do it without
   knowing ahead of time the number of buttons:
 *     ```
       .meteor-slides .meteor-buttons {
           bottom: 30px;
           height: 9px;
           margin: 0;
           padding: 6px 0 0;
           position: absolute;
           width: 100%;
           z-index: 999;
           text-align:center;
       }
       .meteor-buttons a {
           background: url('images/buttons.png') no-repeat bottom left;
           display: inline-block;
           width: 9px;
           height: 9px;
           margin: 0 2px;
           outline: none;
           text-indent: -9999px;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Role Scoper (Obsolete - Please install PublishPress Permissions)] [Plugin: Role Scoper] Comments are not displayed with custom post types](https://wordpress.org/support/topic/plugin-role-scoper-comments-are-not-displayed-with-custom-post-types/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/plugin-role-scoper-comments-are-not-displayed-with-custom-post-types/#post-1790326)
 * I too tried this solution. My wife has a blog at earth2mama.com, using one of
   ElegantThemes.com’s custom themes. It uses all “custom post types”, and the comments
   were showing only for the admin account. There is a members-only section, which
   is all I’m using Role Scoper for. I can’t see anything else broken… but am leery
   something is amiss from utilizing this hack.
 * Let me know if there is a better solution or if more information can help you
   troubleshoot. Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Dynamic Headers] Default theme](https://wordpress.org/support/topic/plugin-dynamic-headers-default-theme/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/plugin-dynamic-headers-default-theme/#post-1158984)
 * I think I figured out how to get this plugin to do what many others (like myself)
   are trying to do, with pretty minimal work. The problem I was having was that
   while Option 1 seemed easiest (and the only way I could actually figure out how
   to get the image to show up at all!), the flexibility of option 2 would be nice–
   to be able to add styles and whatnot. Here’s my simple fix. Go to the plugin 
   folder and open the custom-header.php file. Scroll down to about line 360 where
   the following line is:
    `echo '<img src="'.$dhnd_image_url_base.$load_this_media.'"
   alt="'.$dhnd_alt_tag.'" title="'.$dhnd_alt_tag.'" />';`
 * Add the following before the closing tag `/>'";` part:
    `id="logo"`
 * Instead of logo, use whatever id you want. Then simply place CSS info in your
   stylesheet for how that should behave. That, combined with the physical placement
   of the initial call code (as defined in Option 1 in the directions), should allow
   you to place the image/header/logo wherever you want!
 * Hope that helps someone.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: WordPress Popular Posts] Template does not work in v2.0](https://wordpress.org/support/topic/plugin-wordpress-popular-posts-template-does-not-work-in-v20/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-popular-posts-template-does-not-work-in-v20/#post-1346275)
 * Where can I get 1.51? I too would like to revert as the plugin is now effectively
   broken for me.
 * edit: nevermind, found it. Go to plugin page on wordpress and click “other versions”
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [rss feed from page with html?](https://wordpress.org/support/topic/rss-feed-from-page-with-html/)
 *  [Gustave F. Gerhardt](https://wordpress.org/support/users/ghosttoast/)
 * (@ghosttoast)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/rss-feed-from-page-with-html/#post-982090)
 * I am having the same problem at
 * [http://www.aurorafcs.org/?feed=rss2](http://www.aurorafcs.org/?feed=rss2)
 * or
 * [http://www.aurorafcs.org/wp-rss2.php](http://www.aurorafcs.org/wp-rss2.php)
 * I am getting all my html basically after the RSS. And not sure how maybe I could
   edit a file to avoid this from happening. My site was also pre-existing with 
   wordpress integration later on. I can add feeds to google reader just fine, but
   can’t get them to validate here. Any help would be appreciated.

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