Search Results for 'code'
-
Search Results
-
I enabled the TinyMCE, and use the visual editor, I can copy & paste, but all the code looks only fine in the editor, after submit, it has lots of HTML tags, it did not work, and the image is not copied as well, so it did not work.
Any idea of how to resolve it, thanks.Hi,
We have a membership site with bbpress. I am trying to keep our members informed of the new questions in our forum. I am using mailchimp in conjunction with bbpress topic feed.I would like to remove the ‘This topic was last modified by x for the reason y’ line. See this screenshot.
I am not a programmer but can modify code if i find a good template.
Would anyone be able to point me in the right direction? to either some code or a developer?
Thank you!
Topic: BBPress Menu
Hi, I have the Whoop theme and its designed to use bbPress but the menu shows ALL categories under one menu in a row. Including sub categories. I want to change it so it only shows the parent categories as currently there are at least 30 items in the menu.
Is the below code what needs to be change and if so can you help me out by doing this? I don’t even want the menus collapsible. Just at link for each main category and thats it.
<div class="whoop-forum-cats-list"> <ul class="whoop-forum-cats-list-inner"> <?php $forum_id = bbp_get_forum_id(); $forum_args = array( 'posts_per_page' => 100, 'post_type' => bbp_get_forum_post_type(), 'order' => 'ASC' ); $forums = query_posts( $forum_args ); foreach ($forums as $forum) { $link = get_permalink($forum->ID); if ($forum->ID == $forum_id) { $class = 'active'; } else { $class = ''; } ?> <li> <a class="<?php echo $class; ?>" href="<?php echo $link; ?>"> <div class="forum-cat-text-wrap"> <?php echo $forum->post_title; ?> <div class="forum-cat-last-updated"> <?php echo bbp_get_forum_last_active_time( $forum->ID ); ?> </div> </div> </a> </li> </ul>Topic: Shortcodes stopped working
Hi guys
I know this is more an issue with another plugin, but I thought I would post here as well in case anyone had an ideas
See original post here
I’m using the “NextScripts: Social Networks Auto-Poster“ and since setting it up 3 days ago, I’ve come in after the weekend and found it’s killed any pages I have using BBpress shortcodes (eg [bbp-forum-index]) The direct links to the forums are working fine, it’s just pages containing shortocdes.
Does anyone have any ideas please?
Hi Guys!
I found the guide where are the codes for “Show status labels for bbPress Topics”… Well, I want to add a label for “Topics with No replies”, i tried do it by myself but It makes me crazy..
Does anybody know which reference or functions should I use?
Thanks.
Topic: User search not working
Hi!
I am very new to bbpress and i’m trying to set it up on my site.
I have created a bbpress forum page where i display shortcodes. The shortcode for the search shows up, but it won’t find any topic.
Anyone has an idea of what i’m doing wrong?
Thanks!
Topic: WordPress user roles broken
Hello I have a website which relies on user roles such as administrator to show certain content. I have installed BBPress which seems to break my user roles for example all Administrators become Keymasters also which is fine but if I run a query such as the code below it evaluates to false.
Any help would be greatly appreciated.
<?php if (is_user_logged_in() ) { $user_ID = get_current_user_id(); $user_info = get_userdata($user_ID); if(isset($user_info->roles) && implode(', ', $user_info->roles) == 'administrator') { ?>; <?php } >;
