Gustave F. Gerhardt
Forum Replies Created
-
Forum: Reviews
In reply to: [FancyTabs] Exactly what i neededThanks! Glad it still works after all these years lol
Forum: Plugins
In reply to: [FancyTabs] Use ajax?I do not have a demo setup anywhere that is accessible. It does not use ajax. It merely shows and hides
<div>sForum: Plugins
In reply to: [FancyTabs] Fancy tabs don't accept shortcodesI will try to look into it when I find time
Forum: Plugins
In reply to: [Post Types Order] Conflict with gallery orderAdding 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
In reply to: [Post Types Order] Conflict with gallery orderBy the way, admin autosort is not enabled
Forum: Plugins
In reply to: [Post Types Order] 'menu_order' not reordering itemsActually, 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
In reply to: [Post Types Order] 'menu_order' not reordering itemsI 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
In reply to: [FancyTabs] [Plugin: FancyTabs] Inline CSSI 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
In reply to: [Username Changer] Invalid usernameUpdate:
In thewp_userstable 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.
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://. This is a custom menu item.
Edit: this is happening on elements referenced within the content as well (links to other sites)
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Centering buttonsJLeuze, 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; }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
In reply to: [Plugin: Dynamic Headers] Default themeI 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
In reply to: [Plugin: WordPress Popular Posts] Template does not work in v2.0Where 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
In reply to: rss feed from page with html?I am having the same problem at
http://www.aurorafcs.org/?feed=rss2
or
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.