Search Results for 'register'
-
Search Results
-
Topic: The right migration tool
I want to get a forum up as soon as possible and for free, and then compare free hosts and paid hosts, to see if I can find a better host for me to use later. (Iโve found some free hosts for WordPress, and I hope one will work.) In other words, I might want to change hosts, if it is possible to change from one free host to another free host (or to a paid host), without losing my forum (and the threads of, posts of, and information about those who registered). My problem is that, while Iโve found migration tools that make a bbPress forum from different forum software (if it is called software), I havenโt found any that make a forum from the same forum software (that is used with a different host). Can bbPress, or any software, do that? If I can change the host, will bbPress automatically do that? Is it possible to change from using one free host to using another free host, while using bbPress? Thank you.
Hi,
Have two bbpress forums on a webpage, a public one, for “usual” registered users, and private one, for “special” registered users.
Used bbp private groups plug-in to create both groups.
Would like to hide private forum menu item from the general registered users (not redirect to some custome page on something).
Asked the question on plugin’s support page, but got no answer.
Is there any code snippet or something I could use to hide the menu item which opens private forum? Now i get 404 error.Hi Team,
We’ve linked the login page on the header of our site. But once the user logs in, we wanted to hide the Login/Register page link and instead show then the Account page link.
How it can be done?PS – We’ve already setup a bbpress login widget which does this job, but in mobile view the user has to scroll down to see the widget. So we’ve placed the page link in the header.
Please let us know the proper solution for this issue.
Topic: redirect 301
Hello. I had two plugins for redirects and I had to remove one of them. 301 was done in one of the plugins about two years ago. I got the output list. And deleted. The redirects are OK and there is no problem. But the question I have is that after a while, the 301s done may return to the previous state
I mean, do I need them again in the new 301 plugin? Or are the 301s registered and the removal of plugins is not related to them?Hi, for my business website I’m trying to get a working forum together, I’m using WordPress.com, and I’ve got bbpress and bbpstyle pack active right now.
The issues I keep getting prevent users who do not have WordPress accounts from registering, it redirects the users to the WordPress login page and doesn’t send an e-mail.
In my Settings, if I remove the ability to login with WordPress accounts, it functions perfectly, but I lose access to editing and updating the site, I’m lost on how to get this functional.
Hi! I’m trying to allow users to assign their topics to custom taxonomies from the front end bbpress topic form. I thought it would be cool to be allow users to sort topics in multiple ways, and not just the anarchy that comes with unhierarchical ‘tags’.
With a lot of searching on forums, I’ve managed to register the taxonomies, display them, include topics in the archives, and added inputs to the form to allow uses to select the relevant ones.
But I’m totally stuck with saving the value from the checkboxes. You can tick the box, but nothing is saved. I’m guessing I need to use wp_set_object_terms()? and hook into bbp_new_topic() to save the terms? But I have no idea how to save the value from the checkboxes in there.
Any ideas, tips, scorn, alternative suggestions are welcome. Do i need to learn more js and use AJAX to accomplish this? Or is this achievable with php and am I even close?
// Add custom taxonomies to topic form add_action ( 'bbp_theme_after_topic_form_content', 'bbp_extra_fields'); function bbp_extra_fields() { $value = get_post_meta( bbp_get_topic_id(), 'issue', true); echo '<div id="custom-meta">'; echo'<fieldset> <legend>Issues</legend>'; $issues = get_terms('issue', array('hide_empty' => 0)); foreach ($issues as $issue) { echo '<span><input type="checkbox" class="issue" for="issue" value="'.$issue->slug.'"></input><label>'.$issue->name.'</label></span>'; }; echo '</fieldset>'; $value = get_post_meta( bbp_get_topic_id(), 'region', true); global $region; $region = get_terms('region', array('hide_empty' => 0)); echo'<fieldset> <legend>Region</legend>'; $regions = get_terms('region', array('hide_empty' => 0)); foreach ($regions as $region) { echo '<span><input type="checkbox" class="issue" for="issue"value="'.$region->slug.'"><label>'.$region->name.'</label></span>'; }; echo '</fieldset></div>'; }; // Save the terms from the form add_action ( 'bbp_new_topic', 'bbp_save_extra_fields', 10, 1 ); add_action ( 'bbp_edit_topic', 'bbp_save_extra_fields', 10, 1 ); function bbp_save_extra_fields($topic_id) { $post_id = get_the_ID(); $category_id = $region->id; $taxonomy = 'region'; wp_set_object_terms( $post_id, intval( $category_id ), $taxonomy ); };
Hi there,
Due to a high number of spambot registrations, any user who registers for the forum initially gets “Spectator” rights. Once I check (usually within 12-24 hours) that they are not spam, I change them to “Participant”.
Some people get annoyed that they cannot post immediately. And I would like to create a popup banner that appears when users login for the first time but cannot post. I am capable of the JS and the CSS, but not quite the PHP.Basically, I want to enqueue a JS file if the user is a “spectator” and is “logged in”.
Could you please advise how to complete my function (hopefully just the commented parts), which will go in the functions.php file, and what
add_action
arguments should be applied if I am wrong?function forum_user_is_spectator(){ if ( is_bbpress() && is_user_logged_in() ) { //$User_ID = get user ID //$Spectator = find out if User Has Spectator rights if ($Spectator){ wp_enqueue_script( 'spectator-js', get_template_directory_uri() . '/js/spectator.js', array(), false, true); } } }
add_action('wp_enqueue_scripts', 'forum_user_is_spectator');
thx in advance
Topic: Tips: forum theme
Hi,
I am not good at coding or custom css. My level of knowledge is: I just know how to install and activate stuff on wordpress more or less.
I am looking to get a clean, crisp and modern design on my forum and member site (located on a subdomain of my main homepage). However I cant really find a good theme. I am looking for a cheap solution – if possible free. I use BBpress and Buddypress and thats mostly the features I need. I will use a custom register plugin also and the main page should present news and some quick info for the members to be updates whats going on. Do you have any tips on themes that works well for this and looks good?
I googled and found these mentioned in a list and they where free (however not having a presentation on the main page as I want):
https://zakratheme.com/
https://wpastra.com/Please help if you have any ideas ๐๐
Hi, Robin,
I’ve seen a number of posts about this but can’t find a specific solution. I’d like my login to call out to the page I created with the bbpress shortcode: https://museum-hub.org/forum-login/ vs. the generic WP login page. Within your style pack, I’ve gone to the Login tab and added that page where it says “Login Page: You should create a wordpress page with a login shortcode such as [bbp-login] and put the full url in here e.g. http://www.mysite.com/loginpage. If left blank the default wordpress login page will be used.” I’ve saved it, of course. I’ve done the same thing with the “Register” field, sending people here: https://museum-hub.org/register/. Any thoughts on to bypass the WP default login? I’m trying to keep folks from seeing any WP dashboards, etc.
THANK YOU!