Search Results for 'wordpress'
-
AuthorSearch Results
-
August 17, 2016 at 9:13 pm #257732
In reply to: Post On Buddypress Profile
Dono12
Participant@shanebp and @hnla Can you please remove my site URL from this code snippet and from the other URL below? I’m sorry to ask but the snippets
seems to be added in Bing and Google searches. Thanks in advance.https://buddypress.org/support/topic/showing-wordpress-posts-on-buddypress-activity/
Also I submitted a ticket earlier today making the request can you check if it’s in moderation and cancel it? It’s not showing in my Topics Started Page. Thanks again in advance and sorry for the trouble.
August 17, 2016 at 6:31 pm #257726In reply to: Group with multiple forums?
mlwilkerson
ParticipantI have the same need/concern.
Unfortunately, I think the suggestion from @openring to use https://wordpress.org/plugins/bbp-private-groups/ won’t work. I’ve looked closely at that plugin. It doesn’t seem to have anything to do with BuddyPress groups. Rather, it seems to have to do with creating it’s own role based access groups. So that’s a way of having more access control over your forums, which is valuable in and of itself, but it doesn’t pertain to BuddyPress.
August 17, 2016 at 3:29 pm #257723In reply to: Can’t seem to work on Yoast SEO plugin
mairaj
ParticipantIf you like to keep using Yoast for WordPress pages and exclude BuddyPress from using Yoast, you may try this.
function wpseo_fix_title_buddypress($title) { // Check if we are in a buddypress page if ( function_exists( 'buddypress') && ( !empty( buddypress()->displayed_user->id ) || !empty( buddypress()->current_component ) ) ) { $bp_title_parts = bp_modify_document_title_parts(); // let's rebuild the title here $title = $bp_title_parts['title'] . ' ' . $title; } return $title; } add_filter( 'wpseo_title', 'wpseo_fix_title_buddypress');August 17, 2016 at 9:33 am #257710In reply to: Can’t seem to work on Yoast SEO plugin
Paul Wong-Gibbs
KeymasterIt’s quite probable it just won’t work. BuddyPress intentionally interferes with the page that WordPress thinks its loading (when it’s a BuddyPress URL), and I suspect Yoast SEO will look at this page object, and because we’ve messed with it and because it doesn’t map to a real WordPress Page, it won’t work.
Sorry!
August 17, 2016 at 9:30 am #257707In reply to: Redirect does not work
Paul Wong-Gibbs
KeymasterWelcome Pack! Small world.
Can you try disabling Welcome Pack? That certainly interferes with user registration.
Please also try disabling iThemes Security.Then, test registration again, and see what happens.
If it still doesn’t work as expected, if you can switch your theme to one of the default WordPress themes (leaving those two plugins disabled), test again. If you have a test environment (say you might be using Pantheon hosting, for example), this should be easy to do, though if it’s only one server, I appreciate you might not want to modify your production site too much.
August 16, 2016 at 5:22 pm #257690In reply to: Modifying the “read more” activity link behavior.
r-a-y
KeymasterAs of right now, you would have to make a copy of the JS to make your required change:
https://buddypress.trac.wordpress.org/browser/tags/2.6.2/src/bp-templates/bp-legacy/js/buddypress.js?marks=530#L513This file should reside in your theme’s
buddypress/jsfolder.Keep in mind that this is the source JS. When used in production environments, this JS is minified to
buddypress.min.js.August 16, 2016 at 10:19 am #257677Apokh
Participant– checked- theres only one Activity page
– resaved permalink structure
– i dont use custom code, but activity+ plugin
– i use quiet a bunch of additional plugins:
–BoweCodes
–Buddypress
–DisableFeeds
–DownloadManager
–DynamicWidgets
–EventsManager
–GoogleAnalyticsDashboard
–GoogleFonts for WP
–HungryFEED
–LayerSliderWP
–Mediapress
–Members
–Metaslider+Pro
–myCred
–myCredHookBP
–PageBuilder Siteorigin
–PaypalDonations
–Peters Login Redirect
–PHP Text Widget
–SimplePress
–Siteorigins Masonry
–SpamProtect by Cleantalk
–TablePress
–Wordpress VideoGalery
–WP FullCalendar
–WP Lastlogin
–WP TwitterFeeds
–WP ULike
–WP touchmobileAugust 16, 2016 at 9:31 am #257669In reply to: Creating User Class Systems Out/Inside Buddypress
Paul Wong-Gibbs
KeymasterOur user details and activity goes into a massive database; however I don’t want this to be impacted by the forum users
If this is absolutely non-negotiable (don’t share the database), you are going to almost certainly have to set up a separate WordPress site, just for your community.
There is one users table in the database, provided by WordPress, and as BuddyPress is a plugin that runs on top of WordPress, we also use that users database table.
If you don’t want new community users mixed up with existing users, you need to put the community stuff on a separate WordPress. Or, write code to filter and customise various lists of users as/when/if you need. BuddyPress Member Types might help.
August 16, 2016 at 9:25 am #257668In reply to: role field in register form
Paul Wong-Gibbs
KeymasterAugust 16, 2016 at 9:21 am #257665In reply to: Front-End Publishing
Paul Wong-Gibbs
KeymasterThis is a better question for somewhere on the WordPress.org forums. More people over there, and this isn’t specific to BuddyPress. 🙂
August 16, 2016 at 9:21 am #257664Paul Wong-Gibbs
KeymasterDo other BuddyPress emails get sent?
Do WordPress emails get sent? (comment notification, new user registration, etc).August 16, 2016 at 8:16 am #257656sharmavishal
Participantperhaps this might help
https://wordpress.org/plugins/bbp-private-groups/screenshots/
August 16, 2016 at 8:12 am #257654August 15, 2016 at 1:36 pm #257626In reply to: Update custom table field when posting activity
Henry Wright
ModeratorIn order to update a custom table you’d need to use the wpdb class.
August 15, 2016 at 8:56 am #257620In reply to: Redirect does not work
danbp
ParticipantHi,
BuddyPress doesn’t handle registration. That’s WordPress territory.
You may read about WP two step authentication:
https://codex.wordpress.org/Two_Step_AuthenticationAnd here’s a tutorial from which you can built a multi step authentication:
Good luck !
August 14, 2016 at 1:48 pm #257607In reply to: Problem with change password and s2member
danbp
ParticipantDeactivate all plugins and the theme and test registering from WP using a Twenty theme as first.
Then activate BP and re-test.
Then activate S2 or whatever you use for paid membership and again, test.
And finally, you have to test your theme (if not a Twenty one).FYI, BuddyPress doesn’t handle the password field, but WordPress.
You’ll probably get better answers on WP or S2 support forum.August 14, 2016 at 12:32 pm #257604anonymousse2
ParticipantThank you @danbp for the plugin, but this one does not work. I nevertheless deactivated quite my plugins to part BP, nothing can be done we can always modify at will profile field. I also use the last version of BP and WordPress. My theme is SweetDate of SeventhQueen. What do I have to make now?
Thanks
August 13, 2016 at 5:53 pm #257591In reply to: Front-End Publishing
Earl_D
ParticipantThis one also looks good got updated today
https://wordpress.org/plugins/social-articles/August 12, 2016 at 8:58 am #257553In reply to: Activation email
Paul Wong-Gibbs
KeymasterEmails not sending have many possible causes. For the sake of clear discussion, please make your own topics, don’t bundle in on the same one.
@jtburlew Please check to see if your site sends WordPress emails reliably? (i.e. comment notification, password resets). Please also let me know what plugins you are using. Anything that changes POP3 or IMAP behaviour, or redeclares thewp_mailfunction, in particular.August 12, 2016 at 8:53 am #257550Paul Wong-Gibbs
Keymaster@imath has never reported with emails not sending from his French language WordPress sites, so I am assuming this is a server configuration problem – or incompatibility with something WPML is doing – rather than it being down to some character within the email string.
August 12, 2016 at 8:52 am #257549Paul Wong-Gibbs
KeymasterWhat plugins do you have active?
Does your site send WordPress emails reliably? (i.e. password resets, comment notifications)
August 11, 2016 at 1:22 am #257511In reply to: Does BuddyPress comply with disability W3C standards
@mercime
Participant@maryt66 You’re welcome. You can subscribe to the latest BP development news at https://bpdevel.wordpress.com/ or check out https://buddypress.org/blog/
Cheers.
MercimeAugust 10, 2016 at 2:54 pm #257498In reply to: Remove friendship-buttons title-tooltip
dolf h
ParticipantThank you @mercime. My solution mentioned above is working website-wide (and I like that):
<script type="text/javascript"> window.onload = function(){ var titled = document.querySelectorAll('[title]'); var numTitled = titled.length; var i = 0; for (i=0; i<numTitled; i++){ titled[i].removeAttribute('title'); } }; </script>I think I only need an Ajax refresh. Perhaps this plugin is suitable: https://wordpress.org/plugins/ajaxize/
I ‘ll give it a try.August 10, 2016 at 9:22 am #257491In reply to: Chinese Translation
Paul Wong-Gibbs
Keymaster(I’ve asked https://profiles.wordpress.org/petya to reach out to @idichoo to help get started with translations)
August 10, 2016 at 3:24 am #257474In reply to: Remove friendship-buttons title-tooltip
-
AuthorSearch Results