#1 WordPress forum plugin created by gVectors Team

wpForo – WordPress Forum Plugin
  • Home
  • Forum
  • Migrate to wpForo
  • Addons
  • Addons Demo
  • Documentation

Forum

Home | Forum

wpDiscuz - WordPress Comment Plugin
  • Forums
  • Members
  • Recent Posts
Forums
wpForo Community
wpForo Announcement...
wpForo 1.9.7 is rel...
 
Share:
Share
Tweet
Share
Notifications
Clear all

[Closed] wpForo 1.9.7 is released!

    Last Post
  RSS
Robert
 Robert
(@robert)
Support Team Admin

We've just released wpForo 1.9.7 version.

We've done some important improvement in database queries, the profile social network fields are updated, and the Q&A forum layout has been improved with QAPage schema. In addition, lots of bugs are fixed.

 

Important update notes

  • After the update, please delete all caches.
  • If you have a Minifier/Optimizer plugins please delete all caches.
  • If you use CDN and found some issues please purge it.
  • Some JS and CSS files are changed, please refresh (press Ctrl+F5) on forum front-end twice to reset browser cache, otherwise you'll see crashed design.

 

Main Changes

 

QAPage schema to wpForo Q&A Forum Layout

Now, forum Q&A layout topics/questions are eligible to have a rich result displayed on the search results page. More information: https://developers.google.com/search/docs/data-types/qapage

Validation example: https://search.google.com/test/rich-results?url=https%3A%2F%2Fwpforo.com%2Fcommunity%2Fqa-layout-how-to-and-troubleshooting%2Fchange-topic-category%2F&user_agent=1

 

Social Network fields in forum profiles are updated

  • Removed: ICQ, AOL IM, Google+, Yahoo, MSN
  • Added: LinkedIn, Instagram, Telegram, YouTube, VKontakte

 

Admins are now able to manage user subscriptions in user's My Profile > Subscriptions Tab.

 

Changelog:

  • Added: MySQL 8 Compatibility
  • Added: Social Network fields in forum profiles are updated
  • Removed: ICQ, AOL IM, Google+, Yahoo, MSN
  • Added: LinkedIn, Instagram, Telegram, YouTube, VKontakte
  • Added: Hooks on user banning / unbanning actions
  • Added: User banning do_action('wpforo_after_ban_user', $userid);
  • Added: User unbanning do_action('wpforo_after_unban_user', $userid);
  • Added: Hooks to set custom timeout for forum top/right pop-up messages
  • Added: Forum hook wpforo_notice_timeout_success
  • Added: Forum hook wpforo_notice_timeout_error
  • Added: Built-in forum memory cache is improved
  • Added: Adds space after @nickname on clicking [reply] button
  • Added: Admins are now able to manage user subscriptions in user's My Profile > Subscriptions Tab
  • Added: QAPage schema to wpForo Q&A Forum Layout.
  • Fixed Bug: Redirection issue when URL contains TCP port other than 80
  • Fixed Bug: Sub-forums are not displayed in threaded layout (MySQL 8 issue)
  • Fixed Bug: Clean -spoiler- shortcode from recent posts list
  • Fixed Bug: Backslash before all apostrophes in emails
  • Fixed Bug: Secure redirection, switched to wp_safe_redirect()
  • Fixed Bug: Problem with spoiler, crashing post content and forum layout
  • Fixed Bug: Incorrect last login information for inactive users
  • Fixed Bug: Reduced DB queries and some duplicated SQLs are removed

In case you want to say thank you !)
We'd really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.

Topic starter Posted : June 11, 2021 8:07 am
khushal Chawda, BerndG, xfok and 1 people liked
Topic Tags
wpForo 1.9.7 q&a layout QA Schema
xfok
 xfok
(@xfok)
Trusted Member

Thanks you for QAPage schema to wpForo Q&A Forum Layout! 🙂

Posted : June 11, 2021 10:53 am
Robert liked
pesimist57
 pesimist57
(@pesimist57)
Active Member
Posted by: @robert

Added: QAPage schema to wpForo Q&A Forum Layout.

