Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,276 through 5,300 (of 31,073 total)
  • Author
    Search Results
  • #245818
    Adalinka
    Participant

    @Masterpef- I really like how your profile page looks like.Would it be too much if I ask you how did you create it? Do I create a new page in wordpress and give it a profile name.And than Plugin works the magic? Or is there some code,I need to place in html editor? Or add to theme.php or sth? I am trying to understand how it works.. :-/ Thank you.
    Ps. How much do I actually need to know to build a membership site with BUddyPress? I mean how much of coding? How technical is it? Is there a step,by step detailed tutorial that maybe you have used?

    #245788

    In reply to: Problems with TopBar

    flopfeil
    Participant

    http://www.trachtentracht.de/

    thats the site, it only shows up fpr logged in user.
    After creating an account you can click on several links in the topbar all the buddypress links are messed up. For example “Nachrichten” from the dropdown menu.
    Stick for a while with this problem and nobody can handle it.
    I ask the theme support and the wordpress support weeks ago.

    #245773

    In reply to: Problems with TopBar

    Paul Bursnall
    Participant

    Can you post a screenshot of how you think the site should look, and a screenshot of what you see as a problem. I have access to the Kleo theme, and some experience of customizing the WordPress toolbar.

    #245753

    In reply to: Profile Page Empty

    Michael Kracke
    Participant

    I found the issue, because I have written the theme from scratch, it is not buddypress compatible. So now I have to go back through it and editing the templates to be compatible with BuddyPress

    #245749

    In reply to: Profile Page Empty

    Venutius
    Moderator

    Have you tried it using the 2015 theme and disabling your other plugins? This page should display so something is interfering with it.

    #245722
    danbp
    Participant

    You use only a profile album, isn’t it ?
    First, you have to decide what should happen in the future. Should this gallery be definetly unique ?

    If yes, you can programmatically remove the Album item from the main menu, and add by doing the same, a custom item, if when cliked, leads to the profile gallery.

    Isn’t the case with your theme. It doesn’t use a standart primary nav menu.
    But you can create a new menu (call it caesarnav or what ever unique), add anything related to buddypress from the buddypress menu options(on the left), and choose the galleries option (below BP options) where your profile album is. Then simply add this to the custom menu and assign this menu as header menu. This will replace the default graphene menu by your custom menu.

    #245719
    danbp
    Participant

    Hi guys,

    sorry to jump in, thought you need a little help from a mediapress early adopter.
    But first, about the theme used by @caesarhills.

    About Graphene
    The theme has an option where you can hide child pages. You probably don’t need to show all your site pages listing below BuddyPress content as you use the buddy menu.
    dashboard > appearance > graphene options. Tab General > child page option, select hide listing.

    About Mediapress

    @venutius
    , @caesarhills
    You don’t need to use a shortcode to get a list off existing galleries. This is default behave.

    Caesar, you use BP on network. When you use mediapress, take in account this remark from MP’s author:
    If you don’t want to have a separate MediaPress Installation for all the sites, please do not network activate MediaPress. Only activate it on your Main BuddyPress site.

    Currently, MediaPress does not support BuddyPress Multiblog Mode.

    MediaPress is best suited on a Multisite install if you activate it on main site or network activate if you are using BuddyPress Multi Network plugin.

    1) When you install a directory uploaded on Github (which is the case of mediapress), github add automatically -master to that folder. You have to remove that when you add the directory to wp-content/plugins/. So to get mediapress working correctly, ensure that the plugin path is
    wp-content/plugins/mediapress/ and not wp-content/plugins/mediapress-master like it is setted on trato111.org actually

    2) activate mediapress like any other plugin. When BP is installed, you get a message telling mediapress has no page associated to it. Click on repair and add a page manually. Call it ‘album’. Then assign this page to MediaPress component on BuddyPress > settings > pages. Save.

    Return to front and reload it. Now you should see a menu item called Album beside Activity, Groups, etc. on the main menu.

    Click and you see an empty Album page with the usual search filter for galleries, a sort filter for galleries and a little message telling you “There are no galleries available!”.

    Again, that’s the default behave. Note that i didn’t evoquate mediapress settings. I described you only what happens when you install mediapress by default.

    For more in-deep details, please refer to MediaPress documentation.

    And if you want to use shortcodes, do it after reading this doc.

    #245699
    Henry Wright
    Moderator

    I added it to the Members.php file but it seems to have no effect.

    This should actually go in your theme’s functions.php file.

    #245678
    djsteveb
    Participant

    This issue was brought up a few months ago.. hmm.. for that person it runed out to be a theme issue – but I think one of the things brought up to check it…

    on the menus page – click “screen options” tab at top right and make sure there is a check in checkbox for “show buddypress stuff” – or something like that.

    #245655
    danbp
    Participant

    Hi, perhaps you omited a dot or another php element. Anyway, below snippet add same fonction to members directory by using the appropriate filter, so you haven’t to touch the template.
    Add it to child theme functions.php or bp-custom.php

    Show user’s role on member directory

    function who_are_you_dir() {
    
    $user = new WP_User( bp_get_member_user_id() );
    
    	if ( !empty( $user->roles ) && is_array( $user->roles ) ) {
    		foreach ( $user->roles as $role ) {
    
    	/**
    	 * Fetch the user's role. See https://codex.wordpress.org/Roles_and_Capabilities
    	 * _e('role name', 'text_domain' ) allows use of translation
    	 * else use echo "role name"; 
    	*/
    
    		// Output
    			if ( $role == 'administrator') {
    			echo "Administrator";
    			} 
    
    			if ( $role == 'subscriber') {
    			echo "Subscriber";
    			} 
    
    			if ( $role == 'contributor') {
    			echo "Contributor";
    			}
    
    			if ( $role == 'author') {
    			echo "Author";
    			}
    
    			if ( $role == 'editor') {
    			echo "Editor";
    			} 
    		}
    	}
    }
    add_filter ( 'bp_directory_members_item', 'who_are_you_dir' );

    To show user’s role(s) on his profile, you can use this:

    Show user’s role on profile

    function blablabla() {
    
    $user = new WP_User( bp_displayed_user_id() );
    
    	if ( !empty( $user->roles ) && is_array( $user->roles ) ) {
    		foreach ( $user->roles as $role )
    			echo $role;
    	}
    }
    add_action( 'bp_before_member_header_meta', 'blablabla' );
    #245642

    In reply to: Creat Group Problem

    Crish
    Participant

    hi,

    I have try with permalink but not working, still same problem.

    And I think no need to create page in admin for create group , it’s directly provide by Buddypress plugin.

    If not then how can i create page for that , can you assist me.. ?
    I am using theme jumpstart.

    Waiting for your reply.

    Thanks,

    #245635

    In reply to: Creat Group Problem

    danbp
    Participant

    Have you permalinks activated ?
    Does the page really exist ?
    Have you tested with 2014 or 2015 theme ?

    #245619
    shanebp
    Moderator

    It can be bit confusing at first.

    The profile templates are here:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\profile\

    Don’t edit them.
    Create template overloads and edit those.

    #245611
    doperdoll
    Participant

    Yes I am sorry for the hijack. It didn’t seem like anyone was answering.

    I googled and read everything was present and I did not find the answers to my questions. I would like to put the registration into a popup. But there is nothing mentioned about that.

    If it is too complicated for a pop-up I would be happy to settle with a formatted page. Currently my page is showing 2 uneven columns and there is a check box to subscribe to newsletter squeezed in between the 2 columns. The check box is coming from another plugin mailpoet. I am using the enfold theme.

    Any advise would be helpful. I would really like to use your plugin but, I don’t want to spend days coding.

    #245592
    JMunce
    Participant

    Just an update on this thread.

    At the moment, there aren’t any plugins for this. The BuddyPress Like plugin is broken (it breaks WordPress themes on install and isn’t being supported). I tried others as well. The BuddyPress Compliments seems like a great plugin, but only allows users to compliment other members (not compliment posts). It’s interface and options, useability is great though.

    It does what many people are requesting (on WordPress as well as this forum): lets people add “likes” to posts AND lets people customize the button that does the “liking” (I mean you can name the object and set an image for it).

    Is there any plans within BuddyPress to add a “like” function (which tallys the likes on posts)? (If so, Compliments is a great model.)

    Screens of BuddyPress Compliments:

    View post on imgur.com

    #245564
    Henry Wright
    Moderator

    Like @venutius said, this is likely to be theme related. Considering the theme is premium, nobody here can see the code in order to try and help. You should open a support ticket on the plugin’s support website.

    #245562
    Venutius
    Moderator

    Looks like there’s a problem with the Community Junction theme. Try switching to 2015 theme and see if the error continues.

    #245481
    danbp
    Participant

    You can try to modify
    \buddypress\bp-templates\bp-legacy\buddypress\members\single\profile\edit.php

    To do so, you need a template overload
    Be carefull with class & id’s, as this part is actually working with ajax to show/hide

    #245452
    shanebp
    Moderator

    I cannot duplicate this issue with WP 4.3.1, BP 2.3.4, any WP theme such as 2015.

    #245438
    eureka345
    Participant

    I have the same behaviour on my setup. WP Multisite, BP multiblog enabled. I deactivated everything and reverted to 2015 theme.

    #245437
    eureka345
    Participant

    I am getting this error with zero plugins activated – only BuddyPress. Even on Twenty Fifteen theme I am still receiving this error (well, notice).

    #245434
    shanebp
    Moderator

    Asked and answered many times.

    If you’ve turned off all plugins and are using a WP like 2015, you should not see the warning.
    Then use your theme.
    Then start turning on plugins, one at a time.

    #245431
    shanebp
    Moderator

    Please do not hijack threads or double post.

    Your reg page shows the standard layout.
    Adjusting the layout may require changes in the css for your theme.
    There are many articles about customizing the registration page.
    Google: buddypress customize registration page

    #245400
    shanebp
    Moderator

    It means something in your theme or a plugin is calling a user hook too early.
    It can be tricky to track down.
    It’s an aggressive notice – but just a notice, not an error.
    You shouldn’t see it unless you have debug turned on.

    #245388
    robert198222
    Participant

    you’re correct regarding the nginx rewrites, didn’t think of that…

    hmm.. how strange, not sure what to do actually. The theme developers say that it should work.
    http://listify.astoundify.com/article/683-is-the-listify-theme-a-buddypress-compatible-theme

    Now the “Change Avatar” link isn’t shown anymore for some reason, only thing I did was to deactivate and then reactivate the buddypress plugin. everything in the configuration seems correct (in setting the “Allow registered members to upload avatars” is checked). and only error I have in the logs is this related to buddypress.

    Perhaps better to uninstall buddypress for now and wait for a more stable version.

Viewing 25 results - 5,276 through 5,300 (of 31,073 total)
Skip to toolbar