Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,776 through 5,800 (of 32,560 total)
  • Author
    Search Results
  • #254184
    blinkix
    Participant

    Hello guys
    I work on a wp website with Avada themes and in a part a the website i using a forum with BP.
    But i’m using category in a other part of the website and when i fix permalink in other things than default setting the categoy don’t work…
    What could i do ?

    Paul Wong-Gibbs
    Keymaster

    BuddyPress doesn’t support conditional profile fields (yet?). This is asked frequently but I can’t remember if anyone’s built a plugin that handles this. You might have to hack something together bespoke for your theme.

    Regarding the second point, I’d recommend creating a custom field type, if you know PHP. It’s not too hard to do — I worked on this code a year or two ago, and it’s pretty easy to do now. You could look at https://en-gb.wordpress.org/plugins/buddypress-xprofile-custom-fields-type/ for examples of how to add and register custom field types — specifically https://plugins.svn.wordpress.org/buddypress-xprofile-custom-fields-type/trunk/classes/Bxcft_Field_Type_SelectCustomPostType.php I think is a good example to work from as it displays custom post types in a list (you’d just query your custom table and pull in the values, wrap it in some caching, etc).

    sharmavishal
    Participant

    do i need to update the codes in my theme manually, everytime you roll an update for the plugin?

    that depends if its a major update which affects the page you modified.

    when i create a folder named “Buddypress” in my theme, it will override the original. correct?

    correct

    Masoud
    Participant

    @danbp
    do i need to update the codes in my theme manually, everytime you roll an update for the plugin?
    because as it’s said in many places, when i create a folder named “Buddypress”
    in my theme, it will override the original. correct?

    for example. now it’s version 2.5.3 and i copied the general.php from plugin in my theme’s buddypress folder.
    so when the version 2.6.0 is out, do i need to copy and replace general.php from plugin to theme again?(as to use the most recent codes)?

    so do i need to? or not?

    sorry for my question, if it sounds stupid.

    Masoud
    Participant

    @danbp
    thanks for your complete explanation. but there is not such a file members/single/settings/general.php in my socialchef theme.
    and yes, i do have a buddypress folder in my socialchef theme.
    so i created the path. and copied the general.php from buddypress plugin files to the destination folder.
    and did the changes as i want.
    thanks a lot.

    danbp
    Participant

    My answer was later as your’s.

    – do you use a child-theme ?
    – do you use some cache plugin ?

    I haven’t time to teach you php. But a little tip when you do such things.

    Before to remove code (php or html), try to ADD something to the original code. ie. a simple word who then appear on the template. This can give you an idea from where to start.

    danbp
    Participant

    @5high Yep! You’re right. The form is now build separately. To hide it conditionnaly, it’s much easier as previously.

    What you have to do from now on, is to add a condition on the template part call.

    The form template file is post-form.php (activity/post-form.php)

    On each activity template (swa, members, groups,…), there a call to this file. bp_get_template_part( 'activity/post-form' );

    To solve your problem, you have just to add the condition you want for this call.

    In your case, as you want to disallow the form only on swa and on member’s activity, you modify
    child-theme/buddypress/activity/index.php (site wide activity) and child-theme/buddypress/members/single/activity.php (profile activity)

    For example i hide the form to any user except site admin by using:

    if ( is_user_logged_in() && is_super_admin() )
    	bp_get_template_part( 'activity/post-form' );

    Hope to be clear ! 😉

    #254129
    alibong0
    Participant

    i just wanted to know the term ‘alternate row colour for…*****’to google help about it, hence the lack of detail.. i figured you wanted me to figure it out myself. http://www.templatemonster.com/demo/52997.html <— this is my theme. on the newest wordpress and buddypress.

    #254128
    danbp
    Participant

    Please read here and give at least some details about the theme you use.

    Or better, a valid url to your site. Alternate row color is a theme related question, which can be handled via CSS, but if you don’t tell what theme you use, it’s impossible to guide you more.

    Note also that if you use a premium theme, we have no access to it. In this case, you need to ask on the theme support.

    Ron Ashman
    Participant

    WP 4.5.2
    BP 2.5.3
    Conditional Profile Fields for BuddyPress 1.1.9
    Flatsome theme by UX 2.9.2
    currently working offline, testing my site, hence no link

    Hi!

    I got 2 separate questions about using BP. I’ll be as brief as possible.

    1) Is there any way to fix required logic for conditional fields in the registration form? I have the following fields in my form, all of them drop down menues to choose one option:
    – State > NY / CA / FL / etc.
    – City in NY (show only if State = NY) > Albany / Buffalo / NY / etc.
    – City in CA (show only if State = CA) > LA / San Diego / Fresno / etc.
    and so on…

    The “State” field is required. The “City in…” field is required as well. Of course, only one “City in…” shows after choosing the state. The problem is that ALL of the “City in…” fields are marked as required, and BP expects the user to fill in all of them, even if they’re not showing due to conditional logic.

    Is there any way to fix it besides disabling the required status? Basically, people choose their location or something else. Maybe a product thing (PC / TV > laptop – desktop / lcd – led).

    2) I have in my sql database tables to organize a lot of products, separated into categories and cross-related. Very neat. Is there a way to easily put that into the registration form with conditional logic? Like the state>county>city thing. Drop down menues that import options from the tables.

    Thanks a lot in advance.

    #254109

    In reply to: Editing profile header

    danbp
    Participant

    Right click and select view page source code is enough to find html tags. No need to search in BP’s files. The solution is to use the appropriate id & class. Try to add this CSS to your child-theme styles.css file.

    #item-nav #object-nav ul,
    #item-body #subnav ul {
       list-style-type: none!important;
    }
    #254079

    In reply to: Wierd Buddypress Issue

    mugluck
    Participant

    Is there a way to set the default page template for profiles in Buddpress? I’ve isolated the problem to the fact that it’s generating from the default profile in our wordpress theme. But I don’t know which file in the buddypress system I should add the php code to.

    #254070
    AngelaQ
    Participant

    Turns out my server guy doesn’t leave til Sunday, so he commented it out… It was this line:

    if ( empty( $_GET['xprofilefix'] ) || empty( $bp ) ) {

    and the error thrown was:

    PHP Parse error: syntax error, unexpected '&', expecting ']' in /home/www/webhost8/heartsthroughtime.com/htdocs/wp-content/themes/colormag/inc/functions.php on line 18

    #254067
    @mercime
    Participant

    @wpbp999 Sorry, we do not have access to the premium theme. The best place to ask is at the theme developer’s forum. 🙂

    #254066
    r-a-y
    Keymaster

    If you do not have access to your database, you can temporarily put the following snippet in your theme’s functions.php or wp-content/plugins/bp-custom.php file:

    function ray_xprofile_group_fix() {
    	global $wpdb, $bp;
    
    	if ( empty( $_GET['xprofilefix'] ) || empty( $bp ) ) {
    		return;
    	}
    
    	$wpdb->query( "UPDATE {$bp->profile->table_name_groups} SET id = 1 WHERE id = 2" );
    }
    add_action( 'get_header', 'ray_xprofile_group_fix' );

    Then, go to your website and append ?xprofilefix=1 to your website URL.

    eg. example.com/?xprofilefix=1

    This should change your profile group ID back to 1. Next, check your registration page and “Edit Profile” link and see if they work.

    Once you have confirmed that it works, remove the code snippet from your theme’s functions.php or bp-custom.php file.

    #254058
    Masoud
    Participant

    @shanebp
    thank you very much.
    the code above run with no eror.
    —–
    UPDATE:
    i put it in my theme functions.php. and it works.
    by mistake i was thinking that i have to put it in bp-custom.php to make it work.
    but it has to be in FUNCTIONS.PHP of your THEME.

    #254057
    shanebp
    Moderator

    This premium plugin – BuddyProfileData – will add profile data to the members loop.
    It will add fields in a vertical stack.
    If you are comfortable with css and maybe a little php, you can change it to horizontal.

    Or you can write your own solution using this hook:
    do_action( 'bp_directory_members_item' );
    in this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php

    Or you can create a template overload of that file and hardcode your solution directly in the template wherever and however you want it.

    Re the ‘>’ – the best solution is to find out where it is being added by your theme css and change it.

    #254055
    iommidesigns
    Participant

    I am using buddypress Version 2.5.3. We would like to have our member directory page show up almost like an excel spreadsheat. With the user profile fields visible in a horizontal line.

    here is the link. It is just showing avatar and Name. We would like to add other custom profile fields to this page. Is there a premium plugin for this? Or any other ideas?

    http://kesslerneighborsunited.org/members/

    Also if you look there are UL tags displaying “>”on most of the buttons threw out the buddypress section. Is there a way to disable theme styling and use default buddypress styling within the buddypress settings?

    Here is the link to a profile displaying the UL tags

    http://kesslerneighborsunited.org/members/admin/

    Help!!!

    Thank you.

    #254049
    sharmavishal
    Participant

    Then you need to get it checked by your theme developer

    #254044
    sharmavishal
    Participant

    No I meant your theme supports buddypress? Try with 2016 theme to see if it happens or not

    #254043
    amaya_terry
    Participant

    Buddy press’ve installed directly from the free version of wordpress, the theme we are using is a validly licensed own theme. All steps that tell me I activated as previously I worked correctly … I have other sisitos with the same plugin and does not happen to me

    #254042
    sharmavishal
    Participant

    How did you install buddupress? This is a custom theme right? You see activity page in your pages? In settings-buddypress have you activated activity component? Have you associated your activity page in the pages setting of buddypress?

    #254041
    welsh10
    Participant

    Hi,

    I want to use TML (Theme My Login) and Default wordpress login.

    I keep getting warning messages about pages not being assigned to ‘register’ and ‘activate’.

    Hope do I get rid of this message?

    Also is there a way from preventing BuddyPress from automatically finding pages and allocating them?

    Thanks
    Ash

    #254036

    In reply to: Theme suggestion

    sharmavishal
    Participant

    on buddyboss @djpaul they were excellent when they came up with the buddyboss theme…now they got multiple themes and plugins..and if you would check their support forums you would see the user feedback on their new themes now including the boss theme as well

    #254035
    JensGoro
    Participant

    Hi together,

    i have found in WordPress Theme “Rehub” a perfect User Menu. I have copyed the Buddypress Folder from Rehub in my Theme and 1 Month ago it worked, than i have paused the Site.

    Now i have reactivated the Site and become no Symbols to show.

    This is showed original from rehub: x
    And this is my actually: x

    Does any body has an idea why the Symbols not working?

Viewing 25 results - 5,776 through 5,800 (of 32,560 total)
Skip to toolbar