-
Author
-
January 27, 2016 at 15:11 #100734
clyn
ParticipantProbably i am missing something about bbpress.
1 – Admin creating new forum and any member create topics under this forum. But members cant see under when click members/profile/forums topic started (always say “You have not created any topics.” )
2 – when click replies created, always showing members posts (normal posts, custom post)
3 – How to create members their forums (i am giving role on user role or trying other things), they never see create new topic on frontend or their admin panels..
January 27, 2016 at 15:13 #100735clyn
Participantyou can see this links, replies show members post
https://www.artnoid.net/members/visualarts/forums/replies/
https://www.artnoid.net/members/decor/forums/replies/January 27, 2016 at 15:41 #100745sharmstr
ModeratorHave you tried any of the forum tools in Wp Admin > Tools > Forums > Repair Forums? Run them all and see if that solves all the issues.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 16:31 #100760clyn
Participantyes i did repair item…
this link, admin created forum
https://www.artnoid.net/forums/forum/cinema/cinema-movements/and you can see member decor start 2 topics under this forum. But
cant see statrted topic
https://www.artnoid.net/members/decor/forums/cant see replies but show decor members different posts. How could be this?
https://www.artnoid.net/members/decor/forums/replies/January 27, 2016 at 16:46 #100769sharmstr
ModeratorI need access to see what might be causing this.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 16:50 #100771clyn
Participanthttps://www.artnoid.net
kleoteam
123456you need cpanel?
January 27, 2016 at 16:54 #100776sharmstr
ModeratorI’m going to be testing some things. Do not be alarmed if the site does strange things until I’m done.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 17:03 #100779sharmstr
ModeratorIts your custom function custom_post_author_archive that’s causing the issue.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 17:08 #100780clyn
Participanti think you are talking about authour slug pluging… I forget to tell you before…I can deinstall, dont need this pluging actually
January 27, 2016 at 17:11 #100784sharmstr
ModeratorThat’s not what I’m talking about. I’m talking about the custom_post_author_archive function you have in your child theme. I disabled it and it worked.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 17:13 #100785clyn
Participanti dont remember now who, but kleo team give me that code. because my author custom post type dont show before…I think you resign the code…
January 27, 2016 at 17:18 #100789clyn
ParticipantBut now, i cant see the author custom post type archive, only shows normal posts… Should i decide, forum or archieve?
January 27, 2016 at 17:20 #100790sharmstr
ModeratorI didnt give you all of that code you have in there. I merely showed you how to add your cpt. You need to make sure that you’re including everything you want, including topics.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 17:28 #100791sharmstr
ModeratorYou could also try checking to make sure you function wont run within the bp profile with something like !bp_is_user().
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 17:28 #100792clyn
Participant🙂 sorry for my bad english, What must i do now? forums is solved, i should add something again function.php…
its now, like this..forum work, cpt archieve not shows
function custom_post_author_archive( $query ) {
if ( $query->is_author() ) {
$query->set( ‘post_type’, array(‘cinema-post’, ‘music-post’, ‘visual-arts’, ‘theater-dance-post’, ‘architecture-post’, ‘creative-artpost’, ‘portfolio-post’, ‘event-post’, ‘world-festival-post’, ‘resume-post’, ‘job-post’, ‘organization-post’, ‘product’, ‘post’) );
}
}
//add_action( ‘pre_get_posts’, ‘custom_post_author_archive’ );January 27, 2016 at 17:30 #100793clyn
Participanti am economist and photograher, so its more technics everything for me ? Sorry my stupid questions
January 27, 2016 at 17:44 #100796sharmstr
ModeratorRemove the // to re-enable the function. And as I said, you need to edit the function to include everything you want.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 17:54 #100797clyn
Participanti really sorry sharmstr really sory. what am i missing? If enable code author cpt archive show but forum topic started is lost and replies show members post.. ıf deactive code, its forum work, author archieve dont work. what must i do work together? Really sorry
January 27, 2016 at 18:00 #100798sharmstr
ModeratorDid you add topic to the function like I’ve instructed?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 18:05 #100802sharmstr
ModeratorI added it for you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 18:07 #100803clyn
Participanti am creating communication accident, i know wasting your time. But i reaaly dont understand you. which instructed?
i haave only this code in my function.php
function custom_post_author_archive( $query ) {
if ( $query->is_author() ) {
$query->set( ‘post_type’, array(‘cinema-post’, ‘music-post’, ‘visual-arts’, ‘theater-dance-post’, ‘architecture-post’, ‘creative-artpost’, ‘portfolio-post’, ‘event-post’, ‘world-festival-post’, ‘resume-post’, ‘job-post’, ‘organization-post’, ‘product’, ‘post’,) );
}
}
if enable (forum dont show) should add something?//add_action( ‘pre_get_posts’, ‘custom_post_author_archive’ );January 27, 2016 at 18:10 #100804sharmstr
ModeratorI think you missed my previous message. I added it for you. The issue now is that topics will show up in the author archive. I’m going to try to add another bit of code to fix that. Please hold on.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 18:14 #100807sharmstr
ModeratorIts fixed.
I strongly suggest you hire someone to assist you with all of the customizations you want to do to your site. While its great that wordpress has so many plugins that allow you to add functionality to your site, it usually takes someone who has php knowledge to make the all work together the way you want.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 18:25 #100811clyn
ParticipantI think you mean (my bad english understand), i need private and frelancer web master. Actually i will be honest, last 5 months ago, i’m 40 years old and lost my everything (my otel in bodrum Turkiye, my houses, my cars, my delivery company) and i dont have any finance to freelancer, also lots of people and taxes follow me. But, i am talking some one and they will be sponsor within 2 months for my art project… I hope you understand me.
also thank you so much solve my problem….
January 27, 2016 at 18:31 #100812sharmstr
ModeratorI’m sorry for your situation. That must be really hard for you. I hope things turn around for you soon!
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 20:53 #100859clyn
Participant1 – sorry, again me… How do buddbress members (or different roles) can create forum. Roles cant see add new forum on their admin panel… I am giving permission on user role editor, but cant see on member admin panel…
1 – Buddypress component / Group Forums BuddyPress Forums are retired. Use bbPress. – its uncheck, but forum setting i give permission group forum and group can create forum… Is that same thing?
January 27, 2016 at 21:00 #100863sharmstr
ModeratorUsers need to be moderators to create forums. Please familiarize yourself with BBPress by reading their documentation. Kleo doesnt control any of that. Only stylizes it. https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 21:07 #100865clyn
Participantactually i did moderator but nothing happens. maybe forum repair item again?
thanks…January 27, 2016 at 21:12 #100866sharmstr
Moderatorcant access your site anymore.
also, be aware that you can only create new forums in WP Admin, not on the frontend.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJanuary 27, 2016 at 21:34 #100867clyn
Participanti am giving moderator role, and my member such as decor is (creative office role) and also giving user role editor to check forum…but decor member cant see on his wp-admin.. Believe me i am reading, if i cant solve i write you
https://www.artnoid.net
kleoteam
123456decor
932058 -
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.