BasePress
Forum Replies Created
-
Hi,
Could you also please tell me if you are using any plugin to change permalinks and which one so I can test it for compatibility?
Thanks
Hi there,
can you please try adding this hook to your functions.php and let me know if that fixes it?
add_filter( ‘basepress_redirect_301_enabled’, ‘__return_false’ );
The odd thing about the redirect is that it points to a different post type from another KB plugin.
Thanks
Hi @daviddumonde,
Tags are not supported at this time.
BasePress posts (called articles) are like any WordPress post so yes you can use Gutenberg blocks in the pages.Thanks
Hi,
That’s great!
I hope you’ll enjoy using BasePress!Hi @anjanphukan,
the Modern theme doesn’t output the description in the other pages but we can customise that.
Please follow the instructions on this article on how to customise the templates: https://codesavory.com/knowledge-base/basepress/basepress-themes/customise-theme/The files you want to change are:
single-section.php
two-columns-right.php
two-columns-left.php
full-width.phpIn those templates you can just add the following line after the title inside the header tag:
<p><?php echo $bpkb_knowledge_base->description; ?></p>If you have problems doing this let me know and I’ll prepare the files for you.
Thanks
- This reply was modified 6 years, 7 months ago by BasePress.
Hi @thillcafex,
the extended content restriction is kind of ready.
I am still running the last tests but it should be release within few days, next week max.Thanks
Hi,
I have not received any reply on this for a few days so I’ll close the ticket.
If you still need help you can always open a ticket from the plugin menu.Thanks
Forum: Reviews
In reply to: [Knowledge Base documentation & wiki plugin - BasePress Docs] Simply The BestHi @jmbronson!
Thanks to your request the next coming release of BasePress will include an improved breadcrumbs with the option to add the home and/or parent page to the breadcrumbs.
Thanks for the suggestion!Hi @jmbronson,
at the moment it is not possible to customise the breadcrumbs but I’ll add this to the list of improvements!
That said if you could open a support ticket from within the plugin I’ll send you a custom breadcrumb function to add the home and parent page.Thanks
Hi Marcos,
If you could tell me why you need to remove the get_footer call maybe we can see if what you want to achieve is possible.
Removing the get_footer call means that the footer template from your theme is not called. That could easily break a site.Thanks
Hi Marco,
since version 2.4.1 there is an option under Settings>Aspect called “Skip loading of header and footer”. This would skip both though.
If you only want to skip the footer you could create an empty file called footer-basepress.php and place it in your theme’s folder.That should give you the same effect of removing the call and it should be the quickest solution.
Alternatively you can customise BasePress theme as explained here:
https://codesavory.com/knowledge-base/basepress/basepress-themes/customise-theme/
and remove the call from the templates.I hope this helps!
Hi @thillcafex,
I am happy you have found a way around this!
That said, there is no need to change the plugin’s code to do that.
You can easily add category support to the knowledge base adding this code to your theme’s functions.php:function add_categories_to_knowledgebase(){ register_taxonomy_for_object_type( 'category', 'knowledgebase' ); } add_action( 'init', 'add_categories_to_knowledgebase' );You can find more info here.
Hi,
categories(a taxonomy) are by WordPress default limited to Posts(a post type) only.
BasePress uses a custom taxonomy called “knowledgebase_cat” and a custom post type called “knowledgebase”.
If the subscription plugin can work with custom post types and taxonomies then they should be able to work with BasePress.
If the subscription plugin needs you to access the default WordPress taxonomy screen you can do that by visiting the Sections edit screen, click on the pencil icon to edit a section and at the bottom of the panel that opens click on “View more”.That being said, BasePress Premium as a content restriction feature which allows you to specify which user can view any article. This is done via user roles.
https://codesavory.com/knowledge-base/basepress/features/content-restriction/While at the time of writing the content restriction works on articles only it would be soon extended to manage whole sections and Knowledge Bases as well.
This does not include notifications though.I hope this helps!
Hi Tian,
out of the box BasePress uses icon fonts. It comes with a default font but you can use the included Icons Manager to use any icon font.
This means that apart from using any icon font you may find online you can create your own. There are some online apps to create your own fonts.
You can find instructions on how to use the Icons Manager here: https://codesavory.com/knowledge-base/basepress/features/icons-manager/That said if you want to use svg or png you will have to add a custom field for the sections and articles to store the custom icon and you would need to customise the templates to use them. It is definitely possible but it requires some customisation from your part.
I hope this answers your question!