gptxffa
Forum Replies Created
-
Forum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexGreat news.
A: I deleted these and tested the site. It worked perfect. That was the problem for whatever reason.
B: yes they are.
C. No, it would only happen when trying to create a new topic from the Main index. If you went into a given sub forum, “General” “Admin Minutes” Group 1 could create a new topic.
Thanks for the help !
Forum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexwell dont make me lie!
Looking back at previous post/topics on BBpress I found where I got it.
https://bbpress.org/forums/topic/new-topic-form-shortcode-issue/
The objective is to be able to create a new topic area displayed on the index.
It always worked fine, until adding this plugin. Now it only works for the group 2 ‘moderator’ accounts.
Forum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexThis is my functions.php plugin if it possibly could be causing an issue.
—
add_filter( 'bbp_get_single_forum_description', 'ja_return_blank' ); add_filter( 'bbp_get_single_topic_description', 'ja_return_blank' ); function ja_return_blank() { return ''; } add_filter('protected_title_format', 'ntwb_remove_protected_title'); function ntwb_remove_protected_title($title) { return '%s'; } add_filter('private_title_format', 'ntwb_remove_private_title'); function ntwb_remove_private_title($title) { return '%s'; } function recent_bbpress_topics() { echo do_shortcode("[bbp-forum-index] [bbp-topic-form]"); } add_action('bbp_template_after_topics_index','recent_bbpress_topics'); add_filter( 'bbp_current_user_can_access_create_topic_form', 'custom_bbp_access_topic_form' ); function custom_bbp_access_topic_form( $retval ) { if ( bbp_is_forum_archive() ) { $retval = bbp_current_user_can_publish_topics(); } return $retval; }
Forum: Plugins
In reply to: [Private groups] Cannot create new topic from forum index“When logged in and they go to the general forums page, they can type in all the topic details, but when they click submit they get sent to the login page.”
—-
NO,
If they open the “General Forum” they can create a new topic.
—-
I have my Forum “Homepage” to display the 15 most recent topics up top, then below that it displays the Forum Index and each subforum.
Below that it has an area to create a new topics. Being that this is the “Home page” you have to click the drop down menu and select which subforum your topic should be assigned into.
When Group 1 members try and do this they are sent to the login page.
When the open any of the subforums listed above they can create the topic in that forum.
Forum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexthe issue is that Group 1 members cannot start a new topic from the forum index page.
Yes if they go into a give subforum they can create the topic from there.
Group 2 members do not have any issues.
Forum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexGeneral:
–Chat
–Dept. Concerns
–Polls/VotesMinutes and Meetings:
–Admin Minutes
–Assoc. Minutes
–City Mngt. Minutes
–Exec. BoardNews:
–Pres/Rep’s Corner
–Budget Reports
–Special CommitteesForum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexGroup 1-
Chat
Dept. Concerns
News
Pres/Rep’s Corner
Budget Reports
Minutes and Meetings
Assoc. Minutes
Admin Minutes
City Mngt. Minutes
Special Committees
General
Polls/VotesGroup 2:
Chat
Dept. Concerns
News
Pres/Rep’s Corner
Budget Reports
Minutes and Meetings
Assoc. Minutes
Admin Minutes
City Mngt. Minutes
Special Committees
General
Polls/Votes
Exec. BoardAll members Group 1 are subscribers/participant
All members in Group 2 are subscribers/moderators
Forum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexForum Visibility
Forum visibility – non active
Redirect pages – I dont see a click box for this I just see that it says if your visibility is active it will use the URL you list
URL for login – https://gptxffa.com/?page_id=83
URL for non logged in – https://gptxffa.com/?page_id=83
Freshness – non active
Freshness Message – noneGeneral Settings
Hide topic and reply counts – non active
Show Descriptions – non active
Remove ‘Private Prefix’ – non activeForum: Plugins
In reply to: [Private groups] Cannot create new topic from forum indexForgot to mention that when they click submit for a new topic from the Index, it sends them to the Login/Profile page
Forum: Plugins
In reply to: [User Tracker] default languageYes I am using it, If you have time that would be really great of you.
Thank you
Forum: Plugins
In reply to: [Hide Admin Bar Toolbar] Doesnt do anything on my siteHad the exact same issue.
Forum: Plugins
In reply to: [WP-Polls] Show users who have not VotedOk thank you!
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] new topic emails stopped workingthe test for WP mail is what worked
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] new topic emails stopped workingOk I deleted the filter out of the Functions pluging,
then I deleted the log file from server,
then I changed the recipients on your app,
then I updated a thread,and here is what is in the new Log file:
444 calling wp_mail() with email [email protected] calling wp_mail() with email [email protected] calling wp_mail() with email [email protected] calling wp_mail() with email [email protected] calling wp_mail() with email [email protected] calling wp_mail() with email [email protected]
No emails were received. I did not make any changes in the php file of your plugin if that was also required.
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] new topic emails stopped workingoh i just realized i didnt remove any of the code you gave me,
i just followed the guide you posted and it work.