# |
Post Title |
Result Info |
Date |
User |
Forum |
|
RE: Is there any SQL command to change tags in the database, so all tags saying "super funny cars" become "funny cars"?
|
19 Relevance |
5 years ago |
Tutrix |
How-to and Troubleshooting |
|
@mplusplus
for table wp_wpforo_topics
update wp_wpforo_topics set tags =replace(tags,'super funny cars','funny cars');
for table wp_wpforo_tags
update wp_wpforo_tags set tag =replace(tag,'super funny cars','funny cars'); |
|
Is there any SQL command to change tags in the database, so all tags saying "super funny cars" become "funny cars"?
|
19 Relevance |
5 years ago |
mplusplus |
How-to and Troubleshooting |
|
Hi there
Is there any SQL command to change tags in the database, so all tags saying "super funny cars" become "funny cars"?
Thank you. |
|
When users add tags, how to block certain words from being added as tags?
|
19 Relevance |
5 years ago |
mplusplus |
How-to and Troubleshooting |
|
Hi there
When users add tags, how to block certain words from being added as tags, please?Is there any free or paid plugin, for this?
Thank you. |
|
RE: Change tags color
|
18 Relevance |
3 months ago |
Sofy |
How-to and Troubleshooting |
|
@lux
And when i do hover in the tooltip tag?
Here is the code you can use:
#wpforo #wpforo-wrap .wpf-tags a:hover {background-color: #00A59D !important;}
#wpforo #wpforo-wrap .wpf-tags a:before {
border-color: transparent #00A59D transparent transparent !important;
}
The tags in this url: show a border right: white...
You can remove it using the CSS code below
#wpforo #wpforo-wrap .wpforo-search-wrap .wpforo-search-content td.wpf-shead-icon {border:none} |
|
Problem with adding tags
|
18 Relevance |
9 months ago |
Roel Developer |
General Discussions |
|
When I try to add tag to a topic, this dropdown shows up.
Attachment : tags.jpg |
|
Tags only from admin?
|
18 Relevance |
2 years ago |
wanderingrayven |
How-to and Troubleshooting |
|
Is there a way to make sure the creation of tags is only available to admin or moderators. I still want my posters to be able to ADD tags but I want them to be able to only pick from existing tags or be provided an admin approved list. Similar websites to this would be Reddit where there is post "flair" that is different per board/forum (subreddit). Or any StackExchange forum has a similar option. |
|
RE: Need a way to strip html tags from posts before saved
|
18 Relevance |
2 years ago |
BlackRaz |
How-to and Troubleshooting |
|
"Hi @nomadic,
Yes, wpForo has filter hooks for changing the allowed HTML tags for posts.Here is our filter for allowed HTML tags. You can add your custom function to our filter hook to manipulate the allowed HTML tags."
$allowed_html = apply_filters( 'wpforo_kses_allowed_html', $allowed_html ); |
|
Issue related to tags
|
18 Relevance |
2 years ago |
essam |
How-to and Troubleshooting |
|
Hello
i have arabic forums and we have an issue with using topic tags ,
Wpforo prgrammed to use comma in english " , "
to separate tags but in arabic keyboard we use : ،
As acomma
so how to make "،" works for our arabic language , for tags words in arabic can u fix it plz , in next version , and give ys temporary resolving
thank u 🌹 |
|
RE: Hide Adding Topic Tags Form on a Specific Forum?
|
18 Relevance |
3 years ago |
CurtisB |
How-to and Troubleshooting |
|
Ah, I believe I figured out the solution or at least a workaround:
wpForo > Accesses > "Add New Forum Access"
Use all the same selections as "Standard access" but deselect "Can add tags"
Save it as "Standard access (No Tag Adding)" or something like this
wpForo > Forums > click "edit" (pencil icon) on Forum you don't want tags to be added on
Under "Forum Permissions" on the bottom right, select the Wordpress user roles you don't want to be able to add tags, and change it from "Standard access" to your new permission ("Standard access (No Tag ... |
|
Hide Adding Topic Tags Form on a Specific Forum?
|
18 Relevance |
3 years ago |
CurtisB |
How-to and Troubleshooting |
|
Is there any way to hide the field where a user can enter "Topic tags" when creating a post on a specific forum?
I love using "Topic tags" in my "General Discussion" forum for people to ask questions, etc. But in my "Introduce Yourself" forum that is just for people coming in to introduce themselves as new members, I find it a little awkward trying to explain why they don't need to enter topic tags there — it's just confusing for them.
I would love to be able to hide them in this one forum but keep them in the other(s). |
|
RE: Topic tags counter not working
|
18 Relevance |
4 years ago |
Robert |
How-to and Troubleshooting |
|
@tmrques21,
All works fine in your forum. I don't see tags with 0 count. Maybe that was a specific case but at the moment all works fine. We've just created a test topic, all tags are attached correctly, and all counts are changed correctly, so this topic could be closed: |
|
RE: How tod disable SEO meta tags from wpForo
|
18 Relevance |
4 years ago |
sheerazraza |
How-to and Troubleshooting |
|
If anyone knows function code to disable meta tags from Yoast SEO only on wpForo, do share it here. |
|
RE: How to fix this JavasScript to change the sequence of div tags on my webpage?
|
18 Relevance |
4 years ago |
Tutrix |
General Discussions |
|
@carlislemeyer
same question with a different username
How to fix this JavasScript to change the sequence of div tags on my webpage? |
|
RE: How to fix this JavasScript to change the sequence of div tags on my webpage?
|
18 Relevance |
4 years ago |
Tutrix |
General Discussions |
|
@hamptonraver
show just before the Title field
jQuery(document).ready(function(){
$("#wpforo #wpforo-wrap .wpf-topic-tags").prependTo("#wpforo #wpforo-wrap .wpf-topic-form-wrap");
});
Attachment : topic-tags.jpg |