Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 7,726 through 7,750 (of 22,650 total)
  • Author
    Search Results
  • #182197
    Mathieu Viet
    Moderator

    No i thought you were using a specific theme for the administration of WordPress. Because i thought it was a css issue or something like it.

    I think i’ll try to see if the button is in the html source of the page using a search for ‘bp-admin-component-submit’. If you are using the Chrome Browser, you can for instance launch the inspector and once done, and on the tab “Element” click on ctrl + F to display the search input.

    If you are using another browser simply display the source in a text editor for instance and do the search from there.

    I think you’ll find the button meaning it’s a css/browser issue.

    If not it may means there’s a “fatal” that avoids the html to be completely output. In this case you can set the WP_DEBUG constant to true in your wp-config.php file, check what’s going wrong in this part and eventually try to fix it. Once done, don’t forget to set back the WP_DEBUG constant to false.

    #182195
    Picss3o
    Participant

    Hi imath thank you for the quick reply.

    It is a WordPress theme and I think you have identified my mistake, which was a dumb one I am ashamed to say.

    I thought I had used option 2) placing a folder called buddypress inside the child theme

    but I copied the instruction to follow the full directory structure so I have

    wordpress-theme/buddypress/bptemplates/bplegacy/buddypress/activity/index

    I will change to

    wordpress-theme/buddypress/activity/index

    #182189

    In reply to: Start Up Problems

    Mathieu Viet
    Moderator

    Hi,

    compatibility pack == https://wordpress.org/support/plugin/bp-template-pack ?

    If so, have you tried without this plugin as since BuddyPress 1.7, there’s now a theme compatibility feature included in core that makes BuddyPress loads its template in a nice way with most WordPress themes ?

    #182188
    Mathieu Viet
    Moderator

    Hi,

    I have made a child theme

    Is it a BP-Default child theme (1) or a WordPress theme child theme (2) ?

    (1) put the templates at root level of your theme ex: bp-default-child/activity/index.php etc..
    (2) use a specific folder to put your template (community or buddypress) ex: twentytwelve-child/buddypress/activity/index.php etc..

    You can find interesting documentation in BuddyPress codex: for example about (2) https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    #182185
    LeBear
    Participant

    I was experiencing something similar. This resolved my problem.

    http://mandrill.com/
    Sign up for an account here (it’s free), download the plugin and add the API key.

    Plugin
    https://wordpress.org/plugins/wpmandrill/

    It relays your emails through a trusted SMTP service, I’ve not had any problems since. It’s worth installing just to test.

    #182180
    pkapila
    Participant

    any luck with the implementation of @sbrajesh code ??

    I tried to implement the code in my bounce theme, currently using WordPress version 3.9 and BuddyPress version 2.0 but no luck.

    Thanks

    #182174
    djsteveo
    Participant

    Good suggestions Henry. I would love to see something like this put together, and would be willing to donate a few bucks to the development if it was released in gpl or whatever into the wordpress plugin directory.

    Ultimately it would be nice if the button had a backend options setting, where you could check off “superadmin get an email?
    admins get an email?
    specific email addy or list of addys that should be notified?

    This kind of plugin would give community admins some crowdsourced help!

    I would imagine advanced versions of this could include a popup box that had a few pre-canned “reasons” for the flag user, and form space for adding a non-canned note to it, that could be included in any emails.. and if the url that the button was clicked on could be included it may help to sort out if it was a picture post, something that appeared on the activity stream, words in a profile – etc.

    Love to see this button available and be easily added to certain places around the buddypress site – I am sure some people would prefer a “report this” button to show up next to each and every activity / status update, and on each profile page, sub page, group, etc..

    I also imagine some people would prefer an option for the button to simply be an icon, like the font awesome warning icon.. something that could be styled in different colors.. and when hover over it, it’s title tag says”report content to admins” or something..

    I really think this would help a lot of the BP communities that are running!

    Hope
    Participant

    Dears,

    In my case, the problem was in naming the wordpress directory. The name should not contain capital letters. I renamed it and made it all small letters & the problem was solved..

    Regards
    Hope

    #182140
    jessicana
    Participant

    Well, Thanks. Here is one that sends html email https://wordpress.org/plugins/wp-better-emails/

    @mercime
    Participant
    #182118

    In reply to: project feasibility

    @mercime
    Participant

    @ugosugo try https://wordpress.org/plugins/buddydrive/ for different types of file sharing

    #182112

    In reply to: Move Buddypress

    adamt19
    Participant

    I’m looking for the same thing so that I can slowly rebuild my site on BP 2.0/newest Sweet Date theme.

    The regular import doesn’t transfer users / xprofile data.

    There is this plugin, but no info on compatibility with buddypress 2.0 at the time of this post:
    https://wordpress.org/plugins/export-user-data/

    r-a-y
    Keymaster

    There was a problem in the upgrader script when creating the wp_signups table in v2.0.

    This is probably addressed in ticket #5563:
    https://buddypress.trac.wordpress.org/ticket/5563

    If you are able to, please test latest trunk or apply the changesets in that ticket to your install.

    If not, wait for v2.0.1 to be released in the upcoming week.

    dice2dice
    Participant

    @henrywright thanks for your response.

    I only just discovered it right now.

    It was my hosting company 1and1 that caused the problem and it was because they had been hacked.

    In response to this they cut off the option for anyone to log in to any WordPress/BuddyPress site they hosted for two full weeks.

    r-a-y
    Keymaster

    Thanks for the report, @klogen2.

    I’ve duplicated the bug and have opened a ticket with a suggested fix:
    https://buddypress.trac.wordpress.org/ticket/5595

    We’ll have this addressed for v2.0.1.

    godavid33
    Participant

    I 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

    #182052
    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_event

    https://codex.wordpress.org/Function_Reference/wp_schedule_event

    #182034

    In reply to: 2.1 top features

    SK
    Participant
    #182031
    r-a-y
    Keymaster

    Hope 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/5549

    It will be fixed in v2.0.1, but @amalsh can manually apply the following changeset in the meantime:
    https://buddypress.trac.wordpress.org/changeset/8292

    #181983
    terraling
    Participant

    Thanks @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.

    Mathieu Viet
    Moderator

    hi @bitpath

    Don’t worry, it’s been committed to core and will be included in next upgrade
    https://buddypress.trac.wordpress.org/changeset/8304

    #181966
    palmdoc
    Participant

    I 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 feel

    Help anyone?

    #181952
    stwc
    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.

    #181950
    OrlandoDS
    Participant

    Hey,

    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_signups

    Solution

    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 users

    system

    • 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::get

    To 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…

    #181946
    jerryskate
    Participant

    Yeah 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] => Array
            

    As 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?

Viewing 25 results - 7,726 through 7,750 (of 22,650 total)
Skip to toolbar