Zach Schnackel
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Current Download Version is wrong.I suggest you read the description on the plugin’s page again – not hosted here for the time being.
Forum: Plugins
In reply to: [Roots Plug] Still have some absolute URLs after installingHi Tony,
Hm, that is a bit odd as I haven’t run across that issue myself. I’m going to be working on updating Roots Plug shortly to be more in-line with the latest release of the Roots Theme – so hang tight and see if that helps. Thanks!Forum: Plugins
In reply to: [W3 Total Cache] W3 wont activate on networkCurrent version doesn’t support multisite. Next version is said to support this (in BETA), but it’s been quite some time since I’ve seen any chatter about that.
Very cool! Here’s the final result: http://pastebin.com/huke6FNe
For everyone else (which I’ll be doing as well), just pass in that $replace_var via something more dynamic (like a plugin option) so you can change that from site to site.
Thanks again Mikko!
Hi Mikko,
Emailed through regular support (with developer version license). Thanks.Hi Mikko,
Thanks for the response. Here’s what I have so far: http://pastebin.com/baA6KxFbBut after I have the “new_search” variable, I’m not sure how to plug it into wp_query and also change the operator to OR. Would you be able to help me hook that part up? I’d really appreciate it – will be buying the developer version once I know this part works as needed. Thanks!
Forum: Fixing WordPress
In reply to: Front-End Filters for custom fields/meta informationYup, I used this tut to help me along. Then, it’s just a matter of passing in those query vars via form function, like:
<section id="sort"> <form name="search" action="" method="get"> <select name="sort"> <?php $mouldings_sort_options = array( '_mouldings_dimensions_height' => 'Height', '_mouldings_dimensions_width' => 'Width' ); $sort = !empty($_GET['sort']) ? $_GET['sort'] : ''; foreach ($mouldings_sort_options as $key=>$value) { echo '<option value="' . $key . '" ' . selected( $sort, $key ) . '>' . $value . '</option>'; } ?> </select> <select name="order"> <?php $mouldings_order_options = array( 'DESC' => 'Descending', 'ASC' => 'Ascending' ); $order = !empty($_GET['order']) ? $_GET['order'] : ''; foreach ($mouldings_order_options as $key=>$value) { echo '<option value="' . $key . '" ' . selected( $order, $key ) . '>' . $value . '</option>'; } ?> </select> <?php if (!is_tax('wood_types') || (is_tax('wood_types') && isset($wp_query->query_vars['profile_categories'])) || (is_tax('wood_types') && isset($wp_query->query_vars['combination_categories']))) { ?> <select name="wood_types"> <?php $mouldings_wood_types_options = get_terms('wood_types'); $wood_types = !empty($_GET['wood_types']) ? $_GET['wood_types'] : ''; echo '<option value="">All</option>'; foreach ($mouldings_wood_types_options as $key) { echo '<option value="' . $key->slug . '" ' . selected( $wood_types, $key->slug ) . '>' . $key->name . '</option>'; } ?> </select> <?php } ?> <input type="submit" value="Show/Filter" /> <span class="reset"><a href="<?php echo remove_query_arg(array('sort','order','wood_types')); ?>">Reset</a></span> </form> </section>That’s from a plugin I’m using (you can sort by a custom field that contains the height or width, in ascending or descending order and also filter by a custom taxonomy). I do however need to look back and sanitizing the $_GET value though (as at its current state, that would be a security issue).
Forum: Plugins
In reply to: [Search Everything] [Plugin: Search Everything] Fixed IssuesYup, would love to see what you did. Thanks.
Forum: Alpha/Beta/RC
In reply to: Media > Upload Folder missingAh nice – thanks!
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Publish to fan page setting Disabled.
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Publish to fan page setting DisabledNot that you guys/gals need another +1… but +1 here as well. Thanks!
Forum: Plugins
In reply to: [Facebook] Facebook Plugin – no option to clear storage on uinstall+1
One more feature request — a filter on the Media Library tab in the modal pop-up box by Media Category would be fantastic!
Just wanted to say I’m pretty excited to see where this goes — trying to use it in conjunction with Advanced Custom Fields is causing some issues (as you mentioned in your upcoming feature list — fixing the formatting bug and also when selecting on a repeater field — it is not recognizing the selected items).
What would be especially useful is to create a hook to pre-select categories based on things like post type (for example — if using ACF, when uploading an image, they would default to a specific category based on a post type instead of having the user manually edit the image and select it).
Thanks!