I think it's a little late. 🙄 

Posted by: @robert

Added: LinkedIn, Instagram, Telegram, YouTube, VKontakte

So is this

 

Thank you...

 

Posted : June 11, 2021 8:34 pm
selsebil
 selsebil
(@selsebil)
Trusted Member
Posted by: @pesimist57

I think it's a little late. 🙄 

You may really be pessimist 

Posted : June 11, 2021 11:09 pm
Macky liked
Macky
 Macky
(@percysgrowroom)
Prominent Member

@pesimist57 Better late than never!

Are you a paid user of Wpforo? Have add ons and all that? Or just like to come here and complain about something you use for free? 

These guys do an amazing job with this software! I have watched it develop for over 2 years and every time they make a new update it gets better. 

Thanks to the team for all the hard work they put in.

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Posted : June 12, 2021 9:39 am
Martin and Robert liked
BerndG
 BerndG
(@berndg)
Estimable Member

@percysgrowroom You are ahead of me. Thanks to the Team of WPForo.

Posted : June 12, 2021 9:55 am
Robert liked
RealAct
 RealAct
(@realact)
Trusted Member

Great release, 

Keep up the good work.

This post was modified 11 months ago by RealAct
Posted : June 13, 2021 2:22 am
Martin and Robert liked
Robert
 Robert
(@robert)
Support Team Admin

In case you use LaTex math plugins in your forum, we recommend put this hook code in the functions.php file of your current WordPress active theme to avoid Q&A Schema parsing issues:

add_filter('wpforo_seo_meta_tags', 'wpforo_latext_filter_for_seo_tags');
function wpforo_latext_filter_for_seo_tags( $content ){
$pth = array( '|\$\$|', '|\$(\p{L})|u', '|(\p{L})\$|u', '|\\\text\{([^\}]+)\}|', '|\}\$|', '|\$\\\|', '|\\\pm|', '|\\\times|', '|\\\div|', '|\\\mathrm\{~?(\w{1,3})\}|', '|\\\Rightarrow|', '|\\\Leftarrow|', '|\\\cdot|', '|\\\right\)|', '|\\\left\(|', '|=\$\$=|', '|\\\(\p{L}+)\s?|', '|\\\|' );
$rep = array( ' ', '$1', '$1', ' $1 ', '}', '\\', '+/-', 'x', '/', '$1', '=>', '<=', '.', ')', '(', ' = ', ' $1 ', '' );
$content_fixed = preg_replace($pth, $rep, $content);
if( $content_fixed ) return $content_fixed;
return $content;
}

In case you want to say thank you !)
We'd really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.

Topic starter Posted : June 13, 2021 6:43 am
  All forum topics
  Previous Topic
Next Topic  
Related Topics
  • wpForo 1.6.0 is released!
    3 years ago
Topic Tags:  wpForo 1.9.7 (1), q&a layout (13), QA Schema (2),

Forum Search

Join Us!

Download wpForo plugin
on WordPress.org

wpForo Addons

wpforo-private-messages wpforo-advanced-attachments-128x128 wpforo-embeds-128x128 wpForo User Custom Fields addon wpForo – Blog Cross Posting addon wpForo Ads Manager wpForo – WooCommerce Memberships Integration wpForo Emoticons wpForo – Tenor GIFs Integration
View all Addons »

Recent Topics

  • Forum page

    By Charlespresh, 15 hours ago

  • How can I make notification bell appear site wide?

    By marios, 21 hours ago

  • wpForo not working correctly with Silk browser on Fire 7 Tablet

    By starman71, 1 day ago

  • Style Guests see "Add Topic" button - even if settings are right

    By DanielOfAnu, 1 day ago

  • Forums link on main page leads to 404, is not updated

    By Redglyph, 2 days ago

  • Creating the forum structure

    By Redglyph, 2 days ago

Topic Tags

  • <DIV style="FONT-112
  • translation49
  • css49
  • plugin conflict48
  • seo45
  • new features43
  • buddypress42
  • ultimate member40
  • avatar40
  • forum40
  • moderation38
  • login38
  • registration36
  • threaded layout35
  • cache33
  • editor32
  • menu32
  • shortcode30
  • spam29
  • phrases28
