Search Results for 'theme'
-
AuthorSearch Results
-
July 1, 2016 at 2:59 pm #255633
In reply to: Translation stop working after update
hisselfandco
ParticipantWhat 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?
July 1, 2016 at 1:44 pm #255629In reply to: Translation stop working after update
jangolin
ParticipantI 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
July 1, 2016 at 1:37 pm #255627In reply to: Help me sort out my BuddyPress install
danbp
Participantpositionning: 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.
July 1, 2016 at 1:23 pm #255626In reply to: Translation stop working after update
hisselfandco
ParticipantHi 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….July 1, 2016 at 12:24 pm #255617In reply to: Translation stop working after update
jangolin
ParticipantI 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
July 1, 2016 at 11:41 am #255614In reply to: Translation stop working after update
hisselfandco
ParticipantThanks 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….July 1, 2016 at 10:30 am #255612In reply to: Translation stop working after update
jangolin
ParticipantI 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
July 1, 2016 at 12:19 am #255607In reply to: Getting error saying Buddypress Group photo large?
pfeufer
ParticipantI 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!
JohnJune 30, 2016 at 7:31 pm #255602In reply to: [Resolved] Front.php and BuddyPress 2.6
Earl_D
ParticipantI 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.
June 30, 2016 at 5:14 pm #255595In reply to: PHP Fatal error on BP 2.6.1 activation
@mercime
ParticipantReplied to some people at https://wordpress.org/support/topic/problem-with-buddypress-plug-in-on-sweetdate-theme?replies=10
June 30, 2016 at 12:02 pm #255574danbp
ParticipantThe 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.June 30, 2016 at 11:45 am #255572In reply to: bp-portfolio: Fatal error in X Theme
danbp
ParticipantDeactivate 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.June 30, 2016 at 8:32 am #255547In reply to: Getting error saying Buddypress Group photo large?
danbp
ParticipantYou 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.June 30, 2016 at 8:28 am #255543In reply to: Too Many Redirects when activating BuddyPress
danbp
ParticipantIs mod_rewrite allowed on your site and enabled ? Check your htaccess file to now.
Have you tested using a Twenty theme ?
June 30, 2016 at 7:20 am #255535In reply to: [Resolved] Front.php and BuddyPress 2.6
@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.phpfile.<?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.phpwhich should be located as follows:wp-content/my-child-theme-folder/buddypress/members/single/front.php
(Create thebuddypress,members, andsingledirectories/folders if you do not have those in your theme yet.)Added the following in the
front.phpfile:<?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!
June 29, 2016 at 7:05 pm #255511In reply to: Getting error saying Buddypress Group photo large?
pfeufer
ParticipantHi,
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,
JohnJune 29, 2016 at 11:38 am #255482In reply to: Getting error saying Buddypress Group photo large?
sharmavishal
Participantwhich theme are u using? any cover photo plugin u using?
June 29, 2016 at 4:26 am #255460In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
Rintu Thomas
ParticipantHi,
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.June 28, 2016 at 3:58 pm #255424In reply to: Fatal error after update
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 developersJune 28, 2016 at 2:59 pm #255420In reply to: Notifications displaying “array”
avenged31
ParticipantEst-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 ?
June 28, 2016 at 2:19 pm #255415In reply to: Notifications displaying “array”
avenged31
Participanten gros c’est depuis la mise à jour de buddypress, pas depuis celle de mon theme … !
June 28, 2016 at 2:18 pm #255413In reply to: Notifications displaying “array”
avenged31
ParticipantBon 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” ..
June 28, 2016 at 2:14 pm #255410In reply to: Notifications displaying “array”
danbp
ParticipantWhat 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 meC’est quoi cette question ? Non mais… 😉June 28, 2016 at 2:11 pm #255406In reply to: Notifications displaying “array”
avenged31
ParticipantHi ! 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 ?June 28, 2016 at 2:03 pm #255404In reply to: Notifications displaying “array”
danbp
ParticipantWhich 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 -
AuthorSearch Results