BasePress
Forum Replies Created
-
Hi @slovensko,
the Knowledge Base title in the Modern theme can be changed from the theme settings: BasePress > Modern Theme > Header title.
If you need to have a different title for each page you can also use this hook:add_filter( ‘basepress_modern_theme_header_title’, function(){
$title = ‘your title here’;
return $title;
}, 20 );I hope this helps but if you need further help let me know!
Hi,
please go to BasePress > Settings > Search and disable the Use search parameter on URL option.
Does that make it work?
If you can open a support ticket from the plugins menu I can guide you to some tests to find out what is not working.Thanks
Hi @micahjsharp,
have you managed to isolate any conflicting plugin?
Do you need any further help with this?Thanks
Hi,
if you are testing the plugin on a dev/staging site, I would suggest to first disable all other plugins and temporarily switch to a default WordPress theme.
If the search starts to work as it should, you can go back to your WordPress theme and reactivate the plugins one at the time until the issue reappears.
You can then let us know which one causes the issue and we can test it out for you to resolve the conflict.Thanks
Hi @micahjsharp,
is possible for you to share a link to KB in the staging server so I can take a look at it?
Thanks
Forum: Reviews
In reply to: [Knowledge Base documentation & wiki plugin - BasePress Docs] JUST PERFECTHappy you like the plugin!
I appreciate every word of your comment!Hi @jhnpldng,
Thanks for your review!
The issue with the import/export is caused by WordPress export which ignores parent taxonomy terms when a single custom post type is exported.
BasePress KBs are parent terms for sections so due to the shortcoming of WordPress export the hierarchy breaks when exported.
That said I must agree with you that this is an important feature so a dedicated import/export is already in development. When ready it will released as a free add-on on ww.wp.xz.cn.Thanks again!
Forum: Reviews
In reply to: [Knowledge Base documentation & wiki plugin - BasePress Docs] Works wellThanks Michael for taking the time to share your experience with BasePress!
Hi Lisa,
I am happy I could help!
If you find the plugin useful please consider sharing your opinion leaving a review.Have a nice day!
Hi @lisajong,
I see you are using the BasePress Modern theme. You can find extra settings for it under BasePress > Modern Theme. In that settings page you can change the default heading title and a few more options to fine tune the theme.
For example you can also make the KB header stretch full width, change its colour and move it upwards to get in line with your main site header.I hope this helps but if not just let me know!
Thanks for taking the time to share your opinion @fullworks,
Really appreciated!great catch!
Happy you got it working.
Thanks for letting me know!Hi,
The simplexml_load_file() function should be included since PHP 5.
if you still get the same error about SimpleXML then the module might be installed but not enabled.
You may want to check with your hosting provider why that module and its function is not enabled.
You may also want to have a look at the documentation for simplexml and how to get it installed and enabled in the server: https://www.php.net/manual/en/simplexml.installation.phpAlso you can create a file in your server called php-info.php with just this line inside:
<?php phpinfo(); ?>
Then access the file from your browser: your-domain.com/php-info.php
It will show a list of all installed and enabled modules. Search for SimpleXML and check if it says enabled.
I hope this helps!
Hi @lhalbert18,
simplexml is a PHP extension that is normally enabled by default but it can be disabled.
You may want to check if the extension is installed on your server or it needs to be enabled.
I’ll make sure to prevent the error if the simplexml extension is not present but it would still be necessary for the plugin to work properly.
If you have any other question let me know.