Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 20,301 through 20,325 (of 69,127 total)
  • Author
    Search Results
  • #167231

    In reply to: Creating New Plugins

    modemlooper
    Moderator

    The reason of my last suggestion is you can not test if BuddyPress class if you do not call it after plugins_loaded. Previous code doesn’t work right because plugins load in the order they are listed in the admin. If your plugin is above BuddyPress then the BP class hasn’t loaded and the error notice will show even if BuddyPress is active. The last code fixes that by running function after all plugins are loaded.

    #167230
    bp-help
    Participant

    @darrenmeehan
    Any idea to the availability. Sounds cool and useful!

    #167228
    @mercime
    Participant

    @tengwah I’ve added a link to the WP codex page about child themes in the paragraph before “Let’s Start Building” section. Thank you for the reminder to add the reference for those who are new to child theming.

    #167227
    tengwah
    Participant

    I just found on the Show Options drop down menu, on the Appearance>editor page, a link…
    https://codex.wordpress.org/Child_Themes

    Just one quick look at that and I see a picture with a folder tree, and I now assume that I am suppossed to be creating this child theme folder inside my wordpress installation folder. Unfortunately I never saw anything simply writting that anywhere.

    That was the key thing I was missing here I guess, the whole time I was looking around inside wordpress application for something, when its in the ‘Installation’ files id say.

    I think they could have just written that somewhere. Obviously Its not really obvious.

    #167226
    tengwah
    Participant

    Thanks for replying, I still have a problem, because I have found that link already, and read through it but I still cant find how to create a child theme.
    On that site, in that document it says…

    [[
    Let’s Start Building!

    The bp-default theme is located in the BuddyPress plugin folder at /wp-content/plugins/buddypress/bp-themes/ so it can be updated along with the plugin. WordPress knows where it is, even though your own child theme folder is in /wp-content/themes/.

    A. Create a new theme folder

    The first step is to create a new theme folder and give it a unique name. For this example, the theme is called “BuddyPress Dusk” and so we’ll name our folder bp-dusk. We’ll be uploading the bp-dusk child theme folder to wp-content/themes/.
    ]]

    (that is the first instructional step) This doesnt make sense to me, cause I dont know where I should be and how to do this…this is what I am asking for help with. I cant find anything that actually tells me how you start to create a child theme.

    #167219
    @mercime
    Participant
    #167218
    darrenmeehan
    Participant

    @shanebpdev Thanks for the input, yeah its even currently a sweet plugin which was why I wanted to get it out the door for users so to speak.
    I remember when this plugin was first released and people loved it, so I’m hoping the feel the same now! I’ve a lot on my plate, but I plan to get as much work done to this plugin as I can. Where my effort goes to in BP Like depends on its users!

    #167216
    darrenmeehan
    Participant

    Hi @Asynaptic its more like Facebook’s Likes, though not yet as fleshed out. Requested screenshot. BP Like

    #167215
    shanebp
    Moderator

    @darrenmeehan
    >I’m not sure whether to fix a few things at a time or to do the massive rehaul I’d like to.

    The old ‘improvements vs. legacy support’ dance.

    It’s a free plugin ( and a sweet one ) so do what’s best for you.

    I’d do the overhaul and require BP 1.7 + going forward.

    #167212
    @mercime
    Participant

    @tengwah If you want to keep the changes that you’re making to the BuddyPress Default theme, I suggest that you create a child theme and make the modifications there.

    Simple way to remove the tags, add the following to your child theme’s stylesheet:
    #commentform p.form-allowed-tags { display: none; }

    #167211

    In reply to: Creating New Plugins

    modemlooper
    Moderator

    Actually just wrap notice check in if class because bp_include won’t run if bp isn’t active.

    add_action( ‘bp_include’, ‘private_community_for_bp_lite_init’ );

    function private_community_for_bp_lite_bp_check() {
        if ( !class_exists( 'BuddyPress' ) ) {
    	add_action( 'admin_notices', 'private_community_for_bp_lite_install_buddypress_notice' );
        }
    }
    add_action('plugins_loaded', 'private_community_for_bp_lite_bp_check', 999);
    #167208
    Asynaptic
    Participant

    Hi @darrenmeehan looks interesting. Is this like cubepoints vote it up module? where users can like or vote on posts, comments, etc.? can you provide a screenshot?

    #167206
    darrenmeehan
    Participant

    I’m currently working on some support and tidying up code. I’m not sure whether to fix a few things at a time or to do the massive rehaul I’d like to. Smaller amounts would be more manageable though I’d like to know from experienced plugin developers which is easier when you’ve different users using your plugins.

    Information on BuddyPress Like

    #167201

    In reply to: Creating New Plugins

    modemlooper
    Moderator

    You can also wrap everything in a class. Look at bp-loader.php to get an idea of how to do that. I’m guilty of not following the best way out of laziness but I always go over my code and try and perfect as much as possible. I look at how BuddyPress core code is written and look over others plugins that I feel are doing it right.

    #167199
    bp-help
    Participant

    @pewee123
    Dashboard/Settings/General and beside Membership check the box that anyone can register.
    Note:
    This setting really should be checked before installing BuddyPress because if not it will not automatically create the register and activate pages upon activation.

    #167189
    mewrd
    Participant

    https://wordpress.org/themes/

    filter by buddypress responsive

    #167187
    @mercime
    Participant

    @number_6 Only the 5 widgets listed at https://codex.buddypress.org/user/buddypress-components-and-features/buddypress-widgets/ are the BuddyPress defaults. Could you please clarify what you mean by the community navigation widget? Member navigation in WP Toolbbar perhaps?

    #167186
    disqusnow
    Participant

    @mercime thanks. I will try that.

    #167185
    @mercime
    Participant

    @disqusnow Please do not post in more than one forum on the same topic. Closing this topic for original post https://buddypress.org/support/topic/excessive-vertical-gap-in-buddypress/#post-167184

    #167184
    @mercime
    Participant

    @disqusnow the large vertical gap is caused by the style applied to the container of the group avatar and group admin/s avatar. To correct the issue, add the following at the bottom of your theme’s stylesheet:

    #buddypress div#item-header {
    overflow: visible !important;
    }

    #167183
    disqusnow
    Participant

    @mewrd thanks for your prompt reply. What other free theme do you suggest that looks similar, that is WordPress and BuddyPress compatible and also responsive. Ideally am looking for a theme that looks like this current one.
    Thanks in advance.
    Benjamin

    #167182
    mewrd
    Participant

    i am also a newbie but if i am not mistaken the theme you have selected is not buddypress compatible(only wordpress)- and you may encounter even more difficulties later is it possible to change theme?

    #167181
    mewrd
    Participant

    i did read it, but as a newbie its sometimes a little complex and i thought there was a way to bypass dealing directly with php files.so in order to change the single member page layout i have to make changes directly to child-theme php files?im trying to understand the logic because my problem (remove the right side bar from the single member page )was already posted a lot of times and none of the solutions worked for me -the theme i have installed (and child theme i have created) has an option for 3 culomns layout
    so if can you help me – which of these files will help me to remove and how, the side-bar from the single member page )

    the optional files theme/members/single/home.php
    theme/members/index.php

    there is no page.php in members directory.

    i have tried to remove `<?php get_sidebar( ‘buddypress’ ); ?> from them -didnt help

    there are few more files
    in the theme directory left-sidebar.php right-sidebar.php and page.php but i will probably have to use conditional tags <?php is_page_ and since i don’t know how to call this page i dont know how to write this function.

    #167179
    disqusnow
    Participant

    Am using WordPress 3.5.2, BuddyPress Version 1.7.2 and BBPress Version 2.3.2. The theme is a custom theme. This is the the link http://mythemeshop.com/themes/ribbon/
    Here is how its behaving http://www.disqusnow.co.uk/groups/test-group/forum/. Still working on the look.

    #167176
    disqusnow
    Participant

    @mercime Am using WordPress 3.5.2, BuddyPress Version 1.7.2 and BBPress Version 2.3.2. The theme is a custom theme. This is the the link http://mythemeshop.com/themes/ribbon/
    Here is how its behaving http://www.disqusnow.co.uk/groups/test-group/forum/. Still working on the look.

Viewing 25 results - 20,301 through 20,325 (of 69,127 total)
Skip to toolbar