Search Results for '+.+default+.+'
-
AuthorSearch Results
-
July 16, 2015 at 7:19 am #164120
Stephen Edgar
KeymasterAlso to note, until bbPress 2.5 pt_BR is 100% translated the only translations delivered via WordPress Update will be bbPress 2.4, language packs are only built once they are complete at 100%
This link shows the bbPress language packs available:
https://api.wordpress.org/translations/plugins/1.0/?slug=bbpress&version=2.5These need to be translated to 100% to get these via WordPress Update
https://translate.wordpress.org/projects/bbpress/2.5.x/pt-br/defaultIf you can help translate those strings then you’ll get bbPress 2.5 translations, you can also get in contact with your locale team via https://br.wordpress.org/
July 16, 2015 at 7:10 am #164118Stephen Edgar
KeymasterA year or two ago we had lots of translation issues with bbPress, to fix this I got en_AU (English Australian) of the ground and translated all the things, WordPress, BuddyPress and bbPress and help out on the #polyglots team https://make.wordpress.org/polyglots/
The string I translated to test was the
Pendingstring replaced withstickfingerforen_AU:I then downloaded the .po and .mo files (at the bottom of that screen you can export these) and replaced my en_AU
bbpress-en_AU.mo/bbpress-en_AU.pofiles in/wp-content/languages/pluginsWhat happens if you export the .po/.mo files from /bbpress/2.5.x/pt-br/default?
Also make sure your files are named
bbpress-pt_BR.moandbbpress-pt_BR.poJuly 16, 2015 at 6:09 am #164111stickFinger
ParticipantHi Stephen
Thanks for your input here.:-)
I guess i did not understand you very well š
You telling that in the en_US.po file it works, am i correct?I“ve just download a fresh copy of the po file at: https://translate.wordpress.org/projects/bbpress/dev/pt-br/default
and that is the header:
Translation of Development in Portuguese (Brazil) # This file is distributed under the same license as the Development package. msgid "" msgstr "" "PO-Revision-Date: 2015-07-15 17:00:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: GlotPress/1.0-alpha-1000\n" "Project-Id-Version: Development\n"there is no Kewyword list
IĀ“ve read something regarding this issue also on buddypress foruns. It seems that the strings after the “_x(….” caracter is the problem on some languages.July 15, 2015 at 10:56 pm #164093Robkk
ModeratorMaybe the URL of the registration page can be used as the URI.
Yes use that page you created with the bbPress registration form shortcode. You can also use the default WordPress registration page which would be.
http://yoursite.com/open/wp-login.php?action=register
Same for the Lost Password page, you can use the page you placed the bbPress lost password shortcode or the default lost password form by WordPress.
July 15, 2015 at 8:23 pm #164086In reply to: Blank pages after 2.5.8 upgrade
Stephen Edgar
KeymasterWhat happens if you resave your permalinks? Go to Settings > Permalinks
A more common and now default of WordPress is to use the
Post nameformat, also known as pretty permalinks, as such the following would be what you’d see for the “maine” forumhttp://www.plowandanchorconnect.com/forums/forum/plow-and-anchor-forums/maine
July 15, 2015 at 12:29 pm #164073In reply to: problem getting forum full width
division123
ParticipantHi, i am trying to remove the sidebar as well, below is my code from page.php which I have duplicated and renamed bbpress.php but I can’t see which code I need to remove?
<?php get_header(); ?>
<?php
$options = get_option(‘sf_dante_options’);$default_show_page_heading = $options[‘default_show_page_heading’];
$default_page_heading_bg_alt = $options[‘default_page_heading_bg_alt’];
$default_sidebar_config = $options[‘default_sidebar_config’];
$default_left_sidebar = $options[‘default_left_sidebar’];
$default_right_sidebar = $options[‘default_right_sidebar’];
$sidebar_width = $options[‘sidebar_width’];$pb_active = sf_get_post_meta($post->ID, ‘_spb_js_status’, true);
$show_page_title = sf_get_post_meta($post->ID, ‘sf_page_title’, true);
$page_title_style = sf_get_post_meta($post->ID, ‘sf_page_title_style’, true);
$page_title = sf_get_post_meta($post->ID, ‘sf_page_title_one’, true);
$page_subtitle = sf_get_post_meta($post->ID, ‘sf_page_subtitle’, true);
$page_title_bg = sf_get_post_meta($post->ID, ‘sf_page_title_bg’, true);
$fancy_title_image = rwmb_meta(‘sf_page_title_image’, ‘type=image&size=full’);
$page_title_text_style = sf_get_post_meta($post->ID, ‘sf_page_title_text_style’, true);
$fancy_title_image_url = “”;if ($show_page_title == “”) {
$show_page_title = $default_show_page_heading;
}
if ($page_title_bg == “”) {
$page_title_bg = $default_page_heading_bg_alt;
}
if ($page_title == “”) {
$page_title = get_the_title();
}foreach ($fancy_title_image as $detail_image) {
$fancy_title_image_url = $detail_image[‘url’];
break;
}if (!$fancy_title_image) {
$fancy_title_image = get_post_thumbnail_id();
$fancy_title_image_url = wp_get_attachment_url( $fancy_title_image, ‘full’ );
}$sidebar_config = sf_get_post_meta($post->ID, ‘sf_sidebar_config’, true);
$left_sidebar = sf_get_post_meta($post->ID, ‘sf_left_sidebar’, true);
$right_sidebar = sf_get_post_meta($post->ID, ‘sf_right_sidebar’, true);if ($sidebar_config == “”) {
$sidebar_config = $default_sidebar_config;
}
if ($left_sidebar == “”) {
$left_sidebar = $default_left_sidebar;
}
if ($right_sidebar == “”) {
$right_sidebar = $default_right_sidebar;
}sf_set_sidebar_global($sidebar_config);
$page_wrap_class = $post_class_extra = $sidebar_class = ”;
if ($sidebar_config == “left-sidebar”) {
$page_wrap_class = ‘has-left-sidebar has-one-sidebar row’;
if ($sidebar_width == “reduced”) {
$post_class_extra = ‘push-right col-sm-9’;
$sidebar_class = ‘col-sm-3’;
} else {
$post_class_extra = ‘push-right col-sm-8’;
$sidebar_class = ‘col-sm-4’;
}
} else if ($sidebar_config == “right-sidebar”) {
$page_wrap_class = ‘has-right-sidebar has-one-sidebar row’;
if ($sidebar_width == “reduced”) {
$post_class_extra = ‘col-sm-9’;
$sidebar_class = ‘col-sm-3’;
} else {
$post_class_extra = ‘col-sm-8’;
$sidebar_class = ‘col-sm-4’;
}
} else if ($sidebar_config == “both-sidebars”) {
$page_wrap_class = ‘has-both-sidebars row’;
$post_class_extra = ‘col-sm-9’;
$sidebar_class = ‘col-sm-3’;
} else {
$page_wrap_class = ‘has-no-sidebar’;
}$remove_breadcrumbs = sf_get_post_meta($post->ID, ‘sf_no_breadcrumbs’, true);
$remove_bottom_spacing = sf_get_post_meta($post->ID, ‘sf_no_bottom_spacing’, true);
$remove_top_spacing = sf_get_post_meta($post->ID, ‘sf_no_top_spacing’, true);if ($remove_bottom_spacing) {
$page_wrap_class .= ‘ no-bottom-spacing’;
}
if ($remove_top_spacing) {
$page_wrap_class .= ‘ no-top-spacing’;
}$options = get_option(‘sf_dante_options’);
$disable_pagecomments = false;
if (isset($options[‘disable_pagecomments’]) && $options[‘disable_pagecomments’] == 1) {
$disable_pagecomments = true;
}?>
<?php if ($show_page_title) { ?>
<div class=”container”>
<div class=”row”>
<?php if ($page_title_style == “fancy”) { ?>
<?php if ($fancy_title_image_url != “”) { ?>
<div class=”page-heading fancy-heading col-sm-12 clearfix alt-bg <?php echo $page_title_text_style; ?>-style fancy-image” style=”background-image: url(<?php echo $fancy_title_image_url; ?>);”>
<?php } else { ?>
<div class=”page-heading fancy-heading col-sm-12 clearfix alt-bg <?php echo $page_title_bg; ?>”>
<?php } ?>
<div class=”heading-text”>
<h1 class=”entry-title”><?php echo $page_title; ?></h1>
<?php if ($page_subtitle) { ?>
<h3><?php echo $page_subtitle; ?></h3>
<?php } ?>
</div>
</div>
<?php } else { ?>
<div class=”page-heading col-sm-12 clearfix alt-bg <?php echo $page_title_bg; ?>”>
<div class=”heading-text”>
<h1 class=”entry-title”><?php echo $page_title; ?></h1>
</div>
<?php
// BREADCRUMBS
if (!$remove_breadcrumbs) {
echo sf_breadcrumbs();
}
?>
</div>
<?php } ?>
</div>
</div>
<?php } ?><?php if ($sidebar_config != “no-sidebars” || $pb_active != “true”) { ?>
<div class=”container”>
<?php } ?><div class=”inner-page-wrap <?php echo $page_wrap_class; ?> clearfix”>
<?php if (have_posts()) : the_post(); ?>
<!– OPEN page –>
<div class=”clearfix <?php echo $post_class_extra; ?>” id=”<?php the_ID(); ?>”><?php if ($sidebar_config == “both-sidebars”) { ?>
<div class=”row”>
<div class=”page-content col-sm-8″>
<?php the_content(); ?>
<div class=”link-pages”><?php wp_link_pages(); ?></div><?php if ( comments_open() && !$disable_pagecomments ) { ?>
<div id=”comment-area”>
<?php comments_template(”, true); ?>
</div>
<?php } ?>
</div><aside class=”sidebar left-sidebar col-sm-4″>
<div class=”sidebar-widget-wrap sticky-widget”>
<?php dynamic_sidebar( $left_sidebar ); ?>
</div>
</aside>
</div>
<?php } else { ?>
<div class=”page-content clearfix”><?php the_content(); ?>
<div class=”link-pages”><?php wp_link_pages(); ?></div>
<?php if ( comments_open() && !$disable_pagecomments ) { ?>
<?php if ($sidebar_config == “no-sidebars” && $pb_active == “true”) { ?>
<div id=”comment-area” class=”container”>
<?php } else { ?>
<div id=”comment-area”>
<?php } ?>
<?php comments_template(”, true); ?>
</div>
<?php } ?>
</div>
<?php } ?><!– CLOSE page –>
</div><?php endif; ?>
<?php if ($sidebar_config == “left-sidebar”) { ?>
<aside class=”sidebar left-sidebar <?php echo $sidebar_class; ?>”>
<div class=”sidebar-widget-wrap sticky-widget”>
<?php dynamic_sidebar( $left_sidebar ); ?>
</div>
</aside>
<?php } else if ($sidebar_config == “right-sidebar”) { ?>
<aside class=”sidebar right-sidebar <?php echo $sidebar_class; ?>”>
<div class=”sidebar-widget-wrap sticky-widget”>
<?php dynamic_sidebar( $right_sidebar ); ?>
</div>
</aside>
<?php } else if ($sidebar_config == “both-sidebars”) { ?>
<aside class=”sidebar right-sidebar col-sm-3″>
<div class=”sidebar-widget-wrap sticky-widget”>
<?php dynamic_sidebar( $right_sidebar ); ?>
</div>
</aside>
<?php } ?></div>
<?php if ($sidebar_config != “no-sidebars” || $pb_active != “true”) { ?>
</div>
<?php } ?><!–// WordPress Hook //–>
<?php get_footer(); ?>July 14, 2015 at 9:11 pm #164047beherawr
ParticipantThis can happen also in some default themes like Twenty Fifteen (should work in Twenty Twelve though), but can also be easily fixed by placing the bbPress template files into a child theme.
I tried copying my ‘css’ and ‘bbpress’ directories from my template files to my theme as outlined in your link, however it changed nothing.
Do profiles show up without BuddyPress?
Not quite sure what you mean…. if you mean can I see a user profile with bbpress deactivated then the answer is no.
Also, the link to the ‘Edit Profile’ button is exactly what I needed, however it currently returns to 404 because of the previous unresolved issue.
July 14, 2015 at 4:36 pm #164040In reply to: Remove email from guest posting
Robkk
ModeratorIs there STILL no way to do this? I have anonymous posting allowed, but canāt eliminate the email box. I donāt want bbpress collecting email addresses.
By default the email address is still required for anonymous posting.
You might need to hire a developer to create this functionality for you.
July 14, 2015 at 3:26 pm #164031Robkk
Moderator1. Users are set to be able to edit their posts/replies, and the Edit button does show up, however when they click on Edit it simply goes to 404. Admins also cannot edit via the Edit button without 404.
This can happen also in some default themes like Twenty Fifteen (should work in Twenty Twelve though), but can also be easily fixed by placing the bbPress template files into a child theme.
https://codex.bbpress.org/theme-compatibility/
2. User profiles are not showing up. Upon clicking on an avatar or manually typing in the profile url (with my username) it returns 404.
Do profiles show up without BuddyPress?
(I also need to figure out how to put an āEdit Profileā button somewhere, but that wonāt matter if I canāt fix these other two issues)
Works for bbPress profiles though, I might update it for BuddyPress later.
July 14, 2015 at 11:08 am #164021PinkishHue
ParticipantHmm that’s a stinker.
What URL are you actually taken to when you get the 404 message, is the URL right? I believe it should be – ‘my-post-title/edit’
Have you tried disabling all other plugins AND using the default theme at same time? (difficult if the site is live of course)
If it’s not on a live site maybe try a fresh bbpress install? Also there are some repair tools in the settings you can try (I haven’t had experience using these but it’s worth a try)
July 13, 2015 at 9:34 am #163986beherawr
ParticipantInstalled bbpress through wordpress and everything is going great except for two problems.
1. Users are set to be able to edit their posts/replies, and the Edit button does show up, however when they click on Edit it simply goes to 404. Admins also cannot edit via the Edit button without 404.
2. User profiles are not showing up. Upon clicking on an avatar or manually typing in the profile url (with my username) it returns 404. (I also need to figure out how to put an ‘Edit Profile’ button somewhere, but that won’t matter if I can’t fix these other two issues)
What I’ve already done:
-Switched to a default theme, didn’t change anything, switched back to Gameplanet theme
-Disabled all plugins except bbpress, problem persisted
-Changed permalink type to something else and then back again, problem persistedI would greatly appreciate any help that could be offered as I really need this working by next week. If it’s something that involves an in-depth look I’d even be willing to pay someone to help, although I fear it’s probably a simple problem that I’m just overlooking.
Contact email – emooreofficial@gmail.com
Forums – http://wcg.website/wp/index.php/wcg-forumsJuly 11, 2015 at 4:02 pm #163942In reply to: Members cannot see private topics
Robin W
ModeratorThe ‘something happened’ is unfortunately the key to this.
Users will have a role, and the default roles are stated in
so as long as a user has the right level, then the default will tell you what they should have.
But an plugin, or change to functions code can change the default roles, so without pouring over the code, it is impossible to say whether a user has a particular level beyond seeing what they can do.
So you’ll need to come back to ‘something happened’ to wpork out wthat that was and why it affected.
So have you done
theme updates
plugin updates
changed themes
added or deactivated pluginsJuly 10, 2015 at 5:02 am #163894Topic: change bbpress default theme
in forum ThemesPascalKroeze
ParticipantHi guys,
In the passed I created a website with bbpress.
The default bbpress theme was horrible bad readable.
So I found a way to change the theme so it would match my wordpress theme.
After update the theme got reset to the default bbpress theme again.Now I have created a new wordpress website.
I stumble at the same problem again.Is there something simple how I can change the bbpress theme (user friendly)
I have been reading forums and this is really giving me an headache, all solution are based on editing files, creating child theme ccs files etc etc, all complicated stuff.There must be something user friendly to change the default bbpress theme right?
Is does not have to match my wordpress theme, if I can just select something different that would be great.Friendly regards,
Pascal
July 9, 2015 at 2:46 pm #163866In reply to: Problem on installation
Robkk
ModeratorYou can add a custom link to your forums in the menus section.
it should be yoursite.com/forums by default.
July 7, 2015 at 3:03 pm #163808In reply to: WP Users Links on BBPress Forums
Robkk
ModeratorUsually when you have BuddyPress installed the Extended Profiles component is activated by default, bbPress forum user profiles links use the BuddyPress extended profiles.
You can see if copying the BuddyPress templates into your child theme would fix things.
July 5, 2015 at 10:32 am #163747In reply to: BBCode Buttons?
Robkk
Moderatorif you have the pro version they give you an editor for the bbcode/shortcode buttons.
If you are messing with the bbPress default quicktags you can change the buttons output display to bbcode/shortcodes instead of html.
If you look at this you can see that it says you can copy the Javsacript from bbPress to your custom child theme.
https://codex.bbpress.org/theme-compatibility/
So you can copy the editor.js file from bbPress and created custom buttons for your bbPress installation from there. You can see an example to change the output of the code button to just use quote marks.
/* Use backticks instead of <code> for the Code button in the editor */ if ( typeof( edButtons ) !== 'undefined' ) { edButtons[110] = new QTags.TagButton( 'code', 'code', '<code>', '</code>', 'c' ); QTags._buttonsInit(); }This will I think use the bold, italics , and lists format that they use in the plugin.
/* Use some bbcode outputs for the quicktags editor in bbPress */ if ( typeof( edButtons ) !== 'undefined' ) { edButtons[10] = new QTags.TagButton( 'strong', 'b', '[b]', '[/b]', 'b' ); edButtons[20] = new QTags.TagButton( 'em', 'i', '[i]', '[/i]', 'i' ); edButtons[80] = new QTags.TagButton( 'ul', 'ul', '[ul]', '[/ul]', 'u' ); edButtons[90] = new QTags.TagButton( 'ol', 'ol', '[ol]', '[/ol]', 'o' ); edButtons[100] = new QTags.TagButton( 'li', 'li', '[li]', '[/li]', 'l' ); QTags._buttonsInit(); }July 4, 2015 at 11:54 am #163728In reply to: SMF Import to bbPress
timsilva_
ParticipantHi Stephen! Thanks for all of your volunteer work on this, I greatly appreciate it. š
Just a few questions, and I did do a few days of research (with no luck) before asking.
1.) Any plans to support importing of private messages? I plan to use BuddpyPress + bbPress, so the feature will be covered. What are the chances of adding another checkbox to “optional settings” that says “Attempt to import private messages to BuddyPress”
2.) I have noticed that my existing SMF database had a handful of deleted accounts, so my settings left those posts behind as “Guest” posts (and it displayed the deleted user’s old username). In WordPress + bbPress, I created the original admin/keymaster user in my fresh install. After doing the SMF to bbPress import, the “Guest” posts from the deleted account are automatically assigned to the existing admin/keymaster user that I created in WordPress. Is there a cleaner way to handle this default behavior? Do these posts from deleted accounts require being assigned to an account? If not, could I somehow mass re-attribute these posts to a different account?
July 4, 2015 at 5:52 am #163719In reply to: bbpress full width help (removal of sidebar)
mtupuschies
ParticipantHi,
try the following:1. In your themes folder create a new folder called “bbpress”
2. Then go to: ../wp-content/plugins/bbpress/templates/default/extras
3. Copy all these files into the folder you created in step one.
4. Edit the files in ../wp-content/themes/marketica/bbpress:Every file in there has the line (close to the bottom):
<?php get_sidebar(); ?>
Change this to:
<?php /*get_sidebar();*/ ?>This should completely hide the sidebar. Otherwise maybe contact the author of the theme. Maybe the theme already contains forum template which may overwrite the bbpress originals.
Hope I could help!
July 3, 2015 at 6:28 pm #163706Robkk
ModeratorI have found a way to hide most notices by CSS. Question is, can I keep it that way, or will there be any important notices not showing up later when the user is interacting with the form:
Well that is the thing , I would have to know what is important to you. The notice that shows when a users post is in moderation might be useful so that they know the moderator has to approve their post , but that will not be in til 2.6 of bbPress. Some plugins might hook into that , and some notices might be for post flooding and maybe some users might think their is a bug on your site if they do not know why they couldn’t post.
The Topic/Forum descriptions could also be removed with some PHP using this function and you can place it in a plugin like this.
https://wordpress.org/plugins/functionality/
It should be Plugins > Edit Functions. You can place any code snippet you might see useful into this.
You can place the snippet after the plugin information.
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 ''; }The users plugin you suggest is from 2 years ago; I would not install that. I am told again and again by my hoster and main plugin providers that old plugins are one of the greatest vulnerabilities.
It should be fine , it is a fairly small plugin and very well coded.
You can see the plugins main code functionality in the link below. There is also an empty languages folder and a readme.txt file also in the plugin.
https://gist.github.com/jaredatch/3868274
And then I had to turn off the buttons for html because they are badly formatted, barely legible in white text on light-grey background.
You can fix that with some CSS too. Here is a simple black background to fix it.
#bbpress-forums #qt_bbp_reply_content_toolbar input, #bbpress-forums #qt_bbp_topic_content_toolbar input { background-color: #000; }I also would like to offer my clients a possibility to create a profile page with some background on themselves and the business project they are working on.
There is a bunch of plugins that add custom fields like BuddyPress some premium plugins add social features too , just like BuddyPress. The thing I am guessing you want is to highlight it on the Home of the users profile page with the forum role and user stats. This would require some PHP coding to achieve. By default the user can add a description and it would show up on the front-end , nothing too crazy.
July 3, 2015 at 5:18 am #163690In reply to: Styling the visual editor
Nuchaz
ParticipantI guess I jumped the gun on asking for help on this. A little more digging and I found my answer. I found a way to automatically load my default style sheet in place of the tiny mce style sheet and this basically automatically styled the editor to look like everything else.
Just had to add this to my functions.php:if ( ! function_exists('tdav_css') ) { function tdav_css($wp) { $wp .= ',' . get_bloginfo('stylesheet_url'); return $wp; } }July 1, 2015 at 11:22 am #163644In reply to: New Topic Link not showing on fronted for user
Robin W
Moderatorcreate a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/user-topic-created.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/user-topic-created.php
bbPress will now use this template instead of the originalThen modify or overwrite woth your modified file
July 1, 2015 at 12:21 am #163623In reply to: Active Forum Link In Main Menu
Robkk
ModeratorI don’t think some themes do this by default , this site has something custom for that.
June 30, 2015 at 11:11 pm #163611In reply to: Odd Ugly Forum Navigator Above Good Looking One
Robkk
ModeratorThe ugly one is the default bbPress layout. Since I do not know how you go the other links below that I can suggest maybe hiding one of them with CSS.
June 30, 2015 at 8:35 pm #163600In reply to: Width change
Robkk
ModeratorThe ācssā directory contains style sheets that work with the default markup. Copy any you want to modify into a directory named ācssā in your themeās root. eg. /wp-content/themes/%your-theme%/css/
June 30, 2015 at 8:24 pm #163598In reply to: Avatars disappeared
Robkk
ModeratorbbPress does not have an area to upload avatars it mostly relies on Gravatar by default. You are probably using BuddyPress , if you are contact BuddyPress support.
-
AuthorSearch Results