View all tags (2418)

Recent Posts

  • 《文凭认证》《阳光海岸大学毕业证》【Q微3225997026】《USC毕业证》版USC假文凭↓USC学位证书↓阳光海岸大学毕业证USC成绩单定制 University of Sunshine Coast

    ☞USC毕业证制作【Q微信3225997026】《阳光海岸大学毕业证》,USC毕业证购买,USC学位证,阳光海...

    By pbl7886110bu, 1 second ago

  • 《文凭认证》《格里菲斯大学毕业证》【Q微3225997026】《GU毕业证》版GU假文凭↓格大学位证书↓格里菲斯大学毕业证GU成绩单定制 Griffith University

    ☞Griffith毕业证制作【Q微信3225997026】《格里菲斯大学毕业证》,Griffith毕业证购买,...

    By pbl7886110bu, 26 seconds ago

  • 《文凭认证》《中央昆士兰大学毕业证》【Q微3225997026】《CQU毕业证》版CQU假文凭↓CQU学位证书↓中央昆士兰大学毕业证CQU成绩单定制 Central Queensland University

    ☞UQ毕业证制作【Q微信3225997026】《昆士兰大学毕业证》,UQ毕业证购买,UQ学位证,昆士兰大学学位...

    By pbl7886110bu, 42 seconds ago

  • 《文凭认证》《昆士兰大学毕业证》【Q微3225997026】《UQ毕业证》版UQ假文凭↓UQ学位证书↓昆士兰大学毕业证UQ成绩单定制 The University of Queensland

    ☞UQ毕业证制作【Q微信3225997026】《昆士兰大学毕业证》,UQ毕业证购买,UQ学位证,昆士兰大学学位...

    By pbl7886110bu, 1 min ago

  • 《文凭认证》《斯威本科技大学毕业证》【Q微3225997026】《SUT毕业证》版SUT假文凭↓SUT学位证书↓斯威本科技大学毕业证SUT成绩单定制 Swinburne University of Technology

    ☞SUT毕业证制作【Q微信3225997026】《斯威本科技大学毕业证》,SUT毕业证购买,SUT学位证,斯威...

    By pbl7886110bu, 2 mins ago

  • 《文凭认证》《乐卓博大学毕业证》【Q微3225997026】《LTU毕业证》版LTU假文凭↓LTU学位证书↓乐卓博大学大学毕业证LTU成绩单定制 LaTrobe University

    ☞ANU毕业证制作【Q微信3225997026】《澳大利亚国立大学毕业证》,ANU毕业证购买,ANU学位证,澳...

    By pbl7886110bu, 2 mins ago

  • 《文凭认证》《迪肯大学毕业证》【Q微3225997026】《DKU毕业证》版DKU假文凭↓DKU学位证书↓迪肯大学毕业证DKU成绩单定制 Deakin University

    ☞DKU毕业证制作【Q微信3225997026】《迪肯大学毕业证》,DKU毕业证购买,DKU学位证,迪肯大学学...

    By pbl7886110bu, 2 mins ago

Share:
Share
Tweet
Share
  Forum Statistics
20 Forums
9,864 Topics
49.5 K Posts
8 Online
43.1 K Members

Latest Post: 《文凭认证》《格里菲斯大学毕业证》【Q微3225997026】《GU毕业证》版GU假文凭↓格大学位证书↓格里菲斯大学毕业证GU成绩单定制 Griffith University Our newest member: w88odfootball027 Recent Posts Unread Posts Tags

Forum Icons: Forum contains no unread posts Forum contains unread posts

Topic Icons: Not Replied Replied Active Hot Sticky Unapproved Solved Private Closed

Powered by wpForo | Copyright © 2016-2022 gVectors Team
Copyright Registration Service - Click here for more information or to register work
wpForo is Registered with the IP Rights Office
Copyright Registration Service

Ref: 4477265538
  • Home
  • Forum
  • Migrate to wpForo
  • Addons
  • Addons Demo
  • Documentation