Search Results for 'theme'
-
AuthorSearch Results
-
April 3, 2015 at 2:06 pm #237246
In reply to: Trouble Creating new groups
Reginald
ParticipantThis is not concidered a response to my issue. I will just figure it out. Thanks for the No Support\Group page doesnβt exist. (page not found: http://www.earndailypay.com/groups/) Have you activated a page for groups ? (see BP settings > pages)
If you have several old group pagesin trash, you have to empty it, so that WP will find only ONE page when you call a the group page.Resave also permalinks. Sometimes things go better after.
You use also some exotic plugins which may create conflicts. So you will have to deactivate anything except BP to test it, and by using 2015 or 2013 theme to get a basic working install.
Once done and correctly showing you reactivate plugins one by one, until you stumble again on the issue.
April 3, 2015 at 1:57 pm #237245In reply to: Trouble Creating new groups
danbp
ParticipantYou’re connected to BuddyPress support forum, where you can get some help. There is no other way for that.
Nobody here can debug your site at your place. If you’re unable to do that, you can use BP Job Board to hire somebody.
No One Seems to be able to assist me here.
π You apparently use a premium theme (sixteen plus), which make things more difficult anyway, as we have no free access to it’s code. And you use a lot of plugins… And perhaps some custom function in your theme functions.php or bp-custom.php.
No idea what happens and i’m unable to reproduce what you describe.
April 3, 2015 at 1:07 pm #237243In reply to: turn off email notifictions in functions.php
danbp
Participanthi @5high,
users default email settings concern
- activity
- messages
- friends
- groups
Each has is own screen template.
ie. activity is in /bp-activity/bp-activity-screen.php
In each xxx-screen.php there is a function containing the variables and the html for the checkboxes.
Respective functions are:
- bp_activity_screen_notification_settings()
- messages_screen_notification_settings
- friends_screen_notification_settings()
- groups_screen_notification_settings()
You copy those 4 functions into your child-theme functions.php
and rename each to my_something.ie. my_bp_activity_screen_notification_settings()
At the end of each function you’ll see the action hook, which you rename accordingly
ie.
add_action( 'bp_notification_settings', 'bp_activity_screen_notification_settings', 1 );
wil be changed to
add_action( 'bp_notification_settings', 'my_bp_activity_screen_notification_settings', 1 );Before this line, you add the remove_action action. ie.
// removing the original action remove_action( 'bp_notification_settings', 'bp_activity_screen_notification_settings', 1 ); // add our custom action add_action( 'bp_notification_settings', 'my_bp_activity_screen_notification_settings', 1 );Now we have to modify in each function the default Yes to No.
At the begin of each, you’ll see some conditionnals begining by if(someting….)
ie. activity-screen you have:
$mention = 'yes';$reply = 'yes';
Simply change that to no, save, and you’re done.
Hope this helps ! π
April 3, 2015 at 11:18 am #237235danbp
Participanthi @sjaakkuil,
is WordPress correctly installed and running ?
As you use a windows server, you may have some extra config operation. 5see godaddy’s doc for that)
Also it is not recommanded to use a preinstalled WP or BP (if exist). Prefer manual upload by FTP.Once you’re sure WP is correctly setup and running, deactivate any third party elements first. Then activate 2015 theme and BP and setup BP pages if they aren’t created automatically.
Also, don’t forget to set your permalinks to something other than default.
https://codex.wordpress.org/Installing_WordPress
April 3, 2015 at 7:44 am #237230danbp
ParticipantSee your theme or 3th party plugin documentation, BP has no star button for favorites.
https://buddypress.org/support/topic/favorite-button-in-the-post/
https://wordpress.org/plugins/wp-favorite-posts/April 3, 2015 at 3:48 am #237222In reply to: new plugin: BuddyPress Simple Events
disha76
Participantwordpress-4.2-beta3 – Multisite subfolder install,
Default Twentyfifteen theme
Buddypress 2.2.1
Latest version of this plugin
Network Activated this pluginA buddypress member can see the Events tab in profile and can fill up the Events form, but on submission the Event is not saved – empty form is returned. Thus the members cannot use Events at all.
I have assigned all Roles the permission to create Event. See this http://s18.postimg.org/5wmavsiop/event.png
The site super admin can create Event but NO map is seen.If you have any Multisite subfolder demo with latest WP 4.2beta3 can you kindly set up a demo link?
Thank you.April 2, 2015 at 7:58 pm #237207Hugo Ashmore
ParticipantTry adding it to your functions.php file in your theme or child theme, if that doesn’t work or still not 100% sure check with the themes support who’ll be best placed to advise.
April 2, 2015 at 6:34 pm #237202In reply to: @mention autolink to profile
danbp
Participant@mentions doesn’t work (actually) in bbPress.
To add it, so you can mention a user in a topic, add this snippet to bp-custom.php or child-theme’s functions.php
function custom_bbpress_maybe_load_mentions_scripts( $retval = false ) { if ( function_exists( 'bbpress' ) && is_bbpress() ) { $retval = true; } return $retval; } add_filter( 'bp_activity_maybe_load_mentions_scripts', 'custom_bbpress_maybe_load_mentions_scripts' );April 2, 2015 at 5:58 pm #237198In reply to: Remove comments in the buddypress code
nathoudu38
ParticipantI solved the problem but it removes all comments on all pages. So I spent my pages where I wanted to comment on articles.
Page.php in your theme:
<?php // comments_template('',true); ?>// put the comments in the code.
If I suppressed this line, the bar at the top buddypress don’t work and menu …
Thank you;)
April 2, 2015 at 4:55 pm #237193In reply to: Custom theme update after BP update
James
Participant@danbp thank you for the reply, probably, my question wasn’t clear a bit.
I know everything about custom themes etc. Here is what I mean:
bp-legacy includes 72 files, any of them can be included (copied to) in a custom theme. Now we have BP 2.2 out. How can I, as a theme author, find out which of 72 files were changed in this new version, so that I wouldn’t have to compare all of them (in case all 72 are modified in my custom theme) manually?
thanks!
April 2, 2015 at 4:50 pm #237191In reply to: Trouble Creating new groups
danbp
ParticipantGroup page doesn’t exist. (page not found: http://www.earndailypay.com/groups/) Have you activated a page for groups ? (see BP settings > pages)
If you have several old group pagesin trash, you have to empty it, so that WP will find only ONE page when you call a the group page.Resave also permalinks. Sometimes things go better after.
You use also some exotic plugins which may create conflicts. So you will have to deactivate anything except BP to test it, and by using 2015 or 2013 theme to get a basic working install.
Once done and correctly showing you reactivate plugins one by one, until you stumble again on the issue.
April 2, 2015 at 4:39 pm #237189In reply to: Custom theme update after BP update
danbp
ParticipantThis is the path to all BP templates /bp-templates/bp-legacy/buddypress/ and it would better that it stays untouched.
You can update manually from Trac or download the latest BP from plugin repo.
Your custom theme should be in WP’s theme folder and containing a /buddypress/ folder with all files you have modified. In brief, a copy from what you find in bp-legacy. You use only the files you want to modify, not the whole bp-legacy content.
That way, you can update BP without loosing anything and adapt, or not, your own templates.
See template hierarchy, if it’s unclear.
April 2, 2015 at 4:29 pm #237188In reply to: Remove comments in the buddypress code
danbp
ParticipantBuddyPress doesn’t handle post comments.
As you’re certainly using a premium theme (your picture is stored by that theme support), they have to tell you how you can deactivate those comments on BP pages.
You paid a licence with included support. And we have no free access to the theme, so it’s quite impossible to tell you exactly what to do.If they don’t give you support, change your theme or find by yourself. Sorry for that.
Technically, you have to create a child-theme first. Add a copy of the original page.php of your theme and remove the part related to comments.
Which part precisely, or even a specifif function of your theme is impossible to say, as we have no information. And you didn’t tell which theme you’re using.
Search for similar question on the forum, you’ll probably find some.
April 2, 2015 at 3:17 pm #237183In reply to: All comments being displayed on user profile page
nathoudu38
ParticipantDid you find the problem?
I have the same problem except that it is on all buddypress pages. That comments are enabled or not.
Example photo.
This comes from an incompatibility with my theme Foodrecipes.
It can be necessary to remove the buddypress code comments?
I am looking for … Let me know!
Thank you!
April 2, 2015 at 11:23 am #237175In reply to: Trouble Creating new groups
danbp
ParticipantFYI, to stay independant of any theme, custom code lives better in /plugins/bp-custom.php
April 2, 2015 at 9:17 am #237170In reply to: Trouble Creating new groups
ChristophK2003
ParticipantOK, I fixed, a bit embarrassing, but I created a buddypress.php in my theme folder to add custom code, which was working. But then we decided we do not need that anymore and therefore removed the custom code, but I kept in file just in case. But this was causing in the end the blank. When I removed this file I could access everything again.
April 2, 2015 at 8:59 am #237167In reply to: Number of Topics and Replies in Profile
danbp
ParticipantI would rather use it from within bp-custom.php, so you stay independant of the theme and can change theme without loosing these 2 functions.
Don’t know What is line 330 ? What are you doing at line 330 ?
What should i hide ?
If i have other snippets ? Huh… π why this question ?April 2, 2015 at 8:54 am #237166danbp
ParticipantAdd this snippet to your child-theme functions.php or bp-custom.php
Nedds also a template overload of
/your-theme/content.php
as you should add an action or the function call near the (blog) post.function bpfr_pm_to_author() { $author = get_the_author(); echo '<a href="'.wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . get_the_author() ) .' title="Private Message"">Private Message</a>'; }April 1, 2015 at 4:19 pm #237117danbp
ParticipantThe light goes on when you click on βββ Documentation βββ
The sun comes up when you enter activity loop in the search box
and you getBP use only dynamic pages and some templates, depending of the context and shows them on the appropriate page (here: activity)
BP templates are all in wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/
Fr your question, see
/activity/single/
/activity/And about theme
April 1, 2015 at 4:03 pm #237114danbp
ParticipantThis field is fully part of WP registration process. And WP doesn’t use “email confirmation”.
But you can try Theme My Login if you absolutely want such feature.April 1, 2015 at 1:20 pm #237104In reply to: [Resolved] displaying user roles in profile
shanebp
ModeratorCreate a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.phpThen in that file put one of these snippets wherever you like:
-show all roles for a user
$user = new WP_User( bp_displayed_user_id() ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) echo $role; }– show just the first role
$user = new WP_User( bp_displayed_user_id() ); echo $user->roles[0];April 1, 2015 at 12:35 pm #237100In reply to: Show admin bar for normal users?
danbp
ParticipantMaybe you have a such setting in your theme ?
Or a function to search in /your-theme/functions.phpApril 1, 2015 at 8:45 am #237091In reply to: Change Buddypress .odd background color
danbp
ParticipantIt’s a common task you can achieve from a child-theme/style.css
April 1, 2015 at 8:32 am #237090In reply to: Hello. BP Activity Stream
danbp
ParticipantI asked a question in the support of his subjects.
What question on which support ? To have an idea, we need some details !
Theme name ?
Used plugins ?March 31, 2015 at 10:54 pm #237081In reply to: removing login link
-
AuthorSearch Results
