AdrianB
Forum Replies Created
-
Forum: Plugins
In reply to: [Breadcrumb NavXT] Missing field “id” in Breadcrumbs on Google Search Console@trishak Yes, Breadcrumb NavXT is a plugin and this is the support forum for that plugin. Scroll to the top and see for yourself.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Missing field “id” in Breadcrumbs on Google Search ConsoleIt’s not a “code thing” if you’re taking about theme or plugin code. It is a setting in Breadcrumb NavXT.
Forum: Plugins
In reply to: [iOS images fixer] Option to change capability?Thanks!
Ok, I kind of suspected that, because I couldn’t find any other solution. Anyway, thanks for the fast answer!
Forum: Plugins
In reply to: [WP Visual Sitemap] Support for custom post types, taxonomies?Only WordPress-pages is probably enough for most users, I would guess. In my case though I need some additional pages, like the options available in this plugin (but your sitemap look so much better). Anyway, thanks for a great and easy to use plugin.
Forum: Plugins
In reply to: [The Events Calendar] PHP Fatal error with 4.6.9 on some sitesYes, I know about pagination issues and $wp_query, fortunately for me there were no pagination used in my case, so I did not have to work that out.
Forum: Plugins
In reply to: [The Events Calendar] PHP Fatal error with 4.6.9 on some sitesBased on the thread posted by @nickfmc above I re-wrote the code so
$wp_query = null;was no longer used and then I could update TEC to 4.6.9 without errors.Forum: Plugins
In reply to: [The Events Calendar] PHP Fatal error with 4.6.9 on some sitesThank you, now I know what to look for in my theme.
Forum: Plugins
In reply to: [WP Help] Allowing all users to see the menuDigging through the code of the plugin I found a filter called
cws_wp_help_edit_documents_capthat I used to change the role of who can edit the help pages, like this (I didn’t want editors to be able to edit help pages):// Change which capability is required for publishing posts in WP Help function adrianb_wp_help_change_cap( $publish_posts ) { return 'activate_plugins'; // activate_plugins is something only adminsistrators can do } add_filter( 'cws_wp_help_edit_documents_cap', 'adrianb_wp_help_change_cap', 10, 1 );There is also a filter for view capabilities,
cws_wp_help_view_documents_cap, that I would guess could be used in the same manner as above to adjust who can view the pages, but I haven’t tested it.Forum: Plugins
In reply to: [Nested Pages] Multisite issuesI’ve seen issues on multisite as well, especially nr 2 above. When I make changes the sync indicator spins and seems to work but the menu is not synced.
Forum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] Polylang compatibilityI second this request.
Forum: Plugins
In reply to: [Media Library Assistant] Warning: Parameter 2 to MLAQueryYes, I’m using PHP 7.1.3 and yes, the the Development Version solved it!
- This reply was modified 9 years, 4 months ago by AdrianB.
Forum: Plugins
In reply to: [Media Library Assistant] Warning: Parameter 2 to MLAQueryI’m seeing this as well. This is the call stack:
apply_filters_ref_array('posts_search') wp-includes/class-wp-query.php:1995 WP_Query->get_posts() wp-includes/class-wp-query.php:3238 WP_Query->query() wp-includes/class-wp-query.php:3347 WP_Query->__construct() wp-content/plugins/media-library-assistant/includes/class-mla-data-query.php:1144 MLAQuery::_execute_list_table_query() wp-content/plugins/media-library-assistant/includes/class-mla-data-query.php:364 MLAQuery::mla_count_list_table_items() wp-content/plugins/media-library-assistant/includes/class-mla-list-table.php:1965 MLA_List_Table->prepare_items() wp-content/plugins/media-library-assistant/includes/class-mla-main.php:1494 MLA::mla_render_admin_page() wp-includes/class-wp-hook.php:298 do_action('media_page_mla-menu') wp-admin/admin.php:222Forum: Plugins
In reply to: [Multisite Post Duplicator] Setting the limitSorry, no. If your issue is that you only get 100 sites, then there is only one place where
wp_get_sites()is called AFAIK, so I don’t see any other way to change the limit but that $args array.Forum: Plugins
In reply to: [Multisite Post Duplicator] Setting the limit@ihackinjosh If you just want to do a quick hack of the plugin you could try change line 635 of inc/mpd-functions.php from this:
$args = array('network_id' => null);
to something like this (in this case setting the limit to 250 sites):
$args = array('network_id' => null, 'limit' => 250);
This is untested, I don’t have my original change around, but I assume it was something like that.@magicstick Sorry for not getting back, I said I was going to test the new version, but I still have not done that. (I only needed the change for a little while, and I’m not using the plugin actively at the moment.)
- This reply was modified 9 years, 6 months ago by AdrianB.