Search Results for 'theme'
-
AuthorSearch Results
-
August 26, 2015 at 5:05 pm #243662
shadow_boi
ParticipantHi @danbp,
i have tried on other default wordpress theme, the mentioned users notification does not work on any of them.
i actually checked the notifications page, there has no notification for the mentioned action. so i dont think it might be a theme related issue. it seems like the notification event is not recorded in DB.so to recap of what works and what does work:
the notification does not work if I mention someone in forum reply or in a forum topic.
Notification works for when i mention someone in buddypress activity streams.August 26, 2015 at 4:30 pm #243660danbp
Participantcheck Activity auto-refresh in dashboard > Settings > BuddyPress > settings tab.
If it is already done, activate Twenty Fifteen theme and see if the issue is still in.
August 26, 2015 at 4:22 pm #243658In reply to: How to change the “Members” color in members page
danbp
Participantbuddypress.css contains all styles used by BP.
I also use a cache plugin that is not caching for logged in users.
If i understand this correctly, it means that if i visit your site without being logged in, i get a page from the cache, right ? This means logically that you have to be logged in while testing your change. And finally, it could be possible that non logged users see (it’s an example) a black title (cached) and logged-in user see a red title (the most recent, not cached, version of the new style applied to that page). Hum…
When you use a child-theme, and his mandatory style.css, the child has priority over the parent theme, and buddypress.css.
Child theme is the only safe strategy to get your customization without loosing your work at each update. You add to it only what you want to modify. Even if you need to change only 2 title styles.
In your case, you need only a style.css with a rule or two for your titles. You don’t have to add template files.is it possible to find somewhere already created templates with different color profiles
A template is a structure of different HTML tags and some php code for dynamic content.
A theme is a design applied to this armature.
A content is what is showed inside the structure.
HTML is used to build the structure
CSS is used to build the layout/design
Content is text, images, videos, etc
PHP is a coding language to build dynamic pages between a database and a server.BuddyPress template files are stored in wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress
Unfortunatly for you, the theme is a premium one for which we can’t provide support, as we have no access to his code and can’t install it to test without using a licence.
See theme doc for information about child theming it and other advice for adding custom CSS.
August 26, 2015 at 12:01 pm #243637Topic: Terms & Conditions Checkbox
in forum How-to & Troubleshootingmangelesgcl
ParticipantHello
I want to add a Terms & Conditions checkbox on buddypress signup form. I tried it using: dashboard/users/profile fields ( https://buddypress.org/support/topic/terms-of-agreement-checkbox-for-registration/ ) but I can’t see any changes when I add a new field (It doesn’t matter the kind of field). What am I doing wrong? Buddypress version 2.3.2.1. Theme Mediso.
Thanks,
August 26, 2015 at 11:11 am #243635In reply to: How to change the “Members” color in members page
CreationP
ParticipantI am using xplicit for a theme. I also use a cache plugin that is not caching for logged in users.
I am taking local backups and restoring if something does not feel good. Through all my testing and experimentation with buddypress nothing have been changed as I revert all changes that do not work.
Now that you mentioned templates, is it possible to find somewhere already created templates with different color profiles and change them from there?
I found yesterday the buddypress.css maybe the answer lies there? I don’t mind redoing all the work every update as I only need to change 2 titles. Everything else fits to us.
August 26, 2015 at 2:36 am #243631In reply to: Removing the Member Navigation Menu
Ben Riga
ParticipantThanks for the quick response, shane.
I think I may need some more remedial help though as in trying to do that I broke the page.
I am using the twentyfourteen theme as a base so have created a child of that called twentyfourteen-child.
To override the home.php page like you suggested. I created a new file at:
twentyfourteen-child\buddypress\members\single\home.phpEven just copying the exact same file over from the buddypress members\single folder broke the page (lost most of the styling and item body and left sidebar etc) so clearly I’m doing this wrong.
I think I need to have a better idea of how template overriding works. I’ve searched through the codex but have not been able to find anything that helps. What’s the best place to learn more about that? A how-to tutorial or something like that would be great.
Thanks again for the help and support,
BenAugust 26, 2015 at 12:55 am #243624In reply to: How to change the “Members” color in members page
danbp
ParticipantWhich theme do you use ? Seems you renamed yours to Test, and i was unable to find it somewhere.
Also, do you use a cache plugin ? If it’s the case, disable it or clear it while testing CSS.I cannot put it in maintenance mode
This is not necessary if you had a local copy. I strongly recommend you do that if you want to manage correctly a high traffic site.
You can use a child-theme for your theme, not for BP which has no theme since 1.9. The one called bp-default is no more maintained and is only in for temporary backward compatibility for (very) old BP site.
BP use templates, which are stored in bp-templates/bp-legacy/buddypress/. Those templates are tailored to fit with almost any recent (and decently coded) themes.
Creating a child theme is explained on hundreds of sites and on WP’s codex. Additionnal infos for BP are given here.
August 26, 2015 at 12:12 am #243621In reply to: thumb and full avatars are the same size -_-
Henry Wright
ModeratorYour theme might be Customizing BuddyPress Avatars?
August 26, 2015 at 12:05 am #243618In reply to: How to add user profile link to specific menu?
danbp
Participantcould it be that you created your Top menu, by adding a new menu without having two different menu location in your theme ? This can explain why you see always your item, what ever menu you choose. This happen because you try to assign 2 different menus to a same place.
Following snippets where successfully tested with Twenty Twelve.
This fires the profile link on the menu tab.
function profile_button_menu_item ( $items, $args ) { // menu name. Primary is default main menu location in Twenty themes if ( $args->theme_location == 'primary') { $items .= '<li><a href="' . bp_loggedin_user_domain() . 'profile/public/">' . __('My Profile') . '</a></li>'; } return $items; } add_filter( 'wp_nav_menu_items', 'profile_button_menu_item', 10, 2 );The following explains how it works with 2012.
In 2012’s header.php, there is only one menu, located line 45
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) );?>To use 2 menus, I added below that line another location
<?php wp_nav_menu( array( 'theme_location' => 'top', 'menu_class' => 'nav-menu' ) );?>In child-theme’s functions.php, i added
function register_my_menu() { register_nav_menus( array( 'top' => 'Top' ) ); } add_action( 'init', 'register_my_menu' );Under Menu Settings (wp-admin/nav-menus.php) i have now 2 theme locations.
Primary MenuandTop
Understand here that 2 locations are different of having only 2 menus. Location is a unique place for ONE menu.Of course, I have 2 different menus. One is assigned to Primary Menu location, the other one to Top location.
And i can now move my profile item from one to other menu, by simply changing the location (primary ⇔ top) in
profile_button_menu_itemfunction.Codex reference: https://codex.wordpress.org/Navigation_Menus
August 25, 2015 at 11:51 pm #243615In reply to: How to change the “Members” color in members page
CreationP
ParticipantI’m trying and trying and can’t find any lead on that.
The codex is complex and I cannot understand the child theme concept. Is it a child theme of the bp or a child theme of the theme I use (explicit)? If it is of the theme I use how can i make it to incorporate buddypress?
To add to the problems, alt-tab is a website that receives 1000+ visits/day and I cannot put it in maintenance mode in order to work on my leisure.
I hate to ask you that, and I know you have better things to do rather than answering questions, but can you please take me by the hand and lead me to solving this problem as I am unable to solve it on my own. Especially in a live environment.
When I firebug the “Members” title in the alt-tab.gr/members page I get the following:


