Search Results for 'wordpress'
-
AuthorSearch Results
-
April 25, 2014 at 8:58 pm #182083
godavid33
ParticipantI was incorrect, it’s not a bug. The solution (thanks to @r-a-y) is this:
$act_item = bp_activity_get_specific( array( 'display_comments' => true, 'activity_ids' => ACTIVITY_COMMENT_ID ) );Closed trac ticket can be viewed here https://buddypress.trac.wordpress.org/ticket/5592#comment:4
April 25, 2014 at 12:39 pm #182052In reply to: Add ad code into activity stream
Henry Wright
Moderator@bhekzin you’ll need to decide if you’re going to add an ad after X number of items have been added to the stream or if you’re going to add an ad every X number of seconds (or minutes, or hours). If you choose the interval approach, check out
wp_schedule_eventhttps://codex.wordpress.org/Function_Reference/wp_schedule_event
April 25, 2014 at 5:20 am #182034In reply to: 2.1 top features
SK
ParticipantI’ll revise my top 5 to:
April 25, 2014 at 3:32 am #182031In reply to: [Resolved] Settings –> Profile doesn't open
r-a-y
KeymasterHope is probably using a theme that is a bp-default derivative.
This is a bug that was addressed in #5549:
https://buddypress.trac.wordpress.org/ticket/5549It will be fixed in v2.0.1, but @amalsh can manually apply the following changeset in the meantime:
https://buddypress.trac.wordpress.org/changeset/8292April 24, 2014 at 2:47 pm #181983terraling
ParticipantThanks @godavid33.
I’d like to fix this without having to resort to a custom sql query.
BuddyPress is designed to do this (sort alphabetically by display name rather than username) correctly.
In the relevant code, it checks to see if WordPress-BuddyPress profile syncing is enabled. If it is, it runs the query against the wp_users table rather than the wp_bp_xprofile_data table, because “the table is smaller and better indexed”. If syncing is disabled then it runs the query against the xprofile display_name field instead.
I have fixed the problem by turning off syncing so that it uses the xprofile display name, so my question is, what does profile syncing do exactly and when/how does it do it?
I presume it overwrites nicename in wp_users with the display_name from xprofile (anything else?), but in my case it is not doing so, it appears broken.
If I could identify the when/how then I’d be able to see if it is something I’ve broken or omitted in, for example, my custom registration page.
April 24, 2014 at 1:06 pm #181979Mathieu Viet
Moderatorhi @bitpath
Don’t worry, it’s been committed to core and will be included in next upgrade
https://buddypress.trac.wordpress.org/changeset/8304April 24, 2014 at 7:38 am #181966In reply to: Block activity stream types
palmdoc
ParticipantI also tried the plugin
https://wordpress.org/plugins/buddypress-block-activity-stream-types/
but it seems it’s an orphaned one not updated for a couple of years
What I really hope to do is to prevent bbPress new topics and replies from appearing in the Activity stream – it’s really quite redundant I feelHelp anyone?
April 23, 2014 at 11:20 pm #181952stwc
Participant@simple-man this issue has been fixed by the 2.1alpha patch here: https://buddypress.trac.wordpress.org/ticket/5563#comment:24
Thank goodness. It was an issue with a missing field in my wp_signups table, which was there either because I downgraded from a Multisite install or because I have Gravity Forms installed. All seems well now.
April 23, 2014 at 10:05 pm #181950OrlandoDS
ParticipantHey,
I’m had the same problem and resolved the issue;
Cause of the problem
Wordpress database error Unknown column ‘signup_id’
column: signup_id missing from database table wp_signupsSolution
create primary key column titled ‘signup_id’ by entering the following sql statement at the mysql prompt:
ALTER TABLE 'database_name'.'wp_signups' ADD COLUMN 'signup_id' INT NOT NULL AUTO_INCREMENT;Problem History
Error: Invalid Activation key
Also, manage signups view is empty, but I have attempted to register multiple userssystem
- LAMPP
- WordPress Version 3.6.1
Unsuccessful Resolutions:
- activate 2012 theme
- deactivated all plugins
- deleted + reinstalled buddypress
Known Database Issues:
- the field user_activation_key is empty in table wp_users
- the field activation_key is NOT empty in table wp_signups
- column signup_id is missing from table wp_signups
- there is no PK or FK column for table wp_signups
apache error log
Found some useful output from apache log file, which is what led my solution:
[Wed Apr 23 20:58:19 2014] [error] [client xx.xx.xxx.xxx] WordPress database error Unknown column 'signup_id' in 'order clause' for query SELECT * FROM wp_signups WHERE active = 0 AND activation_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx' ORDER BY signup_id DESC LIMIT 0, 1 made by require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, bp_template_redirect, do_action('bp_template_redirect'), call_user_func_array, bp_screens, do_action('bp_screens'), call_user_func_array, bp_core_screen_activation, bp_core_activate_signup, BP_Signup::getTo the BP devs, I hope that’s enough to solve the problem at the application code level, instead of the database hack I used. I have a feeling the error might be due to using an old WP version, as the error appears to stem from the core WP files and not the BuddyPress files…
April 23, 2014 at 8:03 pm #181946In reply to: Custom classes for profile pages, possible?
jerryskate
ParticipantYeah it might be correct, but it doesn’t work. I have tried pretty much anything regarding the body class, but the page doesn’t output anything i can use. It works at the main profile page, where my last slug is unique to the username, but as soon as you click on any tabs at the profile page, its lost, since the slug change to a more universal one. Here´s some of the things i tried, to no luck. https://wordpress.org/support/topic/give-pages-truly-unique-id´s-classes-possible?replies=23
This is the page output:
[page] => 0 [pagename] => profile [error] => [m] => [p] => 0 [post_parent] => [subpost] => [subpost_id] => [attachment] => [attachment_id] => 0 [name] => profile [static] => [page_id] => 0 [second] => [minute] => [hour] => [day] => 0 [monthnum] => 0 [year] => 0 [w] => 0 [category_name] => [tag] => [cat] => [tag_id] => [author] => [author_name] => [feed] => [tb] => [paged] => 0 [comments_popup] => [meta_key] => [meta_value] => [preview] => [s] => [sentence] => [fields] => [menu_order] => [category__in] => ArrayAs you can see the page doesn’t output a class unique to the profile, so doesn’t seems to work to filter the bodyclass.
Must be another way of doing this?
April 23, 2014 at 2:50 pm #181939In reply to: Custom classes for profile pages, possible?
modemlooper
Moderatorwhat Henry posted is correct way. scroll down to Add Classes By Filters
April 23, 2014 at 10:47 am #181930In reply to: Members uploading videos to website
Prince Abiola Ogundipe
Participantif you have a basic php and css knowledge then you can give it a go. the easiest way is by creating custom post type call Video with tags and categories capability.
then code upload form and link it to your post type.
wordpress built in oembed is another benefit for your user to be able to embed videos from oembed supported sites.
Naijaping
April 22, 2014 at 6:17 pm #181910In reply to: Traslation: Lost Password
danbp
ParticipantThis string is in WordPress: wp-includes/user.php:153
<strong>ERROR</strong>: The password you entered for the username <strong>%1$s</strong> is incorrect. <a href=\"%2$s\" title=\"Password Lost and Found\">Lost your password</a>?April 22, 2014 at 5:34 pm #181909In reply to: What happened to these Buddypress Plugins?
aces
ParticipantYou could try putting the following in you child theme functions.php file
function bbg_enqueue_styles() { remove_theme_support( 'bp-default-responsive' ); } add_action( 'wp_enqueue_scripts', 'bbg_enqueue_styles', 5 );For more info ( including important details ) see: https://buddypress.trac.wordpress.org/ticket/3881#comment:2
——————————————————————————————–
EDIT: I’ve just noticed that you have been told this answer before: https://buddypress.org/support/topic/upgraded-and-now-nav-and-sidebar-is-responsive/#post-150007
Please start your own Topic, rather than jump in on others, which can get confusing for those trying to fix a different problem.
In your New Topic please describe more thoroughly the actual problem you personally are having and what you have already tried, including links to the theme, plugin, snippet or tutorial etc., ( if possible, practical or appropriate )?
April 22, 2014 at 7:11 am #181886In reply to: Email Notifications
sharmavishal
ParticipantCheck this one too
April 22, 2014 at 6:04 am #181883meg@info
ParticipantCheck if registration is enabled in your WordPress settings.
April 21, 2014 at 8:57 pm #181856In reply to: BP 2.0 | Fatal Error, Profile Updates
r-a-y
KeymasterThanks for the report, @rewindcaz.
A ticket was created and addressed here:
https://buddypress.trac.wordpress.org/ticket/5571This will be added for v2.0.1 in the upcoming days.
April 21, 2014 at 3:32 pm #181846In reply to: Email Notifications
Craig
ParticipantThanks @shanebp, I’ll try that.
In the meantime I’ve found a plugin that works really good.
April 21, 2014 at 7:47 am #181835In reply to: Unable to Register Users
@mercime
Participant@sarahs91 there have been changes to both BuddyPress and WordPress. Have you done some basic troubleshooting like changing theme to Twenty Fourteen/Thirteen? If it’s still an issue, have you deactivated plugins other than BuddyPress to check which is causing conflict in your registration?
April 20, 2014 at 7:23 pm #181816In reply to: BuddyPress App
meg@info
ParticipantApril 20, 2014 at 7:19 pm #181815In reply to: Modifying a core function!
meg@info
ParticipantApril 20, 2014 at 6:52 pm #181814In reply to: Lost admin access after 2.o update
Mathieu Viet
ModeratorApril 20, 2014 at 6:50 pm #181813Mathieu Viet
ModeratorThanks for your feedback, can you confirm this patch is solving your issue ?
April 20, 2014 at 5:40 pm #181811In reply to: How to create LinkedIn with Buddypress?
bp-help
Participant@mldia
This is a random guess but:
https://wordpress.org/plugins/wp-linkedin-buddystream/April 20, 2014 at 7:04 am #181792In reply to: Lost admin access after 2.o update
meg@info
ParticipantHi @imath, @boonebgorges,
I think the problem is caused by bp_update_to_2_0().
https://buddypress.trac.wordpress.org/ticket/5569 -
AuthorSearch Results