Search Results for 'theme'
-
AuthorSearch Results
-
October 21, 2015 at 7:19 pm #245818
In reply to: Buddypress profile menu
Adalinka
Participant@Masterpef- I really like how your profile page looks like.Would it be too much if I ask you how did you create it? Do I create a new page in wordpress and give it a profile name.And than Plugin works the magic? Or is there some code,I need to place in html editor? Or add to theme.php or sth? I am trying to understand how it works.. :-/ Thank you.
Ps. How much do I actually need to know to build a membership site with BUddyPress? I mean how much of coding? How technical is it? Is there a step,by step detailed tutorial that maybe you have used?October 21, 2015 at 8:55 am #245788In reply to: Problems with TopBar
flopfeil
Participantthats the site, it only shows up fpr logged in user.
After creating an account you can click on several links in the topbar all the buddypress links are messed up. For example “Nachrichten” from the dropdown menu.
Stick for a while with this problem and nobody can handle it.
I ask the theme support and the wordpress support weeks ago.October 20, 2015 at 9:23 pm #245773In reply to: Problems with TopBar
Paul Bursnall
ParticipantCan you post a screenshot of how you think the site should look, and a screenshot of what you see as a problem. I have access to the Kleo theme, and some experience of customizing the WordPress toolbar.
October 20, 2015 at 1:49 pm #245753In reply to: Profile Page Empty
Michael Kracke
ParticipantI found the issue, because I have written the theme from scratch, it is not buddypress compatible. So now I have to go back through it and editing the templates to be compatible with BuddyPress
October 20, 2015 at 1:19 pm #245749In reply to: Profile Page Empty
Venutius
ModeratorHave you tried it using the 2015 theme and disabling your other plugins? This page should display so something is interfering with it.
October 19, 2015 at 5:53 pm #245722In reply to: How Mediapress works: guide.
danbp
ParticipantYou use only a profile album, isn’t it ?
First, you have to decide what should happen in the future. Should this gallery be definetly unique ?If yes, you can programmatically remove the Album item from the main menu, and add by doing the same, a custom item, if when cliked, leads to the profile gallery.Isn’t the case with your theme. It doesn’t use a standart primary nav menu.
But you can create a new menu (call it caesarnav or what ever unique), add anything related to buddypress from the buddypress menu options(on the left), and choose the galleries option (below BP options) where your profile album is. Then simply add this to the custom menu and assign this menu as header menu. This will replace the default graphene menu by your custom menu.October 19, 2015 at 5:11 pm #245719In reply to: How Mediapress works: guide.
danbp
ParticipantHi guys,
sorry to jump in, thought you need a little help from a mediapress early adopter.
But first, about the theme used by @caesarhills.About Graphene
The theme has an option where you can hide child pages. You probably don’t need to show all your site pages listing below BuddyPress content as you use the buddy menu.
dashboard > appearance > graphene options. Tab General > child page option, select hide listing.About Mediapress
@venutius, @caesarhills
You don’t need to use a shortcode to get a list off existing galleries. This is default behave.Caesar, you use BP on network. When you use mediapress, take in account this remark from MP’s author:
If you don’t want to have a separate MediaPress Installation for all the sites, please do not network activate MediaPress. Only activate it on your Main BuddyPress site.Currently, MediaPress does not support BuddyPress Multiblog Mode.
MediaPress is best suited on a Multisite install if you activate it on main site or network activate if you are using BuddyPress Multi Network plugin.
1) When you install a directory uploaded on Github (which is the case of mediapress), github add automatically -master to that folder. You have to remove that when you add the directory to wp-content/plugins/. So to get mediapress working correctly, ensure that the plugin path is
wp-content/plugins/mediapress/ and not wp-content/plugins/mediapress-master like it is setted on trato111.org actually2) activate mediapress like any other plugin. When BP is installed, you get a message telling mediapress has no page associated to it. Click on repair and add a page manually. Call it ‘album’. Then assign this page to MediaPress component on BuddyPress > settings > pages. Save.
Return to front and reload it. Now you should see a menu item called Album beside Activity, Groups, etc. on the main menu.
Click and you see an empty Album page with the usual search filter for galleries, a sort filter for galleries and a little message telling you “There are no galleries available!”.
Again, that’s the default behave. Note that i didn’t evoquate mediapress settings. I described you only what happens when you install mediapress by default.
For more in-deep details, please refer to MediaPress documentation.
And if you want to use shortcodes, do it after reading this doc.
October 19, 2015 at 9:11 am #245699In reply to: Displaying group members roles in member list
Henry Wright
ModeratorI added it to the Members.php file but it seems to have no effect.
This should actually go in your theme’s functions.php file.
October 19, 2015 at 12:45 am #245678In reply to: Buddypress pages not showing in Menu section
djsteveb
ParticipantThis issue was brought up a few months ago.. hmm.. for that person it runed out to be a theme issue – but I think one of the things brought up to check it…
on the menus page – click “screen options” tab at top right and make sure there is a check in checkbox for “show buddypress stuff” – or something like that.
October 18, 2015 at 8:56 pm #245655In reply to: Displaying members roles in Members list
danbp
ParticipantHi, perhaps you omited a dot or another php element. Anyway, below snippet add same fonction to members directory by using the appropriate filter, so you haven’t to touch the template.
Add it to child theme functions.php or bp-custom.php
Show user’s role on member directoryfunction who_are_you_dir() { $user = new WP_User( bp_get_member_user_id() ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) { /** * Fetch the user's role. See https://codex.wordpress.org/Roles_and_Capabilities * _e('role name', 'text_domain' ) allows use of translation * else use echo "role name"; */ // Output if ( $role == 'administrator') { echo "Administrator"; } if ( $role == 'subscriber') { echo "Subscriber"; } if ( $role == 'contributor') { echo "Contributor"; } if ( $role == 'author') { echo "Author"; } if ( $role == 'editor') { echo "Editor"; } } } } add_filter ( 'bp_directory_members_item', 'who_are_you_dir' );To show user’s role(s) on his profile, you can use this:
Show user’s role on profile
function blablabla() { $user = new WP_User( bp_displayed_user_id() ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) echo $role; } } add_action( 'bp_before_member_header_meta', 'blablabla' );October 18, 2015 at 4:22 pm #245642In reply to: Creat Group Problem
Crish
Participanthi,
I have try with permalink but not working, still same problem.
And I think no need to create page in admin for create group , it’s directly provide by Buddypress plugin.
If not then how can i create page for that , can you assist me.. ?
I am using theme jumpstart.Waiting for your reply.
Thanks,
October 18, 2015 at 8:50 am #245635In reply to: Creat Group Problem
danbp
ParticipantHave you permalinks activated ?
Does the page really exist ?
Have you tested with 2014 or 2015 theme ?October 17, 2015 at 7:15 pm #245619In reply to: How to find way around code
shanebp
ModeratorIt can be bit confusing at first.
The profile templates are here:
buddypress\bp-templates\bp-legacy\buddypress\members\single\profile\Don’t edit them.
Create template overloads and edit those.October 17, 2015 at 5:42 pm #245611In reply to: Register and Forgot Password
doperdoll
ParticipantYes I am sorry for the hijack. It didn’t seem like anyone was answering.
I googled and read everything was present and I did not find the answers to my questions. I would like to put the registration into a popup. But there is nothing mentioned about that.
If it is too complicated for a pop-up I would be happy to settle with a formatted page. Currently my page is showing 2 uneven columns and there is a check box to subscribe to newsletter squeezed in between the 2 columns. The check box is coming from another plugin mailpoet. I am using the enfold theme.
Any advise would be helpful. I would really like to use your plugin but, I don’t want to spend days coding.
October 17, 2015 at 2:50 am #245592In reply to: “Favorite” counter/ count
JMunce
ParticipantJust an update on this thread.
At the moment, there aren’t any plugins for this. The BuddyPress Like plugin is broken (it breaks WordPress themes on install and isn’t being supported). I tried others as well. The BuddyPress Compliments seems like a great plugin, but only allows users to compliment other members (not compliment posts). It’s interface and options, useability is great though.
It does what many people are requesting (on WordPress as well as this forum): lets people add “likes” to posts AND lets people customize the button that does the “liking” (I mean you can name the object and set an image for it).
Is there any plans within BuddyPress to add a “like” function (which tallys the likes on posts)? (If so, Compliments is a great model.)
Screens of BuddyPress Compliments:
October 16, 2015 at 3:25 pm #245564In reply to: Warning message when posting in groups
Henry Wright
ModeratorLike @venutius said, this is likely to be theme related. Considering the theme is premium, nobody here can see the code in order to try and help. You should open a support ticket on the plugin’s support website.
October 16, 2015 at 3:18 pm #245562In reply to: Warning message when posting in groups
Venutius
ModeratorLooks like there’s a problem with the Community Junction theme. Try switching to 2015 theme and see if the error continues.
October 15, 2015 at 9:21 am #245481In reply to: Profile Field Visibility Radio Button
danbp
ParticipantYou can try to modify
\buddypress\bp-templates\bp-legacy\buddypress\members\single\profile\edit.phpTo do so, you need a template overload
Be carefull with class & id’s, as this part is actually working with ajax to show/hideOctober 14, 2015 at 2:18 pm #245452In reply to: bp_setup_current_user called incorrectly error
shanebp
ModeratorI cannot duplicate this issue with WP 4.3.1, BP 2.3.4, any WP theme such as 2015.
October 14, 2015 at 3:58 am #245438In reply to: Error with recent plugin update
eureka345
ParticipantI have the same behaviour on my setup. WP Multisite, BP multiblog enabled. I deactivated everything and reverted to 2015 theme.
October 14, 2015 at 3:55 am #245437In reply to: bp_setup_current_user called incorrectly error
eureka345
ParticipantI am getting this error with zero plugins activated – only BuddyPress. Even on Twenty Fifteen theme I am still receiving this error (well, notice).
October 13, 2015 at 10:25 pm #245434In reply to: Error with recent plugin update
shanebp
ModeratorAsked and answered many times.
If you’ve turned off all plugins and are using a WP like 2015, you should not see the warning.
Then use your theme.
Then start turning on plugins, one at a time.October 13, 2015 at 4:56 pm #245431In reply to: Register and Forgot Password
shanebp
ModeratorPlease do not hijack threads or double post.
Your reg page shows the standard layout.
Adjusting the layout may require changes in the css for your theme.
There are many articles about customizing the registration page.
Google: buddypress customize registration pageOctober 13, 2015 at 1:36 am #245400In reply to: bp_setup_current_user called incorrectly error
shanebp
ModeratorIt means something in your theme or a plugin is calling a user hook too early.
It can be tricky to track down.
It’s an aggressive notice – but just a notice, not an error.
You shouldn’t see it unless you have debug turned on.October 12, 2015 at 4:09 pm #245388In reply to: buddypress frontend links
robert198222
Participantyou’re correct regarding the nginx rewrites, didn’t think of that…
hmm.. how strange, not sure what to do actually. The theme developers say that it should work.
http://listify.astoundify.com/article/683-is-the-listify-theme-a-buddypress-compatible-themeNow the “Change Avatar” link isn’t shown anymore for some reason, only thing I did was to deactivate and then reactivate the buddypress plugin. everything in the configuration seems correct (in setting the “Allow registered members to upload avatars” is checked). and only error I have in the logs is this related to buddypress.
Perhaps better to uninstall buddypress for now and wait for a more stable version.
-
AuthorSearch Results