Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,251 through 5,275 (of 31,073 total)
  • Author
    Search Results
  • #246035
    Henry Wright
    Moderator

    I’ve recently installed Buddypress to my WP theme

    Can you explain exactly the steps you took?

    #246032
    Venutius
    Moderator

    Have you tried raising this with your theme’s creators, this seems more like a theme problem than a BuddyPress issue.

    #246027
    life5000
    Participant

    Thank you so much @henrywright and everyone too. Henry’s solution worked great for me. I do have a custom css in the design setting of my theme that allows customization without having to create a child theme. I added Henry’s code to the custom css section.

    I now have a challenge of hiding some of the tabs on my buddypress profile page; like notification tab and forum tab. I’d like to hide those tabs without having to deactivate the plugins. I would so appreciate a solution.

    Thanks so much again.

    #246001
    Henry Wright
    Moderator

    Which theme is that? BuddyPress doesn’t ask for 2 usernames. The WordPress username and the BuddyPress username are one and the same. It looks as though your theme is asking for it twice

    #245988

    In reply to: Registration process

    Rimon Habib
    Participant

    If you want to redirect all users(admin,subscriber,all roles) to homepage after login, just use this line at your theme functions.php file

    add_filter( 'login_redirect', create_function( '$url,$query,$user', 'return home_url();' ), 30, 3 );

    Or if you filter a bit, like Admin users will redirected to dashboard, and all others to home page, you can place this code instead of that

    
    function wp_bp_custom_login_redirect( $redirect_to, $request, $user ) {
    	global $user;
    	if ( isset( $user->roles ) && is_array( $user->roles ) ) {
    		if ( in_array( 'administrator', $user->roles ) ) {
    			return $redirect_to;
    		} else {
    			return home_url();
    		}
    	} else {
    		return $redirect_to;
    	}
    }
    
    add_filter( 'login_redirect', 'wp_bp_custom_login_redirect', 30, 3 );
    #245987
    Rimon Habib
    Participant

    Frankly saying, This is something concern of theme, not plugin, as plugin developer won’t know theme structure and styling users are using, unless they use BuddPress default template parts. I did that thing actually in one of my other plugin, BuddyPress User Account Type, It wasn’t good as I said, Its theme dependent.

    But It is a nice feature to have actually, I am considering to develop a separate plugin soon for this feature, tho I need to see the feasibility first.

    #245985
    Henry Wright
    Moderator

    Sorry @life5000, I noticed that earlier in this post I mentioned you should add the snippet to your theme’s functions.php. That’s not right. It should go into your theme’s (or child theme’s) style.css file.

    I’ve just updated it so it has the right info.

    #245981
    William
    Participant

    My opinion: For simplicity, Let the user figure out that he/she needs a child theme. Period.

    #245980
    Paul Bursnall
    Participant

    @venutius Good advice yeah. From WP admin – plugins > add new, search for ‘child theme creator’. Plenty of options that will do the job.

    #245979
    Venutius
    Moderator

    I’ve not tested it myself but there are plugins such as “One Click Childtheme” available, maybe for newbies we should be recommending that?

    #245978
    Paul Bursnall
    Participant

    Themes which make use of option panels may allow you to only use the parent theme. If you can cover the changes you need by using that panel. But if you need make custom changes to css or add additional functionality, save yourself potentially big headaches and use a child theme. They don’t exist for fun.

    #245977
    Paul Bursnall
    Participant

    The ‘active’ theme should always be the child theme. That’s not my opinion, that’s fact. And you don’t need to be a developer to use, or create one. Most premium themes are packaged with a child theme, and if you don’t have one, just add a plugin and create one. Then activate it. You will find no WordPress developer that doesn’t recommend the use of a child theme.

    Maybe this will help – https://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorial

    #245974
    William
    Participant

    By the way @henrywright is one of the BuddyPress Core developers who joined team recently but look at where he said that the code should be put. He actually meant “style.css” not “function.php”. What do you say about this @style960? Even the core developer himself is not recommending the child theme!

    #245972
    William
    Participant

    I know @style960. Look, probably not all members are using default themes such 2015 which get updated every now and then OK? Some themes will never get updated anyway. Some people just want to get the work done as soon as possible and once they realize that they are loosing the changes with updates then they can find a solution to that. What’s the use of giving these people lengthy tutorials that are going to get them frustrated and they quit half way? They should start small then improve on that. If you’re a programmer at all, you first started by writing a very simple program that says “Hello World!” not a super complicated program. This is what I’m doing here!

    #245971
    Paul Bursnall
    Participant

    @william_oneb Please stop giving members advice to edit their active theme. All changes of this nature should always be made in a child theme. Check the codex – https://codex.wordpress.org/Child_Themes

    #245967

    In reply to: Bps_display shortcode

    William
    Participant

    @bennyhoang

    Paste this code in your theme’s functions.php

    function bennyhoang ($atts) {
             // Start by checking if the user if logged in
              if ( is_user_logged_in() ) {
             // Let's grab the user id
             $user_id = bp_loggedin_user_id();
             // Let's find a field called name. (REPLACE "NAME" WITH THE NAME OF THE FIELD YOU WANT)
             $Name = xprofile_get_field_data( 'Name' ,$user_id);
             // Let's output that field
             return $Name;
       } 
    }
    
    add_shortcode( 'benny', 'bennyhoang' ); 

    [benny] is your shortcode! Use it your pages/posts!

    #245961
    William
    Participant

    @life5000, Please find a file called style.css in your active theme, put this code there, save the file and reupload that file. Of course 300% is way too large but hey, I want you to see that your changes are actually working. Please adjust that size accordingly e.g 140%

    #activity-stream p {
        font-size: 300%;
    }
    shanebp
    Moderator

    Scenario 1 is easy:

    Create a template overload of this file:
    \buddypress\bp-templates\bp-legacy\buddypress\members\single\profile\profile-loop.php

    Use bp_get_the_profile_field_name() to determine of the current user should be able to see the field – based on the current member’s PMP level.

    #245924
    Paul Bursnall
    Participant

    That is incorrect. Always use a child theme for such changes, whether in style or amended/additional functionality.

    The advice above will mean css changes you have made will be lost when your theme is updated. Make all edits in a child theme, every time.

    #245910
    William
    Participant

    You don’t really need a child theme. You can just “inspect element” with your web browser and find the class or element you want to modify with CSS. Once you find it, go to your active theme’s style.css and write new code to change the appearance.

    If I’m not wrong, you need the child theme if you just want to modify the registration form layout or template. Hope that points you in the right direction.

    #245904

    In reply to: Problems with TopBar

    flopfeil
    Participant

    i ask there weeks ago. the only comment i got was look if your theme is updated.

    #245895

    In reply to: Features and Requests

    Michael Bryner
    Participant

    Sorry, but I have to disagree there on the closing threads. I have not been here that much at all except for the styling only requesting and I don’t any deeper than half of the first page and that is not old threads and they are closed after just one response from the moderator that says get something done from the theme author. Is that good support? To me that is not even giving hardly any support and just closing it before we even can say another word.

    I am not even in here every day and still that is the way buddypress, wordpress, and bbpress sites support works. It is not old threads getting closed only. You say my threads are not what should be put in the support. All them been pretty much exactly where they should be request and features is where I asked for features and Ideas is an idea given for the features and the only post that is really out of place, which is not really that far out of place was the survey thread but really if you are this way with a business with normal customers. I would of been gone the first response to my thread being closed and never been back ever again.

    Telling someone that something should be done with a 3rd party theme over the plugin implementation is the wrong way to take it, especially when asking the theme author already and they give a rats *** about adding it to the theme. So to me to go somewhere else and get it done will not do a thing but waste out time. Not saying you did that Paul but your moderator does that. He basically tells us to get it done from something that really is not with the plugin at all and theme authors are not just going to add that feature because you won’t.

    I know you said that it will be and would be foolish not to but talk to you moderator about this because he is the one that is acting like there is no reason in this world that this plugin should not have styling at all.

    I feel sorry for this guy that wants to stay basic. I giving up on this forum if closing a thread after first reply is the way it works here. That is terrible support and surprised you think that is the way it should be, especially if someone is having the same question or issue and they search for that, they won’t be able to do a thing because those threads are never resolved and no answers and closed before they even do get them.

    All those renewed threads about the same exact thing all over again because of it, using all the database is pointless to me. I would never do that to my visitors on my own website on bbpress. I am this close to just uninstalling buddypress and only keeping bbpress on my website. Not all people are made out of money to buy or pay extras for things. I guess I will only get the right answer from Paul and I am either going to have buddypress or not by the time that finally updated buddypress with the so called promise that it will be done.

    Not trying to be an jerk here but telling me that old threads are closed and I open a thread that is not even a day old and says the thread is closed to new replies, is not an old thread. This kind of support in a forum is really bad to me and I would never want unlimited amount of the same threads about the same thing all over my website using up space for no reason. I think I am going to just say goodbye and probably never going to come back to this support forum ever again.

    I already never do anything on WordPress support because they just tell you to go somewhere else when it isn’t another company to ask about WordPress issues. I even don’t go to bbpress support anymore either. Now buddypress is going to be not anymore.

    Goodluck with future releases! Maybe I will stick with buddypress and maybe I will just say heck with it and take it off.

    This is not all towards you Paul but your moderator acting like this plugin needs no styling at all and getting it done through someone that has nothing to do with this plugin is really the most annoying thing someone would do. He acts like there is no other person in this world wants anything on this plugin but left the way it is. A person like that sounds just like the people stuck on Windows XP even with the support gone and just complains that there is no reason to even upgrade to get support.

    Sorry, I am pissed about this and now I am debating so hard whether to keep buddypress or not for his bad attitude towards others about this plugin.

    #245883
    Henry Wright
    Moderator

    You can do this through your theme’s style.css file but the solution will depend on which theme you’re using.

    #activity {
        font-size: 110%;
    }

    Note it’s the #activity bit that will depend on your theme so that might need changing.

    #245859

    In reply to: Problems with TopBar

    Paul Bursnall
    Participant

    I’ve looked again in Kleo theme options, I can’t see anything that would cause this. It really needs support from the theme author – http://seventhqueen.com/support/forums/forum/kleo

    #245826
    immoon
    Participant

    Another thing is that it maybe my nginx configuration as I had a lot of trouble with that, but I am not too sure. Its blank on all of my themes, which is very odd.

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