Jaja.. (@jaja-1)

Forum Replies Created

Viewing 25 replies - 26 through 50 (of 81 total)
  • Kijk eens!

    Ik heb ze even voor je gedownload en ge-upload.

    http://www.megaupload.com/?d=IQ1K7D03

    .mo + .po

    When in your Admin, create a new page and call it ‘Latest Topics’ or whatever title you like.

    And select from the right-side sidebar where is says: template the New Topics template.

    Save it.

    Still in the Admin-/Dashboard – Go to your WP Settings (bottom left) -> Reading.

    And select the New Topics template as a static page on the homepage.

    Save it and your done.

    In reply to: Remove Headers?

    You have to follow the loop and delete them from multiple files.

    Delete this code: <?php bbp_breadcrumb(); ?> (from all files)

    If you don’t understand how it works you can also hide this menu by CSS.

    Add the following code at the bottom of the /css/bbpress.css stylesheet.

    .bbp-breadcrumb { display: none!important; }

    It will hide this menu on every page.

    Maybe because I’m at a WP MultiSite ?

    My homepage (first website) is a slimmed version of this theme.

    http://store.informationarchitects.jp/product/ia³-template

    I only use the Media Queries (menu) from that template but but it has its own functions.php its not Twenty Ten or something.

    Maybe some Avatar calling code is missing that Twenty Ten has in the functions.php?

    And my forum (second website) + Multi site, is used as a Child Theme to the first website.

    If i create a page in my second website i can still use the template files from the first website like a contact page (template) so that would make me think that the Child Theme setup is down correctly.

    ===

    strange thing is that everything works with this code.

    <?php bbp_topic_author_link( array( 'sep' => '
    ', 'size' => '120' ) ); ?>

    But not with this one.

    <?php bbp_reply_author_avatar(array('size' => '80')); ?>

    I don’t want the author link i only want the Avatar and create my author link at some other position.

    WOW!

    This is a stunning feature!

    I like all those little sexy features, it can make your forum stand out and become a little eye-catcher.

    Thank you so much for this.

    Btw: someone should make a blog (category) about all those kinda features, i think lots of people would love to do this.


    @JJJ

    :) Yeah i see it now you said so, <?php bbp_reply_postion(); ?> does the numbering

    @ Clicknathan,

    Did you copy-/paste all files from the plugins (bbPress folder) to your Child Theme folder?

    If you did so, you have the functions.php file from bbPress inside the Child Theme folder and i have been looking inside that functions.php file and at line: 120 there is already a code that says:

    public function add_theme_support() {

    add_theme_support( 'bbpress' );

    }

    Thats why i didn’t added the add_theme_support code.

    Everything seems to work for me but i really have no idea if i’m doing it correct.

    If somebody has a tutorial website that explains it better (how to setup a Child Theme bbPRess) post it here.

    I would like to learn it the right way, not that i’m telling other people wrong info.

    In reply to: bbPress 2.0 – FAQ

    Thanks JJJ.

    I love how easy it is to understand the WP Codex.

    At this point i’m looking at this page:

    http://phpdoc.ftwr.co.uk/bbpress-plugin/

    But it’s not as easy as the WP codex.

    In reply to: bbPress 2.0 – FAQ

    Thanks JJJ.

    I love how easy it is to understand the WP Codex.

    At this point i’m looking at this page:

    http://phpdoc.ftwr.co.uk/bbpress-plugin/

    But it’s not as easy as the WP codex.

    Thats strange because i copied the bbPress files from the plugin to my WP theme (child theme) and start editing from that file.

    Im inside: wp-content > themes > my-child-theme > bbpress > loop-single-reply.php and i just deleted the entire basic avatar calling code because it pulling out the name, link and avatar in one php code with a in between.

    I didn’t like that because it wasn’t easy to customize so i deleted that bit and placed my own easy template tags.

    <div class="mpm-reply-author-avatar"><a href="<?php bbp_reply_author_url(); ?>"><?php bbp_reply_author_avatar(array('size' => '80')); ?></a></div>

    Link and title are working, avatar showing up only at 40px.

    Maybe something wrong with my Child Theme setup?

    Strange because i have done 2 days of editing and changing a lot of bbPress codes without any errors and all changes is made showed up.

    It works the same way as making a BlogPost.

    Go to NEW Forum and on the right-side is a drop down menu that says: Visibility: Public you have two other options, Private and Hidden.

    And for the User roles i have no idea, i’m also still working on that. But i think they work on how they are set in WordPress.

    Prob. some other User Role plugins will work perfectly together with bbPress.

    ===

    My question:

    Why is it possible for a member (sigh a signed-up user) to go into the dashboard area and Edit all this posts to Private or Password protected?

    I’ve tried it a few minutes ago and it will only hide or protect one post in a topic.

    I don’t know if i like it or not …

    In reply to: forums list

    Why isn’t this working?

    <?php bbp_list_forums('forum_id' => '4'); ?>

    and this.

    <?php bbp_list_forums(array('forum_id' => '4')); ?>

    If i’m correct this should only load forum ID 4 correct?

    Something else i was thinking about..

    What if i make this loop-single-forum template file empty..

    <?php bbp_get_template_part( 'bbpress/loop', 'single-forum' ); ?>

    And after that i include a PHP code that says..

    If forum_ID = ‘2’ go get file loop-single-forum-2.php

    if forum_ID = ‘4’ go get file loop-single-forum-4.php

    if forum_ID = ’14’ go get file loop-single-forum-12.php

    Else die or loop-single-forum.php

    Would that help me out?

    I’ve got this..

    (changed all linking files by adding a -4)

    <?php while ( bbp_forums() ) : bbp_the_forum(); ?>

    <?php bbp_get_template_part( ‘bbpress/loop’, ‘single-forum-4’ ); ?>

    <?php endwhile; ?>

    Problem is i have to tell bbp_forums to only get and show forum ID 4.

    I would like to list every forum ID on it’s own template like this:

    My new Forum

    Install (forum-ID=2)

    troubles (forum-ID=4)

    plugins (forum-ID=14)

    Now i have given each forum it’s own ID and own template file by duplicating the original template file that bbPress uses for every forum ID and adding an it’s unique forum ID number behind it.

    Everything is going fine the right files are been read the only problem i face is i can’t find a way to say only export forum ID-4 in ID-4 template file.

    Now i get this on my homepage.

    My new Forum

    install (forum-ID=2)

    install (forum-ID=2)

    install (forum-ID=2)

    troubles (forum-ID-4)

    troubles (forum-ID-4)

    troubles (forum-ID-4)

    plugins (forum-ID=14)

    plugins (forum-ID=14)

    plugins (forum-ID=14)

    I think i have to do something with WP Query’s i think?

    But where, who and when?

    Would be very nice if somebody knows the answer to this.

    I found a problem,

    I have a WP Multisite installation and when i log-in and log-out the redirect ends up on a 404 page. (only on WP multi sites)

    http://localhost.sites/example.nl/members/example.nl/members/?loggedout=true

    I’m just testing offline at the moment.

    http://localhost.sites/example.nl/ <– WordPress homepage

    http://localhost.sites/example.nl/members/ <– 2nd WordPress site (WPMU) with bbPress forum.

    This is what i did and worked for me.

    I do have a WP Multi-site installation but i don’t think it’s different on a normal WP install.

    *My root

    wp-content > themes > <first theme> <second theme> <twenty ten> <twenty eleven>

    First theme is the theme i was using on my WordPress website.

    After that i created an empty folder called second theme

    I copy-/pasted all files from the bbPress plugin folder into the empty second theme folder i just created.

    From:

    *plugins > bbpress > bbp-themes > bbp-twetyten > All files and folders from here (without the bolded bbp-twentyten folder)

    Now if you go into your style.css in the second theme folder you see that this one is empty and it says it will call the css > bbpress.css from the functions.php file. <– now also inside that second theme folder.

    But at the top of this style.css file you see some theme info it just looks like some regular junk-talk (theme info) but it really isn’t junk-talk but very important, at the last line of code it says template name: (twenty ten) (if i remember correct) If you change that to (first theme) in my case and save it you’re done.

    Now it will load first theme as a main theme and second theme as your child theme (with your bbPress files inside)

    It’s very cool because if you add a new page from your admin you can also pick different bbPress page templates.

    Example, you can create a new page and add from the template drop down menu (right-side sidebar) the login bbPress page template and you will get a login-page.

    This is all i did and it worked out for me, the add theme support function i never added because it’s also inside the functions.php file in your second theme folder.

    Hope this will help somebody here.

    Thank you…

    So it’s a hook for WordPress and other plugins to work into this bbPress form..

    I found something..

    https://codex.wordpress.org/Function_Reference/add_action

    Only trying to find where those functions are.. they aren’t in my functions.php

    ??

    So they call a function by the plugin DO_ACTION PHP code but i can’t find the template that lists all those actions-/functions.

    Just wondering

    If i want to add bbPress to my own theme, this topic tells me to add the add_theme_support( 'bbpress' ); to my functions.php <– the functions of my own WordPress theme.

    Because if you copy-/paste the files from the bbPress plugins folder to my wp-content > themes > theme folder it also has a functions.php file.

    What about two functions.php ?

    Same as above i would like to see a codex how to use those all PHP codes.

    I often can understand the WP Codex and build unique themes because i can view the codex and work thing out.

    Now i would like to create my own bbPress theme and forum layout-/display but i don’t have a codex to view what options i can use.

    Shortcodes are great but not the most flexible.

    In reply to: bbPress 2.0 – FAQ

    @reply myself.

    I was stupid, and sleeping! (my mistake)

    Shortcodes is the solution to pull this off.

    In reply to: bbPress 2.0 – FAQ

    @reply myself.

    I was stupid, and sleeping! (my mistake)

    Shortcodes is the solution to pull this off.

    In reply to: bbPress 2.0 – FAQ

    Hello and thanks for the bbPress plugin it’s working (installing) great till now.

    I only have one question and maybe it’s very simple thats why i ask it in the FAQ.

    I have a local WP Multi install and i made a special (forum) network-site for showing the forum on. Only i would like to display the forum on the homepage.

    Now it’s like this.

    (1) example.com (my homepage)

    (2) example.com/forum/ (homepage of the new networking site)

    (3) example.com/forum/forums/ (showing the forums)

    (4) example.com/forum/forums/forum/topic-title ( ?? very ugly)

    As you can see i don’t like <strongs>forums in between, i would like to show off all forums-/category’s on the homepage of my new WP network (2)

    I have searched in the settings but i don’t understand the Archive slugs :(

    In reply to: bbPress 2.0 – FAQ

    Hello and thanks for the bbPress plugin it’s working (installing) great till now.

    I only have one question and maybe it’s very simple thats why i ask it in the FAQ.

    I have a local WP Multi install and i made a special (forum) network-site for showing the forum on. Only i would like to display the forum on the homepage.

    Now it’s like this.

    (1) example.com (my homepage)

    (2) example.com/forum/ (homepage of the new networking site)

    (3) example.com/forum/forums/ (showing the forums)

    (4) example.com/forum/forums/forum/topic-title ( ?? very ugly)

    As you can see i don’t like <strongs>forums in between, i would like to show off all forums-/category’s on the homepage of my new WP network (2)

    I have searched in the settings but i don’t understand the Archive slugs :(

    Hello to all good people working so hard on this..

    How are we running on this bbPress plugin?

    Last time i checked, we had none real Beta live, today i checked again and i find a Beta 3 RC 2.

    So what’s next?

    – Beta 3 RC 3 ?

    And after that a final version or how does this system of RC work?

    Thanks

    Hello to all good people working so hard on this..

    How are we running on this bbPress plugin?

    Last time i checked, we had none real Beta live, today i checked again and i find a Beta 3 RC 2.

    So what’s next?

    – Beta 3 RC 3 ?

    And after that a final version or how does this system of RC work?

    Thanks

Viewing 25 replies - 26 through 50 (of 81 total)