abqdanj
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Post List] http error 500 in Dashboard after APL Update to 0.4.2.Update: I managed to get the Admin dashboard back by deleting the advanced-post-list folder in the wp-content/plugins directory. Where would I find the previous release of Advanced Post List?
Forum: Plugins
In reply to: [Advanced Post List] Upgrade 0.4.1 – Lost Taxonomies on all Post ListsThank you for your efforts. I love the plugin – it does what it does very well and is critical to our project.
Forum: Plugins
In reply to: [ZigDashNote] WordPress 4.4 Compatibility Issue?Problem resolved with ZigDashNote plugin update to 0.3.9.
Thanks!
That did it, Thank you! I see my mistake now. I used the “Name” label of the Taxonomy rather than what I actually used to register it.
Thank you again for being so responsive. I believe you have gone beyond expectations for a free plugin!
Dan
This is the shortcode used:
[related_posts_by_tax exclude_terms=”8,10,12,13,14,15,16,17,18,19,20″ title=”Related Documents” ]function source_document_event_taxonomy() { $labels = array( 'name' => _x( 'Events', 'Taxonomy General Name', 'text_domain' ), 'singular_name' => _x( 'Event', 'Taxonomy Singular Name', 'text_domain' ), 'menu_name' => __( 'Source Document Event', 'text_domain' ), 'all_items' => __( 'All Events', 'text_domain' ), 'parent_item' => __( 'Parent Event', 'text_domain' ), 'parent_item_colon' => __( 'Parent Event:', 'text_domain' ), 'new_item_name' => __( 'New Event Name', 'text_domain' ), 'add_new_item' => __( 'Add New Event', 'text_domain' ), 'edit_item' => __( 'Edit Event', 'text_domain' ), 'update_item' => __( 'Update Event', 'text_domain' ), 'separate_items_with_commas' => __( 'Separate events with commas', 'text_domain' ), 'search_items' => __( 'Search Events', 'text_domain' ), 'add_or_remove_items' => __( 'Add or remove Events', 'text_domain' ), 'choose_from_most_used' => __( 'Choose from the most used Events', 'text_domain' ), 'not_found' => __( 'Not Found', 'text_domain' ), ); $rewrite = array( 'slug' => '', 'with_front' => false, 'hierarchical' => false, ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => false, 'show_in_nav_menus' => true, 'show_tagcloud' => true, 'rewrite' => $rewrite, ); register_taxonomy( 'event', array( 'page' ), $args ); }
Thank you for the wonderful support!
Sorry, missed the second question again. I registered the taxonomy in the functions.php in my child theme.
That Workes! It seems to be a viable workaround. Do you see any problems using that approach?
Sorry, I missed the second question. No, I’m not using any filters for Related Posts.
I removed the argument and no change. Still no related documents.
I placed it in the code and the ID is available and correct.
Forum: Themes and Templates
In reply to: Blank Pages After Updating Twenty Eleven Theme to 2.1Done and all looks clean on Twenty Eleven 2.1. Thanks for your speedy support!
Forum: Themes and Templates
In reply to: Blank Pages After Updating Twenty Eleven Theme to 2.1Thanks, Otto! I downloaded a fresh copy of twentyeleven, unzipped and ftp’d it to the wp-content/themes directory after renaming the twentyeleven 2.0 folder. Everything seems to work, the WordPress “Updates” page on the Dashboard now shows all themes are up to date. However, when I go to “Appearance-Themes” on the Dashboard and check “Theme Details” it shows that I have “Twenty Eleven Version: 2.0” installed (it does Not have a link to upgrade). Should I worry or just call it resolved?
Forum: Plugins
In reply to: [Vertical News Scroller] News Content Truncated on Chrome and IE BrowsersThanks, but unfortunately that did not fix it. Howerver, after messing with Inspect Element in the Chrome browser, I found that adding:
.news-container ul { position: relative !important; }
corrected the problem. I suspect that some other plugin may have set “position: absolute” which caused the problem, but I’m not knowledable enought in css to determine what was causing the inheritance.