Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 12,901 through 12,925 (of 26,879 total)
  • Author
    Search Results
  • #120547

    In reply to: Custom login Page

    innomarkglobal
    Participant

    Shane answer is right you should take a look before any modification.
    https://codex.wordpress.org/Customizing_the_Login_Form#Make_a_Custom_Login_Page

    #120545
    jakewho
    Participant

    I deactivated all of my plugins and reactivated them one by one. It turns out that the conflicting plugin is Yoast WordPress SEO v1.2.8.7

    http://yoast.com/wordpress/seo/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpseoplugin

    The SEO plugin is very important to my site. Is there a way to resolve this conflict?

    Thanks much.

    #120543

    In reply to: Custom login Page

    Shane Gowland
    Participant

    Hi Lesego,

    As a general rule, we strongly advise users not to modify core WordPress/bbPress files under any circumstances. There are a whole host of issues you could be causing.

    I recommend taking a look at “Customizing the Login Form -> Make a Custom Login Page

     

    fuzzybee
    Participant

    Once can check “Use the fancy WordPress editor to create and edit topics and replies”, yes.
    However, the problem is such editor confuses people.
    (I don’t suppose majority of my audience recognise, not to mention knowing how to use HTML)

    1) “Visual” and “HTML” what the heck?
    2) They don’t intuitively know that they need to switch to the “HTML” editor to insert images.

    The editor used here is not fantastic but it is much better than the default WordPress one, for forums.

    #120529

    Topic: Custom login Page

    in forum Themes
    #120523
    Stephen Edgar
    Keymaster

    I haven’t got a fix for you though hopefully @jjj can do some magic.

    The issue relates to how your user profiles /users/admin/ are including ‘recent topics’ on that same page rather than the default bbPress /users/admin/topics/, thus if you go to /users/admin/topics/page/2/ everything is perfect.

    In your custom template file user-details.php you have added lines 16-33 but this is causing bbPress to generate the pagination links for the current /user/admin/ URL.

    I know I have found the problem, but a solution, nope, I’m stuck, my PHP skills are not quite there yet 😉

    References: Changeset 4322 and /includes/topics/template-tags.php#242 bbp_is_single_user_topics pretty permalinks.

    Your site is awesome to say the least and I see you have pimped it…

    #120512
    Stephen Edgar
    Keymaster

    Can you please create a new ticket in the bug tracker detailing your request please.

    #120498
    andymacleod
    Participant

    I’ve been working on a MMORPG guild site with 3 distinct levels of Membership with posting rights:
    – guests/potential members who can post on PUBLIC forums
    – full member who can post of the guild’s PRIVATE forums
    – officer/moderators who can post of HIDDEN forums.

    I chose to use WordPress and bbPress instead of a dedicated guild-hosting solution to make the site different from most other guild sites, taking advantage of WordPress’s theming and bbPress’s simplicity.

    bbPress 2.2.1 only seem to expect only 2 levels of membership – there is no option to have a “guest/registered” user who can post on public forums. However, I did manage to create 3 levels of member by making a small change to a core file, found here:
    bbpress\includes\core\capabilities.php

    Go to where the Spectator role is defined (lines 134 to 169) and change them to have the same capabilities as for the participant role (lines 225-260). Then change line 146 ‘read_private_forums’ back to ‘false’.

    The problem with this approach: Your “spectator” role is now no longer merely a spectator. And, of course, this amendment would be overwritten by updating bbPress. Alternatively, you could create another role here (would be good addition for bbPress 2.3) but you need to edit other parts of the file to do so…

    Another issue: I wanted custom titles to appear on topic posts beside member’s avatars. To do this, I had to create new WordPress roles using Justin Tadlock’s Member plugin. I copied the WordPress default permissions for the “Subscriber” role and gave it the name “Guest”. I did the same for the “Member” role, and I copied the default Editor roles for the guild “Officer” role – because I wanted them to be able to edit pages and posts too.

    The solution seems to work although it is not ideal… I thought I’d pass it on in case there were other people in a similar position who wanted more flexibility in terms of roles. Please, please, please could making it possible to change forum roles and titles a priority update for the next major update to bbPress.

    Thanks,

    Andy

    You’ll have better luck looking into the existing templates, and copying existing functionality. Check in: templates/default/bbpress/content-archive-forum.php

    https://bbpress.trac.wordpress.org/browser/trunk/templates/default/bbpress/content-archive-forum.php

    #120488
    Michael
    Participant

    Gotta agree with John James Jacoby, you’ve gotta expect to spend a decent amount of money to hire a contractor to do this kind of work. It’s not trivial, and was never meant to be (my opinion).  My guess is you’re looking at a decent project size of 20-40 hours minimum, unless the task is very basic.

    To put it in perspective, I’ve put in about 20+ hours to customize my bbPress installation so that it matches my Wootheme. bbPress documentation could be better, but it’s not too difficult if you can do rudimentary CSS3 coding (or pick it up on the fly, as I have).  Now, getting Buddypress to integrate and play nice with my theme and Woocommerce site, on the other hand, has consumed a lot more time than bbPress integration has.

    Best of luck, and don’t skimp on a good WordPress consultant.

    Michael

    #120479

    @tzeldin88 – Again, difficult to be confident, but you could filter bbPress’s role mapping, to add custom comparisons for your newly created roles. Then bbPress will just naturally make:

    X site role = Y forum role

    with each new user that visits the site.

    The filter you’d want to use, is bbp_get_user_role_map. It looks like this:

    /**
     * Return a map of WordPress roles to bbPress roles. Used to automatically grant
     * appropriate bbPress roles to WordPress users that wouldn't already have a
     * role in the forums. Also guarantees WordPress admins get the Keymaster role.
     *
     * @since bbPress (r4334)
     *
     * @return array Filtered array of WordPress roles to bbPress roles
     */
    function bbp_get_user_role_map() {
    
    	// Get the default role once here
    	$default_role = bbp_get_default_role();
    
    	// Return filtered results, forcing admins to keymasters.
    	return (array) apply_filters( 'bbp_get_user_role_map', array (
    		'administrator' => bbp_get_keymaster_role(),
    		'editor'        => $default_role,
    		'author'        => $default_role,
    		'contributor'   => $default_role,
    		'subscriber'    => $default_role
    	) );
    }
    #120477

    In reply to: bbPress 2.2.1

    @rossagrant – BuddyPress is a whole different animal. It assumes every user on your site always has a link to their root profile. If you have BuddyPress bolted on top, you’re probably okay.

    What BuddyPress does *not* do yet, and likely won’t for some time, is separate multiple bbPress forums across multiple sites on a multisite network, and give them their own spot in a user profile.

    I’ll end up building something similar to this for WordPress.org/BuddyPress.org/bbPress.org eventually, but until then, it’s only pseudo-code in my imagination.

    #120474

    A survey done earlier this year came up with $55 as the average hourly rate for WordPress consultants, worldwide. Considering that’s the median, and the time it will take to start, monitor, and audit a data migration, my guess as to why you’re not having much luck is because $20 is too low of a bid for taking on the responsibility.

    bbPress does make this process pretty simple, considering the labor it does under the hood. If you’re already experiencing issues, it’s likely going to take more than .5 hours to complete. Anything beyond 30 minutes, and it’s time better spent on a different job.

    I say all of this, only to be helpful and informative, to help y’all make better educated bids if you’re wanting to pay someone for their time. If you want to keep trying this yourself, become familiar with how to backup and restore your data. Once you have the right tools and become relatively proficient, it’s actually pretty easy.

    Good luck getting everything moved over. Let us know if you have questions, should you dive in again.

    #120472

    In reply to: bbPress 2.2.1

    @rossagrant – You are correct. The downside to only being a “Member” and not having a role on the site, is bbPress suppresses profile pages for those users. This is mostly because of WordPress Multisite, to prevent guessing user profile slugs and pulling up profiles of users that don’t actually exist on the site, and also to not link off to spam/deleted user accounts.

    Lots of moving parts.

    Naturally, if you *need* to override any of these weird nuances, there are filters everywhere for developers to make modifications to these behaviors. Ideally, bbPress comes with the solutions that are best for everyone, and the other answers come when specific questions like this are asked.

    If this turns out to not be the best configuration, we can always change it, but I suspect it’s the best compromise that’s currently possible.

    #120471

    @tzeldin88 – There’s a tool to batch the user forum role process, in Tools > Forums

    It’s likely the custom roles you’re making won’t work, at least I haven’t tried it yet myself. While it’s not impossible to make work, I don’t think it’s a great setup for the future of your site.

    WordPress purposely excludes a UI for roles and capabilities because they’re easy to muck up, and difficult to reset back to stock.

    #120456

    In reply to: JS Error: suggest

    Oops, sorry, saw the Trac URL just as I was posting! I put it into there, linking for reference:

    https://bbpress.trac.wordpress.org/ticket/2046

    #120450
    sambedingfield
    Participant

    As a YouTube partner I started to look for a fresh approach to involving my subscribers. I’ve been both an illustrator and web developer in the past, so it made sense to play to my strengths and use these as key factors. 8 months later of working solo on this project and RatsClan.com is now a fully featured community site with a built in unique Playing Card system. Members can unlock achievements, go up ranks, grow their card collection, battle against one another, earn medals and much more.

    The site is built upon the latest WordPress, with the bbPress forum plugin installed. The simple and tactile user interface is consistent throughout each aspect, with large (seasonal changing) illustrations when playing cards. This is all brought to life with animated elements and sound effects.

    Games are created as custom posts, and become published when another user has accepting to challenge them. This allows users to share their experiences or look for opponents through social networks. Experience points and currency is also stored as custom meta, which is all cached to help load time.

    The feedback from our members has been phenomenal, and I’m excited to see how far I can push the boundaries of browser based gaming.

    Please feel free to browse the site: http://www.ratsclan.com/

    Also, here’s a replay of one of my recent games: http://www.ratsclan.com/game/ba6b6a4e/

    This is also my first ever work on a WordPress or bbPress site, so any feedback is much appreciated!

    #120444
    baydream
    Participant

    Hi All
    After installing and activating the plugin I have the following message, any ideas on how to get rid of this?

    Fatal error: Call to undefined function user_can() in /homepages/**/*****/htdocs/**/wp-content/plugins/bbpress/includes/topics/capabilities.php on line 226

    I do not know the wordpress version as I cannot access the information, the bb plugin was downloaded today. I believe the theme installed was Atahulpa

    #120435
    Pippin Williamson
    Participant

    Stickies are pretty difficult to include with custom post types as WordPress doesn’t have native support for them. I’d suggest you look at how the bbp_has_topics() function works: https://bbpress.svn.wordpress.org/trunk/includes/topics/template-tags.php

    If you look through that function you’ll see that bbPress manually pulls in all of the sticky posts and then passes the array of IDs to the “include” parameter in a second query.

    #120430
    Pippin Williamson
    Participant

    All user data is stored in the WordPress users and usermeta table in the core database. It is secure and will remain even if you deactivate bbPress.

    fuzzybee
    Participant

    I’m trying to create a custom forum index page which should look exactly like the default forum index page with forum names, number of topics, number of posts, last active topic etc. but sorted alphabetically based on forum names.

    I’m looking at at bbp_has_forums, bbp_forums and bbp_list_forums inside /wp-content/plugins/bbpress/bbp-includes/bbp-forum-template.php.

    However, I’m puzzled which function to use and
    What arguments/ parameters I should pass?
    the comments in bbp-forum-template.php itself says the same parameters as WP_Query() but would it make sense at all to have something like “post_type” => “forum”
    I’m sure one can be clearer/ more explicit about the parameters here in some form of documentation

    I gave it wild tries as follows
    1) The following gives me fatal error:

    $args = array(

    'orderby' => 'title',
    'order' => 'ASC',

    );

    while (bbp_forums($args)){
    bbp_the_forum();

    echo bbp_get_template_part( 'content', 'archive-forum' );

    }

    The error:
    Fatal error: Call to undefined method stdClass::have_posts() in C:\www\forums.local\wp-content\plugins\bbpress\bbp-includes\bbp-forum-template.php on line 109 Call Stack: 0.0004 333592 1. {main}() C:\www\forums.local\index.php:0 0.0006 337280 2. require(‘C:\www\forums.local\wp-blog-header.php’) C:\www\forums.local\index.php:17 0.3864 38499368 3. require_once(‘C:\www\forums.local\wp-includes\template-loader.php’) C:\www\forums.local\wp-blog-header.php:16 0.3920 38515824 4. include(‘C:\www\forums.local\wp-content\themes\bp-tap\custom-index.php’) C:\www\forums.local\wp-includes\template-loader.php:43 0.4732 38674368 5. bbp_forums() C:\www\forums.local\wp-content\themes\bp-tap\custom-index.php:42

    2) While the following just takes forever to load:

    $args = array(

    'orderby' => 'title',
    'order' => 'ASC',

    );

    while (bbp_has_forums($args)){
    bbp_the_forum();

    echo bbp_get_template_part( 'content', 'archive-forum' );

    }

    I’m using WordPress 3.4.2 and bbPress 2.1.2.
    I’ve copied all files and directories from /wp-content/plugins/bbPress/bbp-themes/bbp-twentyten/ to my theme directory.

    • This topic was modified 13 years, 4 months ago by fuzzybee.
    • This topic was modified 13 years, 4 months ago by fuzzybee.
    • This topic was modified 13 years, 4 months ago by fuzzybee.
    • This topic was modified 13 years, 4 months ago by fuzzybee.
    • This topic was modified 13 years, 4 months ago by fuzzybee.
    • This topic was modified 13 years, 4 months ago by fuzzybee.
    • This topic was modified 13 years, 4 months ago by fuzzybee.
    • This topic was modified 13 years, 4 months ago by fuzzybee.
    #120424

    In reply to: bbPress 2.2.1

    Up to you and your needs. Personally, I’d tick the box, and I suspect you’ll want to too. The reason it’s there is more for installations like WordPress.com, where the process of adding a user to a blog actually means something completely different than it does under normal circumstances.

    Also, if the box isn’t ticket, bbPress doesn’t create a profile for that user, because they won’t have a *real* role on the site. They’ll be registered, but have to assigned role; bbPress will just dynamically assign the default to them on the fly when they’re using the site.

    #120394
    c3eu5012
    Participant

    Hello,

    I am a first time WordPress user and have been designing my site for a recreational group and have stumbled upon a problem.

    My bbPress is displaying all Categories and most forums, but for some reason after I created a topic in one of the forums under a category all the forums under that category dissapeared. Now the topic I posted is displaying to the right of the category as the most recent topic, but yet there is no forums showing under the category.

    WordPress version: 3.4.2
    bbPress version: 2.1.3
    My site: http://www.c3eu.com

    #120391
    fuzzybee
    Participant

    Hi John,

    Thanks for your advices, really appreciate them.

    I’m trying to use bbPress core functions.
    Hope the documentation can be updated and improved soon.

    I was not moving between installation here.
    The old forums that our company had was based on P2 (or some kind of P2 based) WordPress theme and it’s kinda different from.
    Therefore, using WordPress export, import function is not sufficient here.
    For example, in the past, there is a topic under “Relationship” forum.
    It’s actually a pure post in WordPress term and “Relationship” is a category of posts here.

    Again, where is a good place for me to look at the bbPress’ insert functions?

    Best regards,

    #120381

    ticket created -> https://bbpress.trac.wordpress.org/ticket/2042 – I’ll do some more investigation and will post comments/suggestions in the ticket.

Viewing 25 results - 12,901 through 12,925 (of 26,879 total)
Skip to toolbar