Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 14,151 through 14,175 (of 32,503 total)
  • Author
    Search Results
  • #134881

    In reply to: Image upload

    joesed
    Participant

    Hi Shmoo

    Thanks for your reply. If you can let me know where this code should go (i.e. which file and approximate line number), that’d be much appreciated.

    I’m really surprised that bbpress doesn’t have much better image upload functionality. If it did it would be right up there with other forum software. As it is, it seems inferior.

    Once again, thanks

    Joe

    Viktor Szépe
    Participant

    Please help to make these plugins compatible. WPML 2.8.2 and bbPress 2.3.2

    [Sat Jun 08 12:41:04 2013] [error] [client 80.98.70.185] PHP Notice: bbp_setup_current_user was called <strong>incorrectly</strong>. The current user is being initialized without using $wp->init(). Please see <a href="http://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information. (This message was added in version 2.3.) in /home/davidprog/dev/keszul.tk/server/wp-includes/functions.php on line 2959, referer: http://keszul.tk/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s=

    wpml forum link

    #134878
    Shmoo
    Participant

    Well to now what file you have to get isn’t really that difficult, you just need a little understanding of what files will be loaded when view a specific page.

    This is a good sheet to show you the logic, but it can be difficult te read.
    https://codex.wordpress.org/File:Template_Hierarchy.png

    This one explains in my opinion much better whats going.

    The anatomy of a WordPress theme

    But it’s not too difficult, lets say you’re on the homepage of your website.
    Often the index.php is need to start. If you open the index.php you see at the top something like this <?php get_header(); ?> the funny thing about PHP is that you can alsmost read-/understand what it is going to do. Like the code tag above says get_header so on that position it will grab the header.php file and open it. Keep following all those files and you will be okay.
    Think of it as LEGO – building blocks – it needs a few blocks to make a house and a webpage is the house.


    For the forum (bbPress) side I can tell you that the homepage of the forum is the page where it shows all forums & categories. This is called an archive page and not a regular page.php what most people would think when they first start.
    Normally if it’s an archive page WordPress would load the archive.php template but because we have a Post_Type created by bbPress called Forum we can add the Post_Type_Name behind the archive.php – like this: archive-forum.php

    When you copy that archive-forum.php file form your extra’s (plugins) folder to your Theme folder and open it you will again see the <?php get_header(); ?> stuff and all other typically WordPress stuff.

    To remove the sidebar of the main forum-page you just go into that archive-forum.php template and delete the code that called the sidebar: <?php get_sidebar(); ?>
    Just like the header it’s telling you what it does -> GET Sidebar ( load the sidebar files )

    It’s really just trying and not being afraid. Them ore you do it the better you get at it.

    *** Never try to edit files on a working website – online ***

    Install WordPress + your website on your computer locally, get a code editor – edit the files and check if everything is working. When your finished editing and everything is Fonzy cool you can upload and overwrite the files at your online-server.

    You know how I got my start (years ago) while not knowing what files to edit – By just opening some files I thought could be the files I needed. Typing 55555555555 or something else inside the file – Save it – reload the page in the browser and if 55555555555 didn’t show-up on the webpage I knew it wasn’t that template I was looking for and kept searching for the right one.

    Don’t be afraid to make mistakes… You gonna make some trust me, but when you have a back-up file or you can simply undo your edit inside the Code-editor ( CMD + Z ) you’re all fine.

    #134877
    Shmoo
    Participant

    Try to install some Debug plugins they will give you some answers about why things take so long to load.

    https://codex.wordpress.org/Debugging_in_WordPress
    – at the bottom is a list of good plugins.

    #134876

    In reply to: Image upload

    Shmoo
    Participant

    There is an option but it’s so WordPress. (half done)

    This will add a WP Media upload button above the form.

    
    <?php bbp_the_content( array( 'context' => 'topic', 'media_buttons' => true, ) ); ?>
    
    #134875
    Shmoo
    Participant
    #134872
    tommysvr
    Participant

    Alternatively, if I could show a user_meta field for each post, that would work too. I’m struggling with the code below too.

    global $current_user; get_currentuserinfo(); get_user_meta($current_user->ID, 'membership', true);

    #134871
    tommysvr
    Participant

    Hi all,

    I have a little issue since bbPress switched to its own user roles. I was previously showing an image under a users avatar based on this role (ie admin, subscriber).

    With the new method, it just shows the bbPress role of participant or key master. This is a problem because my registration forms put the user in WordPress role.

    My question is this: is there a way to output the WordPress role rather than the bbPress role? Here is what I’m using at the moment:

    $role = bbp_get_user_display_role(bbp_get_reply_author_id($reply_id));

    <div class="bbp-reply-author <?php echo $role; ?>">

    Any help is greatly appreciated!

    #134856
    Shmoo
    Participant

    You probably have a misunderstanding of the word Forum and Forums it happens a lot.

    A Forum is a common name for a support forum like we have at WordPress of bbPress or any other website online. They all call the page Forum or Support or Community.
    But a Forum can also be ONE single item like a category inside other Forums. Thats why the landing-page you’re looking for is: yourwebiste.com/forums/ ( list all forums together )

    But you can make your own landing-page by going into WordPress backend and Add a New Page + paste one of those Shortcodes to make it more easy.
    https://codex.bbpress.org/shortcodes/

    #134848
    fencer_x
    Participant

    Because it was an eyesore, I display:none’d the avatars on the reply widget in my sidebar to keep them from displaying and have replies simply show up as a list of “AUTHOR on TOPIC”. However, it seems that there was a non-breaking-space included somewhere AFTER the avatar and before the author, and it’s still there because it’s hardcoded in somewhere.

    It looks more than a little odd, and I’d like to remove it if possible. Anyone know where I might find it? I’ve found the recent replies widget code in widgets.php, but I can’t figure out where this space is coming from.

    #134844

    Topic: Change author

    in forum Troubleshooting
    SickSquirrelTwo
    Participant

    I wanted to edit a post by my coder but it saved as he being poster.

    How do I edit author/poster?

    #134837
    Shmoo
    Participant

    Yes, but try using a Webkit browser on your PC or Mac ( Chrome or Safari are Webkit based )

    Scale your browser-window down to iPhone size and try to spot at what size things start going wrong -layout wise.

    Just before things start going wrong you Right-click at the page where things go wrong and pick the ‘Inspect Element’ option to see the code. It really helps a lot.

    #134835
    Shmoo
    Participant

    Why does example #1 work just fine but example #2 doesn’t ?

    #1
    <?php bbp_breadcrumb( array( 'include_home' => false ) ); ?>

    #2
    <?php bbp_breadcrumb( array( 'include_current' => false ) ); ?>

    Unsal Korkmaz
    Participant

    Sadly lots of planned featured needed to remove from FirmaSite theme because of theme rules in WordPress.Org theme system:
    https://codex.wordpress.org/Theme_Review

    I really was disappointed when i learn that most of stuff needed to remove but now i can understand their logic. While i dont agree those rules, i respect them.

    All social integration (Facebook like,comments etc) is removed from theme because of WordPress.Org rules. They decide that some planned features are plugin territory. So i built a plugin for theme:
    http://theme.firmasite.com/plugin/ or
    https://wordpress.org/plugins/firmasite-theme-enhancer/

    This plugin will add all those social integration soon. Sorry for misinformation on theme site.

    Etan Rozin
    Participant

    Thanks. That fixed it.
    (the example in the link has a code error, but by removing the escaping all works fine).

    I had another question. The feature list mentions facebook comments (the ability to add or remove them). How is this done, I could not find it in the interface.

    Thanks

    Etan

    #134800

    In reply to: Remove search bar

    Pippin Williamson
    Participant

    There’s no reason to place this in your functions.php instead of as a plugin. It is the exact same code that gets executed, except as a plugin it is easier to maintain.

    #134799
    Edie Sellers
    Participant

    Okay, but I thought in order to remove the sidebar from your forum (i.e.: a full-page forum) you need to be working in “themes” not “templates.”

    Let me be more to the point. I have a website with a custom WP theme, (http://www.gamehounds.net/).

    I want to intgrate bbPress forums under the tab “Forum.” I want the bbPress forums to be full-screen without the sidebars, but of course I want to keep the sidebar in the rest of my site.

    After a LOT of reading… including your wonderful thread that says Never Modify bbPress core files, I built a child theme and activated it.

    But when I go to where says to in order to put my bbPress theme into my child-theme file, there is no “themes” folder.

    I do have a “templates” folder, but it doesn’t seem to have any information for themes where it instructs to “get sidebar,” which from what I read is the thing that I want to “//”.

    Does this make sense at all? Again, apologies for being kind of numbskully about this. I’m really just hacking around in the dark and learning as I go.

    Etan Rozin
    Participant

    Hi.
    Using FirmaSite and liking it a lot.
    I do have a problem though.
    Anytime a member leaves another member a comment on his profile, it shows up as html code
    Any idea how I can solve this? It is really ruining an excellent presentation otherwise.
    Thanks

    #134793

    https://bbpress.org/login/ submits data directly to https://bbpress.org/wp-login.php – they use the exact same code to process your login. Sounds likely that there’s a cookie somewhere in your browser’s cache that’s being stubborn.

    Happy you found a solution that works for you, and sorry you’re having trouble.

    #134788

    In reply to: Remove search bar

    NerdEnPose
    Participant

    This is the basic code. There’s plugins to do it but I prefer to put this in my functions.php

    add_action('init', 'remove_admin_bar');
    
    function remove_admin_bar() {
            show_admin_bar(false);
    }

    However I prefer to only remove it if the user isn’t logged in:

    add_action('init', 'remove_admin_bar');
    
    function remove_admin_bar() {
        if (!is_user_logged_in()) {
            show_admin_bar(false);
        }
    }

    Or if you prefer to limit by user roles and editing capabilities.

    function remove_admin_bar() {
        if (!current_user_can('administrator')) {
            show_admin_bar(false);
        }
    }

    FYI: There’s a pretty popular search result recommending this for role check:

    add_action('init', 'remove_admin_bar');
    
    function remove_admin_bar() {
    if (!current_user_can('administrator') && !is_admin()) {
      show_admin_bar(false);
    }
    }

    This would check to see if the user is in the admin portion in which case you’d show the bar as well.

    aaronVm
    Participant

    I have the same problem…please help!

    #134786
    NerdEnPose
    Participant

    I’m using 2.3.2 and this is my solution.

    There’s a function in the theme files calling this, simply noting it out or deleting it prevents the call.

    // bbp_single_topic_description();
    content-single-topic.php

    and

    // bbp_single_topic_description( array( 'topic_id' => bbp_get_topic_id() ) );
    form-topic.php

    This makes more sense to me because why generate the HTML just to bloat your CSS file to hide it? Or why add more to your functions.php file when all you need to do is some basic theme work? (Although that was some clever hacking of the wordpress/bbpress hooks there mindyjoy :))

    *Make sure to move all your theme files into your wordpress theme (wp-includes/themes/your_theme/buddypress/) so you don’t lose your work with an upgrade.

    #134784

    Not sure where you’re getting your info, but it’s not correct. 🙂

    bbPress uses your existing WordPress theme, and allows you to customize the individual templates as you see fit. You can copy the template files you want to customize out of:
    wp-content/plugins/bbpress/templates/default/bbpress/
    and drop them in…
    wp-content/themes/YOUR_ACTIVE_THEME/bbpress/
    where YOUR_ACTIVE_THEME is the name of the currently active theme on your site.

    Then start editing them, and you should see your edits come through.

    In bbPress’s default configuration, this is by design to support styling for widgets, which can exist outside of bbPress’s standard page views. You’ll need to write a custom plugin to dequeue bbPress’s CSS when ! is_bbpress().

    #134772
    krioteh
    Participant

    bbPress на русском (bbPress on Russian)

    Please, if you want to get support in Russian, visit the official Russian support forum.

    Пожалуйста, если вы хотите получить поддержку на русском языке, посетите официальный русскоязычный форум поддержки.

Viewing 25 results - 14,151 through 14,175 (of 32,503 total)
Skip to toolbar