David Cavins
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Docs] Great ! Except for incompatibilitiesIs Grimlock a paid theme from Themosaurus? If so, I can’t help you troubleshoot it. Have you asked the theme provider if they have any idea why BP Docs would be adding a section on a page that doesn’t include BP Docs? The only thing I can think of is if the the theme uses a very generic hook name, or reuses a core WP hook name.
Forum: Reviews
In reply to: [BuddyPress Docs] Great ! Except for incompatibilitiesThanks for your feedback. Did you resolve the issue with Grimlock?
Forum: Plugins
In reply to: [BuddyPress Docs] Document list folder colorSure, this CSS rule will make the folder a lovely shade of pink:
.bpdocs-container .folder-toggle-link {
background-color: #fab;
}Unless the theme you are using is overriding the BP Docs styles, this should get it done.
Forum: Plugins
In reply to: [BuddyPress Docs] Redirection of doc creation page (for non logged in)Hi, I’d try to use WP’s
login_urlfilter, which is documented here.
https://developer.ww.wp.xz.cn/reference/functions/wp_login_url/It looks like you’re using a plugin or some custom code that already filters it somewhat, since your login screen is hosted on WP.com instead of on your local site. That could complicate things, but that core filter is where I’d start looking.
Forum: Plugins
In reply to: [BuddyPress Docs] BuddyPress Docs – PaginationSure, check out the filter
bp_docs_paginate_linksat https://github.com/boonebgorges/buddypress-docs/blob/master/includes/templatetags.php#L1364Check out the
end_sizeargument ofpaginate_links: https://developer.ww.wp.xz.cn/reference/functions/paginate_links/Forum: Plugins
In reply to: [BuddyPress Docs] Delete attachment?Thanks for the update!
Forum: Plugins
In reply to: [BuddyPress Docs] no more access to revisionsEnsure that you revisions enabled in your WP Admin settings.
https://ww.wp.xz.cn/documentation/article/revisions/Forum: Plugins
In reply to: [BuddyPress Docs] Changing ‘docs’ to ‘pages’Have you tried changing the defaults on the BP Docs settings screen? It is available at WP Admin > Docs > Settings, or
/wp-admin/edit.php?post_type=bp_doc&page=bp-docs-settingsForum: Plugins
In reply to: [BuddyPress Docs] 404 errors with BuddyBossHi, sorry, we can’t debug issues with BuddyBoss. Have you asked their team?
Forum: Plugins
In reply to: [BuddyPress Docs] Create Doc failureI should also add that https://localwp.com/ is a great tool for building test environments on your local machine.
Forum: Plugins
In reply to: [BuddyPress Docs] File-type and weightBP Docs uses the site’s settings for this, so if you change the allowed file types and size, BP Docs will respect that. There are many plugin that can help you make changes to your media allowances, or you can use the filter hooks provided by WP and write something yourself.
Forum: Plugins
In reply to: [BuddyPress Docs] Create Doc failureIt sounds like you have a good idea of what to test. If disabling the questionable plugins on your production site (even temporarily) is out of the question, then it sounds like you could use a development site to tinker with.
Is there a freely available theme that results in the same issue? Thanks!
Forum: Plugins
In reply to: [BuddyPress Docs] is there a problem with buddypress v14 or BBpressHmm, I’m not seeing your issue with BP 14. I sort of suspect a theme conflict. What theme are you using? Thanks!
Forum: Plugins
In reply to: [BuddyPress Docs] Disable Docs from group’s Manage screenSure, you can change the navigation using BP navigation API: https://codex.buddypress.org/developer/navigation-api/
Are you wanting to have Docs enabled for groups but not allow the group admins to manage the settings? I’m trying to understand your use case. Thanks!