david-o-hara
Forum Replies Created
-
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Conditional Dropdown Values Issue v2.2.1The ‘All Taxonomy’ option is removed from ALL dropdowns when an option is selected.
- This reply was modified 7 years, 11 months ago by david-o-hara.
Forum: Plugins
In reply to: [Search Everything] pictures attachments show in search results !!!I also have this issue in the latest version.
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Cannot order select fields using APIResolved using:
function moveElement(&$array, $a, $b) {
$out = array_splice($array, $a, 1);
array_splice($array, $b, 0, $out);
}
function custom_tax_ordering($taxonomies, $current_post_type){
moveElement($taxonomies, 4, 0);
moveElement($taxonomies, 4, 2);
moveElement($taxonomies, 4, 3);
return $taxonomies;
}
add_filter(‘beautiful_filters_taxonomy_order’, ‘custom_tax_ordering’, 10, 2);Forum: Plugins
In reply to: [Beautiful taxonomy filters] Missing argument 2 for custom_tax_ordering()Can you explain how moveElement($taxonomies, 3, 0); allows us to rearrange the filters?
Forum: Plugins
In reply to: [Beautiful taxonomy filters] Activating plugin errorThis was an issue caused by disabling a custom post types/taxonomies plugin – and therefore this was generating errors/notices as it couldn’t find the taxonomies.
Forum: Fixing WordPress
In reply to: Multiple PHP errors after WP 4.6.1 & plugins upgrade*Touch wood* I have fixed this by upgrading from PHP 5.4 to 5.6
Forum: Fixing WordPress
In reply to: Multiple PHP errors after WP 4.6.1 & plugins upgradeThat cleared up and now it is: Fatal error: Call to undefined function wp_edit_posts_query() in /home/xxxx/public_html/xxxx/wp-admin/includes/class-wp-posts-list-table.php on line 142
Sorry for the multiple posts but cant seem to edit a post.
Forum: Fixing WordPress
In reply to: Multiple PHP errors after WP 4.6.1 & plugins upgradeAfter posting this I have just refreshed and have a white screen with the error:
Fatal error: Call to undefined function wp_prepare_themes_for_js() in /home/xxxx/public_html/xxxx/wp-admin/themes.php on line 123
Forum: Fixing WordPress
In reply to: Multiple PHP errors after WP 4.6.1 & plugins upgradeThe difficulty right now is that the admin area has everything enabled and has no error messages at all no matter where I go (they were all there 30 mins ago), I just know they will be back at some point. I have no idea what is triggering it.