MH
Forum Replies Created
-
These new changes are the WORST. What a complete mess of an interface. WTF is “Allow users to create new iThemes Security Dashboards” supposed to mean?
Just a data point, no idea if this will help anyone: I was repeatedly getting this error when trying to update a specific page. Updating Permalinks didn’t fix it. The error seemed to be caused by a paragraph containing the word “database(s)”. When I changed it to just “databases”, I stopped getting the error.
Oh yes, that fixed it. I hadn’t noticed that Options page. Thanks so much for the quick reply!
I’m trying to use v3.0.0-beta3 and am running into problems. I’m using Font Awesome 5.3.1 and ACF Pro 5.7.7.
I’ve set the Return Value as “Icon Class”, but it only returns the (for example) “fa-calculator” class, and not the “fas” or “far” class that is meant to go with it. But I need that other class as well, to display the icon properly.
The reason I’m returning “Icon Class” and not “Icon Element” is because I want to add additional classes to the element, such as “fa-fw fa-2x fa-pull-left”.
Is there any workaround, or should I wait for an update?
Forum: Plugins
In reply to: [ImageMagick Engine] [Plugin: ImageMagick Engine] Scaling off by 1 pixelThis is happening for me as well. WordPress is generating a file called “Image-138×85” that is actually 137 x 85 pixels. I used the fix that shirshir posted and it is working properly now.
Forum: Plugins
In reply to: [SB Uploader] [Plugin: SB Uploader] Panel not showing up after 3.5 updateI took a look at sb_uploader.php, and it looks like the priority for custom post types is set to ‘normal’ instead of ‘core’ like for posts and pages. If I change it to ‘normal’ everything works properly.
As a side request, can you make it so that we can change the ‘Upload an image’ text above the file upload box? I am using the plugin to allow users to upload PDFs, so the text is confusing.
Thanks!
Forum: Plugins
In reply to: [WordPress Instant] [Plugin: WordPress Instant] not workingSame problem here, not working for me either.
Forum: Fixing WordPress
In reply to: Exclude posts in child taxonomies from custom taxonomy querySolution found here. Here is the code I used, placed above the Loop in index.php:
// if is taxonomy query for 'collections' taxonomy, modify query so only posts in that collection (not posts in subcollections) are shown. if (is_tax()) { if (get_query_var('collection')) { $taxonomy_term_id = $wp_query->queried_object_id; $taxonomy = 'collection'; $unwanted_children = get_term_children($taxonomy_term_id, $taxonomy); $unwanted_post_ids = get_objects_in_term($unwanted_children, $taxonomy); // merge with original query to preserve pagination, etc. query_posts( array_merge( array('post__not_in' => $unwanted_post_ids), $wp_query->query) ); } }
Forum: Alpha/Beta/RC
In reply to: WP 3.0 development vs. productionI’ve been using WordPress 3.0 beta for a couple of projects that use custom post types, and it’s been rock solid and really great to work with. I’ve come across a plugin or two that doesn’t work, but for the most part the new features replace most of the functionality I was using plugins for, anyway. For example, I was previously using Magic Fields to create custom post types, but WordPress does this natively now, and it’s fairly easy to implement.