Search Results for 'toolbar'
-
AuthorSearch Results
-
September 19, 2012 at 11:46 pm #142121
In reply to: how to enable tool bar?
r-a-yKeymasterTry logging in to your WP admin dashboard and navigating to “Settings > BuddyPress”. Next, click ono the “Settings” tab, you should have the option to enable the WP Toolbar.
September 13, 2012 at 11:26 pm #1416449087877InactiveIf you don’t want the bar showing up for non-logged in users then go to dashboard/settings/buddypress/settings and uncheck show the toolbar for logged out users.
September 12, 2012 at 2:34 pm #141520In reply to: How do I put my logo in BP toolbar?
Tammie ListerModeratorYou might want to try this: https://wordpress.org/extend/plugins/custom-admin-bar/
September 10, 2012 at 9:41 pm #141392Paul Wong-GibbsKeymasterI don’t think what you describe with the pending comments notification is a bug. As you say, if a user has a certain level of permission on a blog, then they might have enough permission to moderate comments. I figure you can test this easily by bumping one of those users down to a subscriber or a contributor role and see if it goes away for them.
September 6, 2012 at 6:44 am #141101In reply to: How to edit group word from toolbar
danbpfrParticipantHi,
you changed the wrong file. Never modify a core file when what you need is on the public side ! This means a template of the theme you’re using.
i said “you can search a term in the pot file”, not you must modify the pot file. This file is necessary for translation purpose and has no activity on your site. With a pot file you can generate a po file, and by saving it, you create the compiled mo file. PHP use this mo file at least.How it works ?
– searching a word: xxx.pot file
– translating/modifying a word: xxx.po file (no T in the extension)
– saving the po file within a po editor sofware like poEdit
– saving the po file will generate a compiled format called .mo file witch must be uploaded on your server via FTPIn your case, the word “groups” you want to modify is used in these files. You will find this piece of code in your po file.
`#: bp-activity/bp-activity-loader.php:189
#: bp-activity/bp-activity-loader.php:284 bp-core/admin/bp-core-update.php:354
#: bp-core/bp-core-template.php:260 bp-groups/bp-groups-activity.php:143
#: bp-groups/bp-groups-activity.php:179 bp-groups/bp-groups-activity.php:215
#: bp-groups/bp-groups-activity.php:251 bp-groups/bp-groups-loader.php:502
#: bp-groups/bp-groups-screens.php:844 bp-groups/bp-groups-widgets.php:28
#: bp-groups/bp-groups-widgets.php:48 bp-groups/bp-groups-widgets.php:119
msgid “Groups”
msgstr “”`Learn more here: https://codex.buddypress.org/translations/
September 6, 2012 at 1:35 am #141090In reply to: How to edit group word from toolbar
mix35ParticipantHello,.
I tried to change the word “Group” in bp-languages/buddypress.pot file but nothing is happen same in the bp-groups/bp-groups-template.php:361 . Is this word can’t be change in one file? http://content.screencast.com/users/decs2/folders/Jing/media/f9681c4b-3042-41c9-b3b9-4dd671f555c0/pleasehelpme.pngSeptember 5, 2012 at 9:51 am #141020In reply to: How to edit group word from toolbar
danbpfrParticipanthello,
in such situation you have to read the codex:
https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/
https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/If you need to locate a word within BP, you can use the search function of Notepad++ or you can opening the bp-languages/buddypress.pot file. There you can see the word and the name of the file(s) containing it, included the line #.
What else ?
September 3, 2012 at 5:57 pm #140840In reply to: Move Login/Register in the Toolbar to the Right?
@mercimeParticipant== login/register links in the toolbar to the right side instead of the left? ==
@flq I see these on the right. what theme are you using? or have you resolved this already?September 3, 2012 at 3:36 am #140786In reply to: [Resolved] How can I get the buddypress toolbar back
mix35ParticipantThank you so much Ben Hansen. You did help me,..
September 3, 2012 at 3:15 am #140784In reply to: [Resolved] How can I get the buddypress toolbar back
Ben HansenParticipanthi check this thread you need to create that file:
September 3, 2012 at 1:32 am #140778In reply to: [Resolved] How can I get the buddypress toolbar back
mix35ParticipantIs their a way to reset the buddypress setting. I had fix this problem before by dropping all the tables in the database and import it the backup.
But in my case now I had not backup. What should I do?
September 3, 2012 at 12:17 am #140774In reply to: [Resolved] How can I get the buddypress toolbar back
mix35ParticipantHello,..
Sorry for the late reply I lost internet connection.I cant find the file bp-custom.php,… Cant you give that script? I will add it to the folder.
Even I make a php file with the added script that you gave it doesn’t work,..
http://content.screencast.com/users/decs2/folders/Jing/media/0ac52aae-b021-49fd-82dc-977a4077fb30/2012-09-03_0824.png
This is the script below
http://content.screencast.com/users/decs2/folders/Jing/media/ae4023b6-d5e9-46d6-bf13-8f4e09d4c25e/2012-09-03_0923.pngSeptember 2, 2012 at 6:02 pm #140762In reply to: how to hide admin activity on Buddypress activity?
Ben HansenParticipant@shawn38 thanks for your help i figured things out after reading this post i also figured out that the plugin does work you just can’t turn it on or off using the new toolbar so what i did was using the custom file to temporarily activate the old toolbar in order to activate the ninja plugin. thanks again for all your help here and on the other topic!
September 1, 2012 at 8:37 am #140684In reply to: Move Login/Register in the Toolbar to the Right?
Austin NicholsMember–‘–,–‘{@
August 24, 2012 at 1:09 pm #140134In reply to: [Resolved] Editing New WordPress Toolbar
iamdhuntParticipantWow I made things a lot harder than they should’ve been lol. All I had to do was replace ”!is_super_admin()” with ”!is_user_logged_in()”. Thanks for pointing me in the right direction.
August 24, 2012 at 10:54 am #140125In reply to: [Resolved] Editing New WordPress Toolbar
danbpfrParticipanti’m not a programmer at all, but better try this:
`function add_sumtips_admin_bar_link() {
global $wp_admin_bar;
if ( !is_super_admin() || !is_admin_bar_showing() || is_user_logged_in() )
$wp_admin_bar->add_menu( array(
‘id’ => ‘sumtips_link’,
‘title’ => __( ‘SumTips Menu’),
‘href’ => __(‘http://sumtips.com’),
) );
endif
}
add_action(‘admin_bar_menu’, ‘add_sumtips_admin_bar_link’,25);”`August 24, 2012 at 10:17 am #140123In reply to: [Resolved] Editing New WordPress Toolbar
iamdhuntParticipantOk sorry but I’m not the best programmer. Using their menu as an example, do you mean something like this:
”function add_sumtips_admin_bar_link() {
global $wp_admin_bar;
if ( !is_super_admin() || !is_admin_bar_showing() )
return;
if ( is_user_logged_in() )
$wp_admin_bar->add_menu( array(
‘id’ => ‘sumtips_link’,
‘title’ => __( ‘SumTips Menu’),
‘href’ => __(‘http://sumtips.com’),
) );
else
false;
endif
}
add_action(‘admin_bar_menu’, ‘add_sumtips_admin_bar_link’,25);”August 24, 2012 at 10:08 am #140120In reply to: Change redirect link on Toolbar
iamdhuntParticipantThanks I got the redirect logout to work by using the function from here: http://projectivemotion.com/2011/07/27/wordpress-always-redirect-to-homepage-after-logout/
Still looking to change the link on the toolbar’s My Account from “Edit Profile” to “Activity”
August 24, 2012 at 9:43 am #140116In reply to: [Resolved] Editing New WordPress Toolbar
danbpfrParticipantYou can use a template conditionnal tag.
if ( is_user_logged_in() ) :
your custom menu stuff
else
something for non logged user
endifAugust 24, 2012 at 9:18 am #140112In reply to: [Resolved] Editing New WordPress Toolbar
iamdhuntParticipantThanks but I already understand how to add items to the menu, I’ve already done that. What code do I need to add to hide those menu items from non-logged in users?
August 23, 2012 at 10:42 am #140043In reply to: [Resolved] Editing New WordPress Toolbar
August 23, 2012 at 10:20 am #140040In reply to: Change redirect link on Toolbar
danbpfrParticipanthello,
view here:https://codex.wordpress.org/Function_Reference/wp_logout_url
and here for inspiration
http://wordpress.stackexchange.com/questions/15049/buddypress-redirects-on-login-and-logoutAugust 20, 2012 at 10:05 am #139842danbpfrParticipantHello,
there is probably an error in the WP’s spanish translation. Or you use a plugin witch have an old version of tyniMCE.Are your language settings correct ? View in wp-content and in the dashboard.
Are your plugins compatible with WP 3.4.1 and BP 1.5/1.6 ?
Debug by deactivating them exept BP and use bp-default theme during the tests.
If you find nothing, you have to search in plugins languages .po file with a text editor like notepad+ and track all special caracters and all html tags you will find in it. Sometimes > or < are forgotten by translators…
Begin pehaps by Achievements as you mentionned it in relation with profiles…You can also try to reactivate the old BP admin bar to see if that you have the same error.
Put this in a bp-custom.php file into your plugins folder:
`add_filter( ‘bp_use_wp_admin_bar’, ‘__return_false’ );`August 20, 2012 at 8:37 am #139836c0rp53Memberbump
August 16, 2012 at 7:13 pm #139628In reply to: [resolved] Mobile Phone Opt Out? Button somewhere?
SolarPrestigeMember@mercine @modemlooper
Thanks, I’ve activated that plugin. The toolbar has reappeared which is great. However the layout on my iphone now has column on the right-hand side (I use a child theme of the default theme) taking up most of the screen with the main body just a thin sliver on the left.
Is there a simple fix to this or does this require editing the css? If any code needs changing, any info on where I should be looking would be extremely helpful.
Thanks in advance for any pointers.
-
AuthorSearch Results