Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 4,326 through 4,350 (of 31,071 total)
  • Author
    Search Results
  • #255633
    hisselfandco
    Participant

    What do you mean by “theme language maps”?

    General settings are DK
    Cleared all cache (several times…)
    I was told by forum moderator “danbp” to disable loco translate…

    jangolin: your version is now in Swedish – correct?

    #255629
    jangolin
    Participant

    I had the same problem and my solution was what I wrote before

    Make a new po file in poedit and mo file, upload the to your buddypress and theme language maps

    Check your General settings that you still have Danish as your language

    Clear all cache and refresh site

    You can also try to translate with Loco translate plugin and see if it makes any difference

    #255627
    danbp
    Participant

    positionning: check CSS pseudo class :before or :after

    buddypress.pot: this file does nothing! It contains only the strings you can translate. If you need a translation, you have to create a po and a compiled mo file. To do this you need a tool like poEdit.

    Any code placed in bp-custom.php stays untouched after an update. It works like a child-theme.

    #255626
    hisselfandco
    Participant

    Hi jangolin
    Thanks for your reply – KLEO Theme language files are there…
    Problem I have is finding how to make buddypress find the Danish translations .po and .mo I have in wp-content/languages/plugins/
    I have no problems with other plugins only buddypress….

    #255617
    jangolin
    Participant

    I am also using KLEO Sweet Date, even if your theme language files are there, they are probably without translation.

    When I opened my language file in poedit all my translation was gone and had to do the translation all over again and upload, then it worked

    So open your po. language files and see if your translation is still there

    #255614
    hisselfandco
    Participant

    Thanks for the tip
    Using KLEO theme – can see that the language file is still there.
    Still having problems with getting buddypress to find the translations….

    #255612
    jangolin
    Participant

    I dont what theme you use but i found the solution for my problem

    The latest update from my theme erased the theme language files which made that the byddypress translation didnt show, I had to translate my theme language file all over again and upload po and mo file and now buddypress is showing again.

    Check if you theme language files are still there

    #255607
    pfeufer
    Participant

    I disabled ALL plugins except for the Buddypress plugin. I am also using the Twenty Fifteen theme. The error is still happening when I go to change the photo (avatar) in the Buddypress group: ““Upload Failed! Error was: That photo is too big. Please upload one smaller than”

    1. Can you please provide more information on how to fix this issue?
    2. You mentioned “cache software”… Should I have a cache software installed to clear the cache?
    3. You also mentioned debugging. When I read the content on the page you provided a link for, it talks about developers and using debugging during development. How does this apply to my situation?

    Kindly address each of the 3 questions above so I can clearly understand what to do.

    Thanks!
    John

    #255602
    Earl_D
    Participant

    I am curious how to get this to show as a tab in the profile page I implemented everything but there is no home tab just activity. Did I miss something? I am running twenty twelve theme with BP 2.6/WP 4.53.

    #255595
    @mercime
    Participant
    danbp
    Participant

    The cover picture is not intended to be cropped.
    When you use this feature, the component tells you which min. image size should be used. If it comes up or not is depends largely of your theme and wp settings.

    #255572
    danbp
    Participant

    Deactivate immediatly bp portfolio, because the error shows to anybody your server path. This is a (low) security risk you can easily avoid.

    Activate also a Twenty theme until you solved the issue.

    And ask for help on BP Portfolio support.
    /bp-portfolio/includes/bpcp-item-functions.php is *probably* the file where the issue came from.

    #255547
    danbp
    Participant

    You have to debug.
    Deactivate all plugins except BP and try again with one of Twenty theme.
    If you use a cache software, clear it before testing.

    https://codex.wordpress.org/Debugging_in_WordPress

    #255543
    danbp
    Participant

    Is mod_rewrite allowed on your site and enabled ? Check your htaccess file to now.

    Have you tested using a Twenty theme ?

    #255535
    @mercime
    Participant

    @destac There are different ways to implement the new feature. For the screenshot, I did it in 4 simple steps.

    Note that you might need to adjust how the widgets are registered, named, or styled based on your theme.

    1. Registered three new widget areas in the child/theme’s functions.php file.

    <?php // Only add this line if you are adding this to an empty functions.php file
    /**
     * Register three widget areas for Members front page.
     *
     * @since My Child Theme 2.6.0
     */
    function my_child_theme_widgets_init() {
    	register_sidebar( array(
    		'name'          => __( 'bp-members-1st', 'my-child-theme' ),
    		'id'            => 'bp-members-1st',
    		'description'   => __( 'Appears on each member\'s front page.', 'my-child-theme' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h2 class="widget-title">',
    		'after_title'   => '</h2>',
    	) );
    
    	register_sidebar( array(
    		'name'          => __( 'bp-members-2nd', 'my-child-theme' ),
    		'id'            => 'bp-members-2nd',
    		'description'   => __( 'Appears on each member\'s front page.', 'my-child-theme' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h2 class="widget-title">',
    		'after_title'   => '</h2>',
    	) );
    
    	register_sidebar( array(
    		'name'          => __( 'bp-members-3rd', 'my-child-theme' ),
    		'id'            => 'bp-members-3rd',
    		'description'   => __( 'Appears on each member\'s front page.', 'my-child-theme' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</aside>',
    		'before_title'  => '<h2 class="widget-title">',
    		'after_title'   => '</h2>',
    	) );
    }
    add_action( 'widgets_init', 'my_child_theme_widgets_init' );

    Adjust items registered in child theme based on how your theme is setting up the widget areas.

    2. Created a new file front.php which should be located as follows: wp-content/my-child-theme-folder/buddypress/members/single/front.php
    (Create the buddypress, members, and single directories/folders if you do not have those in your theme yet.)

    Added the following in the front.php file:

    <?php
    /**
     * BuddyPress - Members Front Page
     *
     * @since My Child Theme 2.6.0
     */
    ?>
    
    <div class="bp-member-front-wrap">
    
    	<div class="bp-member-front-1">
    		<?php dynamic_sidebar( 'bp-members-1st' ); ?>
    	</div>
    
    	<div class="bp-member-front-2">
    		<?php dynamic_sidebar( 'bp-members-2nd' ); ?>
    	</div>
    
    	<div class="bp-member-front-3">
    		<?php dynamic_sidebar( 'bp-members-3rd' ); ?>
    	</div>
    
    </div>

    3. Added some styles:

    .bp-member-front-wrap {
    	clear: both;
    	margin-bottom: 2em;
    }
    
    @media screen and (min-width: 46em) {
    	.bp-member-front-wrap {
    		clear: both;
    		margin-bottom: 1em;
    	}
    	.bp-member-front-1,
    	.bp-member-front-2 {
    		float: left;
    		margin-right: 1.5%;
    		width: 32%;
    	}
    	.bp-member-front-3 {
    		float: left;
    		width: 32%;
    	}
    }

    4. Went to Appearance > Widgets and add widgets to the Member Front Page Widget Areas.

    As mentioned above, there are other ways to implement this new feature. Happy customizing!

    #255511
    pfeufer
    Participant

    Hi,
    I’m using the BRIDGE theme. I am using the UserPro plugin, but that handles user profiles and avatars and coded to work with Buddypress.

    Thanks,
    John

    #255482
    sharmavishal
    Participant

    which theme are u using? any cover photo plugin u using?

    #255460
    Rintu Thomas
    Participant

    Hi,
    I have the same problem like “Fatal error: Call to undefined function bp_get_current_group_id() in /home/…/public_html/…/wp-content/plugins/buddypress/bp-groups/classes/class-bp-group-extension.php on line 484”. The solution given above can fixed the issue, but it is affecting when i am updating the plugin. So, how can i override this file inside the theme so that the change wont lose when i update the plugin buddypress.

    #255424
    r-a-y
    Keymaster

    @sharmavishal – No, it isn’t.

    That’s more of a hacky way of fixing things. I still invite @oddreal to send me a copy of the theme so I can debug.

    To really address this issue, plugin and theme developers should check out this development post for more info:
    Class autoloading and what this means for plugin developers

    #255420
    avenged31
    Participant

    Est-ce qu’il y aurait une modification de la façon dont sont traitées les notifications sur buddypress ? qui ferait que mon thème, ne s’étant pas encore mis à jour, n’arriverait pas à interpréter en ajax les infos ?

    #255415
    avenged31
    Participant

    en gros c’est depuis la mise à jour de buddypress, pas depuis celle de mon theme … !

    #255413
    avenged31
    Participant

    Bon on va passer au français xD

    En gros je sais pas si c’est le cas avec tous les thèmes qui fonctionnent avec buddypress, mais sur le theme que j’utilise, les notifications se mettent sur la navbar avec un petit nombre dès qu’on en a une, sans avoir à refresh la page (donc du ajax je suppose)…

    J’ai l’impression qu’il n’arrive pas à récupérer l’information en direct, il faut forcément changer de page. tu vois ça met “array” ..

    #255410
    danbp
    Participant

    What do you mean by autoactualisation ? Notification count is in real time.
    And if it is a theme feature, you should ask for this issue on the theme support.

    what should I give you to help you helping me C’est quoi cette question ? Non mais… 😉

    #255406
    avenged31
    Participant

    Hi ! Thank you for your answer.
    I’m using “boss” theme !
    I didn’t make any customization !
    Tested with twenty fourteen but there is not auto actualisation for notifications as on the theme that I’m using … what should I give you to help you helping me ?

    #255404
    danbp
    Participant

    Which theme do you use ? Have you tested with a Twenty theme ? Which plugins do you use ?
    Have you made some customization ? If yes, give the code

Viewing 25 results - 4,326 through 4,350 (of 31,071 total)
Skip to toolbar