Forum Replies Created
-
In reply to: Display issues
great – glad you are fixed
In reply to: Forum overlaps on mobile devicesIn reply to: Forum overlaps on mobile deviceslooks fine on mine !
In reply to: Disabling the option number of votes in the forumtry any/all of these
li.bbp-forum-reply-count { display : none !important; } li.bbp-forum-topic-count { display : none !important; } li.bbp-topic-reply-count { display : none !important; } li.bbp-topic-voice-count { display : none !important; }
In reply to: Subforums are not listed.sorry, is there a question here? – it appears to just be a series of pastes đ
In reply to: Remove /search from the siteso
dashboard>settings>forums>forum features and turn off search doesn’t work for you ?In reply to: Disabling the option number of votes in the forumis your site public ?
In reply to: Disabling the option number of votes in the forumok install this and put the code in the custom css section.
once activated go to
dashboard>settings>bbp style pack>custom css
In reply to: Disabling the option number of votes in the forumok try
#bbpress-forums li.bbp-forum-reply-count { display: none !important; }
In reply to: Forum structure questionlook in the template files
In reply to: Remove /search from the sitedashboard>settings>forums> and just take out the search slug
In reply to: Can’t give users custom roles.ok, not sure if I can help further – it works on my test site, so clearly something is amiss.
Role editor may well change stuff in the database, so deactivating may be leaving stuff behind that may not help.
In reply to: Can’t give users custom roles.try deactivating it and see if that fixes – what are you using it for?
In reply to: Can’t give users custom roles.so presume you have user role editor as an additional plugin – yes ?
In reply to: Disabling the option number of votes in the forumwhere did you put it ?
In reply to: Disabling the option number of votes in the forumput this in the custom css section of your theme
#bbpress-forums li.bbp-forum-reply-count { display: none; }
In reply to: Can’t give users custom roles.I just notice this, in the âedit usersâ when I choose ârevendeurâ :
http://batteman.free.fr/forum/bbPress5.jpg -> bbp_revendeur appears in âothers permissionsâ of my user BatteTest !where exactly does this appear ?
In reply to: Display issuesyour theme is limiting stickies – not sure why
add this to the custom css of either your theme or my style pack plugin
.sticky { display: inherit; }
In reply to: Display issuesgreat site subject !! My Brother in Law is mad about railways!
1. Not absolutely clear on the question. Is the display data correct but you want to display something different, or is the data wrong ? This column will show the latest entry (topic or reply) in the box with a link to it. If the data is wrong, then go to
dashboard>settings>bbp style pack>bug fixes and set the latest reply one. It will only take effect from the next post.
2. I can’t see any pinned or locked topics on the site – to save me having to find examples, can you post links to them.
In reply to: Can’t give users custom roles.hmmm….
so in dashboard>users>edit user the rile shows – yes?
but if you try to change it, when you save and immediately look back at it, what is it set to ?want other profile/bbpress/login related plugins do you have ?
In reply to: Can’t give users custom roles.I just tried that code on my test site, and I made a user ‘revendeur’ and it worked fine.
Can you describe what is not working – eg role is not showing in users profile, role showing but can’t allocate etc.
Also where are you putting this code?
In reply to: Forum structure questionyou would need to redesign the templates to do this.
Involves php and ftp knowledge and beyond free help.
In reply to: Can you make a role to subscribe a forum?update_option (ârew_doneâ , âdone2â ) ;
should read
update_option (ârew_done2â , âdone2â ) ;
In reply to: Can you make a role to subscribe a forum?the update_option bit stops it being run more than once.
so to run it a 2nd time use
$list = get_users(); if (empty (get_option ('rew_done2')) { foreach ($list as $user) { $user_id = $user->ID ; $forum_id = 3 ; bbp_add_user_forum_subscription( $user_id, $forum_id ) ; } update_option ('rew_done2' , 'done2' ) ; }
In reply to: Reply and edit post buttons not workingyes you should be able to change in the child theme.