gVectors Dev
Forum Replies Created
-
Forum: Plugins
In reply to: [wpForo Forum] Online members does not refresh?@qnkov,
You can try Using CSS Code to get the needed result, and you can insert the CSS Code In Custom CSS Code: Filed from Dashboard > Forums > Settings > Style’s TabForum: Plugins
In reply to: [wpForo Forum] Online members does not refresh?Hi @qnkov,
go to Dashboard > Forum > Settings > Members Tab and check Online Status Timeout Option.Forum: Plugins
In reply to: [wpForo Forum] Version Not Safe against Brute Force AttackHi @mweducator,
wpForo uses WordPress login/logup system, but provides its own form for the login, but it is stil WordPress login system, so it doesn’t matter you login from wpForo form or from WordPress form. There is only one login system.Forum: Plugins
In reply to: [wpForo Forum] Forum login@thecatim,
The reason is cache plugin you are using, Exclude wpForo from the cache plugin.
Check the FAQ Topic For More info about Cache: https://wpforo.com/community/faq/wpforo-and-cache-plugins/Forum: Plugins
In reply to: [wpForo Forum] Error plugin@firefliespilots,
It may be in the first half of 2022Forum: Plugins
In reply to: [wpForo Forum] show user is logged in@thecatim,
I’m sorry, but wpForo doesn’t have the option to do that, you can only add the Notification Bell next to the Search Button.Forum: Plugins
In reply to: [wpForo Forum] Error plugin@firefliespilots,
Please provide a screenshot of the full code with last changes.You copied the code from mail or from wordpress forum?
Forum: Plugins
In reply to: [wpForo Forum] Error pluginAdd the below code After the last code I gave you. the code must start on a new line and must have an empty line at his top and bottom,
function wpforo_fix_dir_sep($dir){ $dir = str_replace( array('/', '\\', '\\\\'), DIRECTORY_SEPARATOR, $dir ); return rtrim( trim($dir), DIRECTORY_SEPARATOR ); }Forum: Plugins
In reply to: [wpForo Forum] Error pluginForum: Plugins
In reply to: [wpForo Forum] Error pluginHi @firefliespilots
Go to: /wp-content/plugins/wpforo/wpf-includes/ open functions.php file,find the below code:
function wpforo_write_file(And replace the code with the below one:
function wpforo_write_file( $new_file, $content ) { $return = array( 'error' => '', 'file' => '' ); $new_file = wpforo_fix_dir_sep( $new_file ); $dir = dirname( $new_file ); if( !is_dir( $dir ) ) wp_mkdir_p($dir); $ifp = @fopen( $new_file, 'wb' ); if( ! $ifp ) { if( is_resource( $ifp ) ) { @fclose( $ifp ); } $return = array( 'error' => sprintf( __( 'Could not write file %s' ), $new_file ) ); } else { @fwrite( $ifp, $content ); fclose( $ifp ); clearstatcache(); // Set correct file permissions $stat = @stat( dirname( $new_file ) ); $perms = $stat['mode'] & 0007777; $perms = $perms & 0000666; @chmod( $new_file, $perms ); clearstatcache(); $return['file'] = $new_file; } return $return; }Also, this is temporary, the issue will be solved in the new 2.0 version.
Forum: Plugins
In reply to: [wpForo Forum] show user is logged inThe username takes up a whole column…can the name only be displayed in the top bar?
Open the widget and enable the below options`
Hide avatar
Hide notification bell
Hide user dataTn edit modeit displays the full profile….in user view mode there are only a login / logout buttons?
Please provide a screenshot of your issue.
Forum: Plugins
In reply to: [wpForo Forum] show user is logged inHi @thecatim,
Go to Dashboard > Appearance > Widgets, And insert wpForo User Profile & Notifications Widget in wpForo SidebarForum: Plugins
In reply to: [wpForo Forum] Issue with registration and mail confirmationIf “Enable User Registration email confirmation” option is enabled, Users register without entering a password, so they have to go to their mailbox and Reset their password.
But in your case, Users type their password in the registration form with enabled “Enable User Registration email confirmation” option, which is not default for wpForo, I guess you used a plugin, to add password field in the registration form, which is not recommended.Forum: Plugins
In reply to: [wpForo Forum] Issue with registration and mail confirmation@orrvault,
If you want that your users confirmed their email to get access to the forum, you should activate Enable User Registration email confirmation option from Dashboard > Forums > Settings > Features Tab.Forum: Plugins
In reply to: [wpForo Forum] Issue with registration and mail confirmationHi @orrvault,
What do you mean the email is not correct?