I am at a loss here…
August 25, 2015 at 7:58 pm #243601In reply to: Removing the Member Navigation Menu
shanebp
ModeratorYou want to remove navigation from all profile pages?
Create a template overload of this file:
bp-templates\bp-legacy\buddypress\members\single\home.phpAnd remove this div:
<div id="item-nav">August 25, 2015 at 4:58 pm #243599In reply to: How to change the “Members” color in members page
danbp
Participanth1.main-title, h1.page-titledoesn’t exist. Why don’t you try the example at first ?Also, don’t apply template models to BP pages. These are only placeholders used internally, not ordinary WP pages.
Follow some guidelines on Codex before getting in more trouble.
August 25, 2015 at 2:54 pm #243584In reply to: How to change the “Members” color in members page
CreationP
ParticipantThanks for the fast reply. The problem is I did use the !important tag. I identified the h1.main-title as found throught the firefox inspector and added on the style.css the “color:red !important;” at the end of every other element inside the brackets. I did it on h1, h1.main-title and some other css elements but nothing worked.
If it is not to much trouble could you also have a look at the inspector and check if I identified the correct elements?
I changed to the color of my choise on:
h1.main-title, h1.page-title, h1
Then I tried on some bp-page elements after browsing the style.css of the theme. I also changed the page to wp-page/theme and bp page.
Nothing worked.
If it is not to much trouble could you also have a look at the inspector and check if I identified the correct elements?
August 25, 2015 at 2:13 pm #243576In reply to: Best CRM + online marketing sytem
August 25, 2015 at 2:03 pm #243574In reply to: How to change the “Members” color in members page
danbp
Participantonce you have identified the correct element id or class, you add
!importantto the new rule you want for it.
In a child-theme style.css preferably, something like:h1.entry-title { color: #DDD!important; }Note that this example will we applied to ALL page title.
August 25, 2015 at 6:28 am #243559In reply to: Problem typing activity in Android mobile phones?
djsteveb
Participant@jasonqw1 – if you switch temporarily to the 2014 or 2015 theme and try it – does it work then?
a couple BP updates ago my older themes starting do all kinds of weird things with activity – double posting – stuff like that.
Here lately, even after switching to 2015 theme my users are still having trouble with photo uploads (And rtmedia) – so far I have found that at least one user’s chrome browser seems unsupported with this combo – no details if he/she is using latest version or anything yet – and have not heard back if they tried with stock android browser or tried mobile firefox / opera mini yet.
August 24, 2015 at 9:48 pm #243550In reply to: Comment HTML tag Appearing in Activity Stream
djsteveb
Participant“Iโm using 2014.” – I guess you also tried with other plugins disabled?
Did you customiaze your theme files, or add a bp-custom file, or mu-plugins folder or anything.. might be time for a backup of your files and reinstall of 2014 or something ?
I just switched my main site to 2015… wow, editing files for this thing is a nightmare.
August 24, 2015 at 6:44 pm #243547In reply to: How to disable admin bar from homepage
danbp
ParticipantSorry, this theme is premium, we can’t help you with such, as we have no access to his code. You have to ask the theme support or read the appropriate doc (if exist).
August 24, 2015 at 6:26 pm #243544In reply to: How to disable admin bar from homepage
danbp
ParticipantTest admin bar (called Toolbar since WP 3.3) removal with one of Twenty’s theme.
It shows always on admin when logged-in, and depending the theme you use, on front-end.WP reference: https://codex.wordpress.org/Function_Reference/show_admin_bar
Which theme do you use ?
August 24, 2015 at 11:54 am #243532In reply to: avatar url insert database
danbp
Participantbp-custom.php
or child theme’s functions.phpAugust 24, 2015 at 11:50 am #243531In reply to: Post comments not appearing in activity stream?
danbp
Participant- Search Engine Visibility should stay unchecked. See your-site/wp-admin/options-reading.php
- Allow people to post comments on new articles: should be checked
(These settings may be overridden for individual articles.) -> could be set to of by default on some themes. Posts directory > Choose Post > Quick edit > Allow comments. See your-site/wp-admin/options-discussion.php - Site Tracking should be checked. BP Settings > components
- Blog & Forum Comments should be checked. BP Settings > settings
If you’re testing a fresh BP install, add some content so you’ll see how it’s displayed. BP Default Data plugin is ideal for this.
August 24, 2015 at 9:39 am #243525In reply to: Post comments not appearing in activity stream?
Bezuhov
Participantdanbp: will try your solution, will post feedback here ๐
Try this snippet which will force chronological comment display on the SWA.
install it in bp-custom.php or themeโs functions.phpAugust 24, 2015 at 4:14 am #243519In reply to: bp_core_remove_nav_item
danbp
ParticipantHi @muskokee,
BP nav menu code is in bp-core-template.php:3050 to EOF.To change the position of an item on profiles page, use this from within bp-custom.php
Position is defined by the numeric value:function bpfr_profile_menu_tab_pos(){ global $bp; $bp->bp_nav['activity']['position'] = 30; $bp->bp_nav['forums']['position'] = 50; $bp->bp_nav['profile']['position'] = 25; $bp->bp_nav['messages']['position'] = 10; $bp->bp_nav['notifications']['position'] = 40; $bp->bp_nav['friends']['position'] = 20; $bp->bp_nav['groups']['position'] = 60; } add_action('bp_setup_nav', 'bpfr_profile_menu_tab_pos', 100);You can also add some condition on the template. Ie
if ( is_user_logged_in() ) : your custom menu stuff else something for non logged user endif;Other reference: https://codex.buddypress.org/themes/members-navigation-menus/
August 23, 2015 at 9:12 pm #243513In reply to: Post comments not appearing in activity stream?
djsteveb
ParticipantTest this using 2014 theme? With other plugins disabled?
have you “enabled site tracking” in the buddypress settings?
( https://buddypress.org/support/topic/what-does-site-tracking-do/ )I think I may have a similar issue, and I think there was a thread about this recently, like in the past 3 weeks or so.. I have not whittled it down to a bp-custom issue, or theme issue, or what yet myself – too busy trying to fix more important things at the moment..
interested if you find the issue / resolution – hope these tidbits help to find..
August 23, 2015 at 6:29 pm #243507 -
AuthorSearch Results
Hi all,
I just started working on a production site, with latest wordpress and buddypress installed, but can’t quite figure out why post comments do not appear in activity stream. I have search indexing and allow activity stream commenting on blog and forum posts enabled, but nothing happens. Well, everything else works just beautifuly, except that minor or major issue, lol. ๐
Any ideas?
wordpress: 4.2.4
buddypress: 2.3.2.1
theme: mesocolumn
site: beta.karierist.si
Your help would be much appreciated, thanks. ๐