Search Results for 'wordpress'
-
AuthorSearch Results
-
August 5, 2014 at 2:33 pm #185967
In reply to: buddypress dashboard style
Henry Wright
ModeratorThis will be a fairly big task, bigger than what can be explained in a forum post. But there is a great article available. Check out Creating Admin Themes
August 5, 2014 at 11:43 am #185960In reply to: Create new entrance
danbp
ParticipantWhat do you mean by new entrance ? You’re working on a WordPress powered site using the BuddyPress plugin.
To get a chance for help on this support forum, please read also here.August 4, 2014 at 12:44 pm #185921In reply to: Don't send email
kurtye
ParticipantConfig your SMTP, this plugin works for me: https://wordpress.org/plugins/configure-smtp/
August 4, 2014 at 12:41 pm #185920In reply to: Custom members listing
kurtye
Participanttry this plugin https://wordpress.org/plugins/bowe-codes/
works for me!
August 3, 2014 at 9:52 pm #185892greatwebdesign
ParticipantHi,
I tried sending a link to the site but apparently this forum is blocking my message with link. Please go to the ThemeForest website and search for the Sweet Date theme (WordPress version). That is the theme that I’m using with BuddyPress.
Thank you!
August 3, 2014 at 8:13 pm #185884In reply to: BP Block Non Friends Activity
bp-help
Participant@informerfrk
You failed to mention it is a paid plugin and being that you are a new developer according to this thread: https://buddypress.org/support/topic/i-am-a-new-buddypress-plugin-developer-and-busy-to-create-a-new-plugin/
I don’t think it would be wise at this juncture in your development to expect people would pay for a small mod of the “friends only activity” plugin authored by Rich Fuller as well as Sarah Gooding which is old and that is what it appears to be according to your other thread here: https://buddypress.org/support/topic/need-some-modification-for-friends-only-activity-plugin/
I believe folks should make money on plugins but not by using a majority of someone else’s code from a previous and a kinda old plugin. Plus @megainfo has a really great free plugin on the repo that is very flexible here: https://wordpress.org/plugins/buddypress-activity-privacy/
And if one doesn’t need all those features then @shanebp offered a code solution which works well here: https://buddypress.org/support/topic/only-friendsyou-in-activity-feed-has-solution-been-found/
Either way good luck!August 3, 2014 at 4:41 pm #185873In reply to: BuddyPress Not Letting Users Register!
porter_hughes
ParticipantOk gosh well it was the only elway to get anyone’s attention because no one answered my last 3 pots. Anyway I installed WordPress locally on Mac using MAMP. I have not tried deactivating BuddyPress. I’m Using the 2013 Theme at the moment with some other plugins. And I justing using a single installation of WordPress
August 1, 2014 at 7:03 pm #185836shanebp
Moderator>In the original function, there’s no return statement only echo.
The original function is not a filter hooked function.
echo $tab; is not a return.
Read up on WordPress functions, actions and filters.August 1, 2014 at 2:46 pm #185827In reply to: Register Page redirects to wp-admin page
Sokrates
ParticipantHi @canadadre and @mercine
Ron R. advises that this plugin is no longer required with BuddyPress v2 onwards
To solve your redirection problem in a Genesis child theme, simply create a file in your Genesis child theme called register.php
Copy the contents of page.php from the main Genesis theme into this file and save.
Create a new page in the Dashboard e.g. “my new registration page”, assign it as the registration page in the Dashboard > Settings > BuddyPress > Pages et voila!
From my admittedly limited understanding, copying the legacy templates across from the plugin into your child theme as per the BuddyPress Codex doesn’t work with Genesis – please correct me if I’m wrong dear reader!
July 31, 2014 at 10:10 pm #185800In reply to: Custom redirect when access is restricted?
Henry Wright
ModeratorHi @eqerhe,
Check out the Theme My Login plugin. Once installed, if you enable the ‘redirection module’ it’ll do exactly what you need.
July 31, 2014 at 5:23 pm #185793In reply to: [Resolved] Translation.
danbp
ParticipantBefore installing any plugin, consider this translation into persian from the official translation repo for WP/BP/bbP
https://translate.wordpress.org/projects/buddypress/dev/fa/defaultYou can also contribute to this persian translation. Everithing to do so is explained on Goltpress.
July 31, 2014 at 5:20 pm #185792In reply to: Is buddy press adequate for my community?
@mercime
Participant@ancavreasy really depends on the scale your company is willing to engage with the customers.
If you only need forums, you do not need BuddyPress, just install bbPress plugin. For a more engaged community interaction via groups, friending, profiles, etc, then BuddyPress is your plugin.
e.g. of BP in action with some customizations
university – http://www.bpinspire.com/cuny-academic-commons/
newspaper – https://wordpress.org/showcase/my-telegraph/July 31, 2014 at 4:36 pm #185790In reply to: [Resolved] Translation.
bp-help
Participant@noyzen
Have you tried this plugin that supposed to translate WP/BP/bbPress to Persian? Link below:
https://wordpress.org/plugins/persian-world/July 31, 2014 at 12:53 pm #185784In reply to: Disable BP registration and enable WP registration
OsamaNuman
Participantthanks for the quick response !!
I just realized that -.- what I want is to have the registration page same as the login page that is with wordpress logo and all that, not to direct users to a registration page on my website
is there anyway I can do that ?
July 31, 2014 at 4:13 am #185770bp-help
Participant@informerfrk
Not sure without more detail what your looking for but you can look over one of my plugins that does this. Please note it hasn’t been updated in about 10 months. Maybe you can get something out of it and I am sure there are many other plugins you can study as well.
https://wordpress.org/plugins/home-page-to-bp-profile-plus-privacy/July 30, 2014 at 2:37 pm #185757In reply to: Disable BP registration and enable WP registration
danbp
Participantyou removed and added the same action, so nothing would changes: it’s just normal !
The difference beetween BP and WP registration is the BP xprofile additionnal fields for your members.
This means that BP modifies the aspect, not the registration process.And here is an answer to your question:
https://buddypress.org/support/topic/wordpress-login-and-registration-page/#post-171826July 30, 2014 at 8:17 am #185749danbp
Participantstandard display of birthdate has become a DD-MM-YY.
This is because you set it like this in wordpress !Add this snippet to your child theme functions.php or into bp-custom.php
(tested with 2.0.1 and Twenty Thirteen)// modify the date (format) output on xprofile function nanopass_date_format_on_profile ($time) { global $bp; if ( bp_is_active( 'xprofile' ) || bp_is_profile_component() || bp_is_member() ) { $time = current_time ('Y-m-d'); // date format - See https://codex.wordpress.org/Formatting_Date_and_Time } return $time; } add_action ( 'bp_format_time', 'nanopass_date_format_on_profile', 1 );Give feedback if it works for you.
July 29, 2014 at 9:56 pm #185732danbp
Participant$this->set_format( ‘/^\d{4}-\d{1,2}-\d{1,2} 00:00:00$/’, ‘replace’ ); // “Y-m-d 00:00:00”
or for a general usage
The date format is setable in wordpress admin for the whole site, including BP.
Dashboard > General (/wp-admin/options-general.php)But you prefer perhaps to explain more precisely what YOU want to achieve instead of answering my stupid questions ? 😉
So, again:
Which date do you mean on profile ? There is no date on a profile ! Only a field type called date(box) in the xprofile admin, which let’s you add a birthdate or something like this on profiles.July 29, 2014 at 9:40 pm #185728In reply to: [Resolved] Enabling Forum
@mercime
Participant@cregy you need to install bbPress forums plugin then follow instructions https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/
July 29, 2014 at 5:17 pm #185715In reply to: count & no-count !?!
danbp
ParticipantHi @noyzen,
if you only updated BuddyPress, it’s possible that the translation file contains an error.
Check your .po file for any strings looking like this one
https://buddypress.trac.wordpress.org/browser/tags/2.0.1/bp-languages/buddypress.pot#L3464
Example:
Groups <span class=\"%s\">%s</span>orMembers <span class=\"%s\">%s</span>
If correctly translated, perhaps is something wrong in your theme or child theme or even a plugin.
in this case, you should check the file indicated above the string to translate.
%s is very important to stay in the translation and in the original file to get the countJuly 29, 2014 at 3:04 pm #185712In reply to: Change "CHECK YOUR EMAIL" text after register!?
aces
ParticipantYou have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.
is in the current pot file ( see https://buddypress.trac.wordpress.org/browser/tags/2.0.1/bp-languages/buddypress.pot#L6122 ) …..July 29, 2014 at 7:36 am #185692In reply to: Member directory adding in custom PHP
@mercime
ParticipantJuly 29, 2014 at 7:34 am #185691In reply to: Need help with activity stream
@mercime
Participant@alex80ks feel free to post at pastebin.com and then post the generated URL here. Or create a ticket in BP’s https://buddypress.trac.wordpress.org/newticket using the same login info as you used here
July 28, 2014 at 9:35 pm #185682danbp
ParticipantIf you’re talking about the extended xprofile datebox field, the builder class
BP_XProfile_Field_Type_Dateboxof the xprofile datebox field is in bp-xprofiles-class.php:1459(bp 2.0.1)You can overwite this class with your own for reflecting your needs. The technique (add your own class to…) to use is explained on the Codex
If you’re meaning another date, you have to be more precise !
You’ll find also a global date setting in your wordpress admin.
July 28, 2014 at 5:16 pm #185677danbp
ParticipantLoad more use the Heartbeat API who refresh the activities each 5 minutes.
In BP 2.0.1, if you search for heartbeat, the result is:Search “heartbeat” (57 hits in 6 files)
bp-activity/bp-activity-filters.php (25 hits)
bp-activity/bp-activity-functions.php (5 hits)
bp-core/admin/bp-core-settings.php (6 hits)
bp-core/bp-core-admin.php (4 hits)
bp-core/bp-core-options.php (9 hits)
bp-templates/bp-legacy/js/buddypress.js (8 hits)Read the code if you understand it and see what you can do.
If not or if you estimate that it is a bug or needs an enhancement, open a ticket. -
AuthorSearch Results