Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 5,976 through 6,000 (of 26,860 total)
  • Author
    Search Results
  • #171962

    In reply to: smiles in the bbpress

    Pascal Casier
    Moderator

    Hi,

    If you want custom smilies or stickers, then check for plugins like ‘wp-Monalisa’ or ‘Font Emoticons’, however bbPress can use WordPressโ€™s supplied smilies, see https://codex.wordpress.org/Using_Smilies and https://codex.wordpress.org/Emoji
    ๐Ÿ˜› ๐Ÿ’€ ๐Ÿ‘ป ๐Ÿ‘ฝ ๐Ÿ˜บ ๐Ÿ˜ธ ๐Ÿ˜น ๐Ÿ˜ป ๐Ÿ˜ผ ๐Ÿ˜ฝ ๐Ÿ™€ ๐Ÿ˜ฟ ๐Ÿ˜พ ๐Ÿ™Œ ๐Ÿ‘ ๐Ÿ‘‹ ๐Ÿ‘ ๐Ÿ‘Š

    Pascal.

    #171960

    In reply to: Responsive Issue

    Anticosti
    Participant

    I am having the same issue.
    (https://wordpress.org/support/topic/feature-request-responsive-design?replies=1)

    Here’s what I posted (edited):
    Would be so great if bb style pack would support Responsive Design. When I browse my Forums on iPhone (portrait and landscape), the headers: ForumTopicsPostsFreshness (they all overlap horizontaly) making these unreadable and useless.

    I have the feeling that using TABLES instead of DIVs and or UL, LI, in this case, would be very helpfull.

    Using TABLES (th, tr, td) could play nice with a plugin like FooTables (Responsive Tables).

    Kind Regards,

    #171958
    stewmills
    Participant

    I temporarily solved my problem by installing this widget, as I just got FTP access today and have not attempted to follow other options via creating a bbPress.php page, etc.

    Here’s the plugin: https://wordpress.org/plugins/bbpress-login-register-links-on-forum-topic-pages/

    You can edit it and configure 4 different places that it shows up, but it’s not in the plugin options, you have to “edit” the plugin and you’ll see the code that designates what shows up where, such as this:
    add_action(‘bbp_template_before_pagination_loop’,’bbpressLoginRegisterLinksOnForumPage’);

    #171956

    In reply to: Password reset

    Pascal Casier
    Moderator

    If you have a standard bbPress installation, then passwords are handled by WordPress.
    In most cases there is a (security) plugin that blocks something, so try deactivating other plugins.

    Do you get the email back after the request for password reset ?
    How far do you get after clicking on the reset password link ?

    Pascal.

    #171936
    romelagy
    Participant
    #171931

    In reply to: Theme like bbpress.org

    Robin W
    Moderator

    bbpress doesn’t have theme’s – it uses your sites theme, but sometimes integration is not great.

    Unfortunately your link produces a certificate error (The security certificate presented by this website was issued for a different website’s address.) on the https side, so I didn’t visit.

    If it is just styling rather than function try my plugin

    https://wordpress.org/plugins/bbp-style-pack/
    Otherwise give us a valid link, and I’ll take a quick look

    #171929
    Robin W
    Moderator
    #171921
    Pascal Casier
    Moderator

    Hi,
    That seems like a pure WordPress question, not really for bbPress.
    But have a look at this: http://wordpress.stackexchange.com/questions/15304/how-to-change-the-default-registration-email-plugin-and-or-non-plugin

    Pascal.

    #171916
    stewmills
    Participant

    Facts:
    โ€“ WordPress 4.2.2
    โ€“ bbPress 2.5.8
    โ€“ Theme โ€“ Karma 3.0.3

    How do I change who gets notified when there is a new user registration request? The default email address that is in my WP profile is not necessarily who I want to get the new user requests as the persons managing the forum are separate from those managing the general site, etc.

    Thanks

    #171914
    awal16
    Participant

    I added the custom capabilities to my functions.php in the child-theme. When I go to Users, in the back-end of WordPress, there are warning texts like, Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘add_new_roles’ not found or invalid function name in C:\xampp\htdocs\mnddb_nieuw\wp-includes\plugin.php on line 235.

    What did I do wrong?

    My code in the function.php looks like:

    <?php
    // Exit if accessed directly
    if ( !defined( 'ABSPATH' ) ) exit;
    
    // BEGIN ENQUEUE PARENT ACTION
    // AUTO GENERATED - Do not modify or remove comment markers above or below:
    
            
    if ( !function_exists( 'chld_thm_cfg_parent_css' ) ):
        function chld_thm_cfg_parent_css() {
            wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css' );
        }
    endif;
    add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css' );
    
    // END ENQUEUE PARENT ACTION
    
    // Nieuwe forumrolnaam toevoegen
    function add_custum_role($bbp_roles){
    	$bbp_roles['bbp_global_moderator'] = array(
    		'name' => 'Globale moderator',
    		'capabilities' => custom_capabilities( 'bbp_global_moderator' )
    	);
    	return $bbp_roles;
    }
    
    // Nieuwe forumregels toevoegen
    add_filter('bbp_get_dynamic_roles', 'add_new_roles', 1);
    
    function add_role_caps_filter($caps, $role) {
    	// Only filter for roles we are interested in!
    	if ($role == 'bbp_global_moderator')
    		$caps = custom_capabilities($role);
    	
    	return $caps;
    }
    
    add_filter('bbp_get_caps_for_role', 'add_role_caps_filter', 10, 2);
    
    function custom_capabilities($role) {
    	switch($role) {
    		// Capabilities for 'global_moderator' role
    		case 'bbp_global_moderator';
    			return array(
    				// Primary caps
    				'spectate'				=> true,
    				'participate'			=> true,
    				'moderator'				=> false,
    				'throttle'				=> false,
    				'view_trash'			=> true,
    				
    				// Forum caps
    				'publish_forums'		=> false,
    				'edit_forums'			=> false,
    				'edit_others_forums'	=> false,
    				'delete_forums'			=> false,
    				'delete_others_forums'	=> false,
    				'read_private_forums'	=> true,
    				'read_hidden_forums'	=> false,
    				
    				// Topic caps
    				'publish_topics'		=> true,
    				'edit_topics'			=> true,
    				'edit_others_topics'	=> false,
    				'delete_topics'			=> true,
    				'delete_others_topics'	=> false,
    				'read_private_topics'	=> true,
    				
    				// Reply caps
    				'publish_replies'		=> true,
    				'edit_replies'			=> true,
    				'edit_others_replies'	=> false,
    				'delete_replies'		=> true,
    				'delete_others_replies'	=> false,
    				'read_private_replies'	=> true,
    				
    				// Topic tag caps
    				'manage_topic_tags'		=> false,
    				'edit_topic_tags'		=> false,
    				'delete_topic_tags'		=> false,
    				'assign_topic_tags'		=> false,
    			);
    			break;
    		default :
    			return $role;
    	}
    }
    
    siparker
    Participant

    the answer is probably. although i would say i am not going to let the last 3 weeks go to waste because of a url rewriting issue.

    I am happy to put in $200 to sponsor this fix. anyone else willing to add something to this and make a bugfix bounty style approach. it might help to kickoff the bbpress development again.

    Basically i want to have the ability to create the forum url permalink structure and the thread permalink structure. as per this ticket, https://bbpress.trac.wordpress.org/ticket/2258

    I dont care where it goes although within the tools > forums would be fine. or under settings permalinks a forum tab there to actually group similar tools in a sensible way.

    If you want to do this development please let me know

    Plugin is required also and must not be htaccess rewrites. As i use nginx not apache htaccess style fixes are not an option which suits everyone.

    #171883
    Stephen Edgar
    Keymaster

    You can also use bbp_create_initial_content() with some bbp_parse_args() to generate your content, bbPress uses this to crate some sample/initial content when installing on multisite installs.

    https://bbpress.trac.wordpress.org/browser/branches/2.5/includes/core/update.php#L174

    #171875
    Robin W
    Moderator

    no, core functions in bbpress cannot be put in other folders.

    Generally it is not recommended that you change bbpress itself. Rather almost all bbpress functionality can be filtered, so that the plugin remains complete and changes are put in your theme’s functions file using wordpress filering capability.

    What changes did you make? If small, let me know which lines in which file, and post the changes here, and I’ll try to help you with what you should put in your functions file.

    You should also make those changes (and the template files you copied ) in a child theme, so that theme updates donlt overwrite these

    https://codex.bbpress.org/functions-files-and-child-themes-explained/

    AlamSyed
    Participant

    Hi all,
    I have a hierarchical forums (> 20) and I use bbp_insert_topic functionality to create topics programmatically. Everything is fine so long as we rely only using bbpress. But suppose I want to create a post and want a corresponding topic following the same hierarchy and tags, how can I do that ?

    That is, how can I merge something like this:

    WordPress <—–> bbpress

    • Topics <—–> Posts
    • Categories <—–> Forum Categories
    • Tags <—–> Topic Tags

    All this is because I wish to avoid duplications of category names and tags across the some posts and topics that I intend to create.

    I know how to create a post with a given parent id, using wp_insert_post,
    Can I set the post id as a child to a Forum Category ? Am I mixing apples and oranges , can it be done ? What should be a right approach ?

    #171856
    maaartin2
    Participant

    Thank you very much for your advices.
    This really change root forum page for my own page, but I thought if is possible simply change style from archive for example to post or page. I want to only change wordpress style format but forum content preserve. I use this theme https://www.designwall.com/wordpress/themes/wallpress/ and this theme has archive divided to some parts and forum is bigger than one archive part, therefore I need change style to classic post or page.

    #171850
    Pluew
    Participant

    bbPress 2.5.8

    Wordpress 4.4.2

    Where can my users register for my bbpress forum?

    Thank you

    #171834
    Pascal Casier
    Moderator

    Hi,
    I suppose you mean that you want to change the default page that you get when going on /forums ?
    If so, just create a page in WordPress and change the slug to ‘forums’, then put anything you want in that page.

    The standard page shown when going on /forums is content-archive-forum.php.

    You can customize all templates if you want, just read some pages of the bbPress Codex: https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    Pascal.

    #171814
    maaartin2
    Participant

    Hi,
    I’m beginner in creating wordpress website. Is possible change type root forums page from post-type-archive to for example single-post or basic page? I have template where is archive divided to some parts and archive post with forum has very small width.
    Thanks for all replies.

    #171812
    Robin W
    Moderator

    The problem is that wordpress was designed to work with templates that were different for each type eg template for page with sidebar, another template for page without sidebar.

    The trouble is that theme authors are getting too clever ,and nowadays write a single big page template that bbpress cannot easily react with.

    So your theme displays one template for the main page, but then bbpress can’t work with it for the other sub pages, as it doesn’t know how the theme is using the template.

    Ok, so that’s the explanation, but probably doesn’t help you at all.

    If you know some wp stuff then this might help

    https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    #171811
    stewmills
    Participant

    Sorry if this is a duplicate…seemed to get an odd behavior when attempting to submit previously.

    Facts:
    โ€“ WordPress 4.2.2
    โ€“ bbPress 2.5.8
    โ€“ Theme โ€“ Karma 3.0.3

    I have created the following forum on my site (currently hidden from the top menu but accessible via links provided): http://www.cytoviva.com/forum/

    In the above link I get the forum login and other options in the right sidebar as I prefer.

    However, when you get one layer deeper into the forums, topics, posts, etc. the sidebar is not visible as seen here: http://www.cytoviva.com/forums/forum/registration-instructions-and-forum-guidelines/

    I want the sidebar to be visible on all pages/posts/etc. so someone reading a post can login from that page or request new access from that page and as well logged in users will always have the sidebar details and option to logout from any page within the forum.

    Initially the sidebar was not visible at all and I finally realized that my forum page (using the shortcode [bbp-forum-index] on my โ€œforumโ€ page to display the forum) was using the right template and when I changed it to โ€˜Right Sidebarโ€™ and selected the option at the bottom to display my newly created sidebar (User Forum Login Sidebar) I started seeing what I wanted to see on the main forums page.

    However, when I go to my individual forums in the WP control panel and make sure they are also set under the โ€˜Right Sidebarโ€™ page template and as well have the option checked to display my sidebar, it seems to do nothing.

    I have read a host of other posts here today and it seems that the answers to getting the sidebar to display as I want vary per person/situation hence my additional post. I donโ€™t want to have to create a new .css file as currently I donโ€™t have access to our host and FTP to create new files so I was hoping to find a solution that is simple as me not having a button checked somewhere or something trivial.

    I am somewhat new to WP and bbPress so the more fundamental the advice the better. My goal is to try and solve this with a little troubleshooting versus new child .php pages, etc.

    Thanks in advance!

    #171804
    Robin W
    Moderator

    I haven’t tried it, but this plugin may be what you want.

    If you try it, PLEASE let us know if it works and does what it says !

    https://wordpress.org/support/plugin/bbpressmoderation

    #171789
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #171779
    fca0secretary
    Participant

    I am trying to edit the phrase “Oh bother! etc,” but when I get to the Plugin Editor it’s saying that the default template is inactive, like this –
    bbpress/templates/default/bbpress/feedback-no-replies.php (inactive)
    I am using WordPress 4.4.2 running Twenty Sixteen theme. and bbPress is Version 2.5.8
    My site is http://www.fagleyforum.site
    How can I find the right place to edit this phrase?

    Jeff McNeill
    Participant

    Hahaha tags “sleeping pill store” tag should be a signal that someone is asleep at the tiller. Really folks, this place is asleep, and all Robin W. does is state that it is free software and you should be durned grateful, and not try and wake anybody up.

    Development is tediously slow, regardless of some $50k that was raised a few years ago. 2.6 should supposedly fix the issue with not being able to replace posts with forum discussions. Surely that is also why the plugin that actual does that hasn’t been updated in two years. And 2.6 was 4 months late in May 2014. So when will it ever be released?

    This is simply too long! Obviously this project is coasting on the coattails of integration (and requirement of use) in BuddyPress and that it is an anointed project of WordPress.org. Anything less would have near zero users already.

    So much functionality is needed to be reasonable. There appears to be a single active developer committing to the code: https://www.openhub.net/p/bbpress/commits/summary

    But really, this was a complaint over a year and a half ago, and it ain’t changed. Very sad as the potential is quite big. How else do you explain 16,000+ downloads of that plugin that has been abandoned: https://wordpress.org/plugins/bbpress-post-topics/

    vaporflavor
    Participant

    Nevermind figured it out.

    BBPress members are definitely linked to WordPress users. They are not separate.

    And to get the login/register links somewhere besides the sidebar requires digging through the plugin theme files and some work, which I haven’t finished yet. =P

Viewing 25 results - 5,976 through 6,000 (of 26,860 total)
Skip to toolbar