Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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)?> ">
Thank you for letting us know.
The issue will be fixed in the next version release.
Thank you very much. I will do my own modification until the version upgrade.