Oct 11, 2019 10:11 am
Hello. I'm rarara.
When searching by tag in the sidebar, it is not searched correctly.
For example, a word like “C#”.
The link will look like this:
https://xxxx/?wpfin=tag&wpfs=C#
It should be as follows:
https://xxxx/?wpfin=tag&wpfs=C%23
The solution is to change the location where the link string is created, for example, as shown below.
functions-template.php
<? php echo wpforo_home_url (). '? wpfin = tag & wpfs ='. $ tag?> ">
↓
<? php echo wpforo_home_url (). '? wpfin = tag & wpfs ='. urlencode ($ tag)?> ">
2 Replies
Oct 11, 2019 12:28 pm
Thank you for letting us know.
The issue will be fixed in the next version release.
Oct 13, 2019 3:23 am
Thank you very much. I will do my own modification until the version upgrade.