Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 26,651 through 26,675 (of 64,535 total)
  • Author
    Search Results
  • leanderbraunschweig
    Participant

    The code got stripped! Can you post again?

    #130408

    In reply to: Date format in spanish

    LChambers
    Participant

    Ay, bbPress make me feel so happy… 😉

    add_filter ( ‘get_post_time’, ‘new_date’, 10, 3);

    function new_date ($time, $d = ‘U’, $gmt = false) {
    $translate = true;
    $time = mysql2date($d, $time, $translate);
    remove_filter (‘get_post_time’, ‘new_date’, 10, 3);
    return $time;
    }

    Un saludo

    Unsal Korkmaz
    Participant

    FirmaSite 1.1.7 released:
    download: (zip)
    changelog: 1.1.7

    Its an important release for BuddyPress that adds interaction buttons.

    For people already started to use FirmaSite theme: dont forget to keep your eyes on Tip & Tricks! I am sending some pretty neat customizations that you can easily use :)

    #130400
    gopanthers
    Participant

    The main area for content throughout my site is white. Behind it, the wrapper (around the header, content, and footer) is dark gray. But the white background for the main content area seems to be missing within bbPress, resulting in dark gray text over a dark gray background, making it impossible to read most items. (Actual post content appears with a white background so you can read those, but everything around the actual posts is gray on gray.)

    screengrab

    Why? How can this be corrected to respect the correct content area background color?

    shortoldtree
    Participant

    Thank you so so much fontadoni for the detailed reply. Works perfect fine. I had no idea what shortcodes were; my bad, should have read the documentation properly. Also, thanks for explaining how to use these shortcodes on the required page!

    linusf
    Participant

    http://domain.com/members/member/forums/replies/ is listing private replies to non logged in users. Is this working as intended?

    (this is using bbPress 2.2.4)

    #130395

    In reply to: First post not showing

    john13
    Participant

    I’m still having this issue.

    I got another site with bbpress and it works just fine.

    I think it’s something in the user access right setup…

    fontadoni
    Participant

    Hey there,

    The answer might be a no brainer for others that have been using the plugin version of bbpress for a while, but just like you I just migrated from the standalone version and suddenly I felt completely lost as I was used to editing the php templates for everything. I probably missed this explanation as it’s been a while since I visit bbpress.org.

    Here’s the deal. You need to use the shortcodes provided here: https://codex.bbpress.org/shortcodes/

    That’s the short answer. What I didn’t know was that you need to add these shortcodes on the page you create in WordPress for your forums. So, say you have your forums at yoursite.com/forums. You need to create a page in wordpress called “forums”, after you have done that, you can add the shortcodes on the page to customize bbpress to your liking (others can correct me if I’m wrong as I just recently figured this out).

    So adding [bbp-forum-index], will display your entire forum index. Then you would need to add [bbp-topic-index] to display the most recent 15 topics across all your forums with pagination.

    What I still have not been able to figure out is that when you add the login tag [bbp-login] on the homepage (not the sidebar), there’s no option for login out once you’re logged in. If you find the answer for this, let me know. Hope this helps.

    shortoldtree
    Participant

    Hey guys, I did quite a bit of research on this one but I am yet to find a solution.

    I am looking display a list of the ‘Latest Topics’ on the ‘Forum Index’ page and the ‘Homepage’ of my blog.

    This was easy in the older versions of BBPress wherein you could modify the ‘archive-forum.php’ or ‘page-front-forums.php’, but it does not work with bbpress 2.2.4.

    Anyone here knows of a solution?

    #130376
    Sudeep Acharya
    Participant

    Hi,

    I have installed the bbpress plugin along with buddypress, it’s working but strange thing is happening.
    Here is my forum but when I add the bbcode to display it, it gives me a weird look. Please check.

    Please be kind enough to tell me where I have gone wrong.

    Regards,
    Sudeep Acharya

    Stephen Edgar
    Keymaster

    @unsalkorkmaz Congrats… There is some neat code in your theme…

    @mercime
    Moderator

    @unsalkorkmaz congratulations for passing the WP theme review process 🙂 Do follow up theme reviewers mailing list if the theme’s not live in WordPress Extend Themes after 7 days.

    Cheers.

    Unsal Korkmaz
    Participant

    Yeah thanks for advice in there!
    Btw i installed BuddyPress + bbPress in http://theme.firmasite.com for theme/plugin support. If anyone want to see a live demo, you can register freely 🙂

    #130370
    wpmhweb
    Participant

    Hello,

    I am trying to modify the default bbPress theme and it is driving me crazy. What’s the best way to figure out which specific file a need to edit to add or remove code?

    Thank you!

    #130369
    fontadoni
    Participant

    Those who (like me) have recently upgraded from the bbpress standalone version to the plugin version of bbpress, will be glad to know that Arne Branchold’s WordPress plugin “Google XML Sitemaps”, has the ability to include your bbpress forum posts into your xml sitemap. You can download the plugin here: http://wordpress.org/extend/plugins/google-sitemap-generator/

    I’ve been using this plugin for years so I was glad to find this option. It took me a few days to figure this out, so I thought I would share this info in case there are others wondering about a way to include your posts into your wordpress sitemap.

    Go to Settings -> XML-Sitemap. Under sitemap content -> Custom Post Types: select “Include custom post type Forums” and “Include custom post type Topics”. Then update options from the bottom and click on “rebuild the sitemap manually” from the top to update your sitemap. If you have a google webmaster tools account, you can now resubmit your sitemap to google.

    Erlend
    Participant

    Congrats, that’s great news! I was also glad to see that you took my advice and split some of your theme’s functionality off into a plugin 🙂 This keeps getting better.

    SUM1
    Participant

    It’s exactly how the title puts it. It’s just a blank page with the text “viewing 5 topics – 1 of 5”. I’ve searched it up and one solution was to change line 815 in bbpress.css to “clear: both;” instead of “clear: none;”. It wasn’t line 815 but 818, but it was still near so I knew which one. I tried it, and the topics showed, but they were shifted down the page quite a lot, and there was a lot of blank space between the “viewing 5 topics – 1 of 5” and the topics list. Is there any way I can solve this? Direct link to problem is here.

    #130356
    Boone Gorges
    Participant

    It sounds like something is modifying the SQL query before bbPress has a chance filter ‘posts_requests’ via _bbp_has_replies_where(), so that the search term in that function is no longer found in the query string.

    I recommend disabling plugins until you find the culprit.

    #130355

    In reply to: Date format in spanish

    LChambers
    Participant

    OK, file functions.php in your theme’s folder.

    By the way, WordPress 3.5.1 and bbPress 2.2.4

    De nada… 😉

    Unsal Korkmaz
    Participant

    And theme got approved 🙂
    https://themes.trac.wordpress.org/ticket/11702

    That means theme code is checked by theme reviewers and its trustworthy. You can download from WordPress.Org soon. Meanwhile  you can explore theme or download from http://theme.firmasite.com/

    gumresq
    Participant

    Thanks. Really nice!

    dtbaker
    Participant

    Hello,

    Wondering if anybody has experience with the “404 Redirected” wordpress plugin?

    When this 404 plugin is enabled I cannot use the front end forum/reply editing feature.

    This URL http://ultimateclientmanager.com/topic/add-an-other-taxe/edit/ simply redirects to this url http://ultimateclientmanager.com/topic/add-an-other-taxe/

    bbPress 2.2.4 and WordPress 3.5.1

    Does anybody know why the 404 plugin is identifying this URL as a 404 and doing the redirect?

    Thanks,
    Dave

    #130343
    mralexweber
    Participant

    This is a similar issue to another post: http://bbpress.org/forums/topic/first-post-not-showing/

    However, that other topic doesn’t seem to be getting feedback from knowledgeable developers, and I’ve done a bit of additional troubleshooting.

    Basically, some users on our site can *never* see the first post on any bbPress topics.

    I’ve tried disabling all types of caching (we’re using W3 Total Cache) and that had no effect. Also, we’re using WishList Member (closed-source membership plugin) and of course, other plugins.

    Inspecting the $bbpress variable while logged in as an admin and an affected user (in a different browser), I was able to find the following inconsistency in $bbpress->reply_query->request:
    admin’s:
    `SELECT SQL_CALC_FOUND_ROWS wp_1_posts.* FROM wp_1_posts FORCE INDEX (PRIMARY, post_parent) WHERE 1=1 AND (wp_1_posts.ID = 2904 OR wp_1_posts.post_parent = 2904) AND wp_1_posts.post_type IN (‘topic’, ‘reply’) AND (wp_1_posts.post_status = ‘publish’ OR wp_1_posts.post_status = ‘closed’) ORDER BY wp_1_posts.post_date ASC LIMIT 0, 15`

    affected user’s:
    `SELECT SQL_CALC_FOUND_ROWS wp_1_posts.ID FROM wp_1_posts WHERE 1=1 AND wp_1_posts.ID NOT IN (648,649,650,1067,1075,1085,1091,1102) AND wp_1_posts.post_parent = 2904 AND wp_1_posts.post_type IN (‘topic’, ‘reply’) AND (wp_1_posts.post_status = ‘publish’ OR wp_1_posts.post_status = ‘closed’) ORDER BY wp_1_posts.post_date ASC LIMIT 0, 15`

    I noticed there’s a section for wp_1_posts.ID NOT IN(…) which isn’t present for admin. Anyone know where this comes from?

    So, here’s the question: why can’t this user see all replies in every topic? Is there something I’m overlooking?

    Finally, if someone is willing to fix this issue for us for a reasonable fee, please email me directly at alex [at] theartofcharm [dotcom]

    Here’s the full $bbpress var dump (from admin user): http://pastebay.com/1189524
    and here’s one from an affected user: http://pastebay.com/1189525

    Thanks in advance!

    #130335
    jtong80
    Participant

    I used the login shortcode, but it doesnt let me logout after signing in. Is there a logout shortcode?

    Unsal Korkmaz
    Participant

    Firmasite 1.1.6 released:
    https://themes.trac.wordpress.org/ticket/11702

    You can find detailed information, showcase, live demo,
    tips and tricks about theme in: http://theme.firmasite.com/

    You can check changelog from: http://theme.firmasite.com/category/changelog/

     

Viewing 25 results - 26,651 through 26,675 (of 64,535 total)
Skip to toolbar