Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,876 through 5,900 (of 32,678 total)
  • Author
    Search Results
  • #258133

    In reply to: BuddyPress Components

    danbp
    Participant

    Hi @mikke1978,

    assuming each active BP component has his page and that this page is really unique and without any template assigned:

    – you have to setup pretty permalinks to an option other that “default”.

    Apparently you made something with your url configuration:
    – wordpress doesn’t use www by default.
    – all your components (activity, members and groups) are in /blog/ directory. By default, you should have http://your-site/activity.

    Not that all this cannot be done, but if you want it like this, you have to setup that correctly. This is no the case at the moment.
    Note also that BuddyPress does not work on installations where you give WordPress its own directory.

    The question is where is WP installed ? At the site root or in a /blog/ directory ?

    Open dashboard > General and check what is entered under site path and url and compare with what is in htaccess

    #258132
    mikke1978
    Participant

    Hi there,

    I am new to WordPress and BuddyPress. I am using WordPress 4.6 and BuddyPress 2.6.2 and my site
    http://www.betterbusinessranking.com/ is hosted with Yahoo/Aabaco.

    My components never worked. I get not Butoons (Created Group), and pages 404 when I tried accessing the groups or I click Create Group on the main menu of the login option.

    Can someone tell me what I am doing wrong please? I installed and reinstalled WordPress and BuddyPress few times after trying to use the solutions I saw on your forums regarding Group Create and other issues. I tried templates such as : Twenty Twelve,Twenty Fourteen, Twenty Sixteen, etc..But that dd not resolve the issue.

    Please assist me with a solution. You can visit my site: Twentbetterbusinessranking.com

    Sincerely.
    Mikke1978

    danbp
    Participant

    Sorry but we can’t bring assistance for premium themes.
    that said it may be a JS conflict generated by BP in some exotic JS situation…
    Read here: https://buddypress.trac.wordpress.org/ticket/6574

    #258125
    danbp
    Participant

    The ultimate tutorial to add wp_editor to What’s New textarea (on Site, Members and Group Activities pages).

    Warning
    The What’s New feature was never intended to publish posts or formatted text. It was imagined for brief announcement or instant conversation. That’s why this textarea is texturized and doesn’t allow much HTML tags. It is also ajaxified and need the original BP ID to work.
    You will use it at your own risk.

    The following trick will let you remove the existing textarea from the template and replace it with a custom wp_editor. And it will be very customized ! For example, you will not have the visual tab, but only his HTML version, similar to the one you see on this forum for example.

    Required:
    BuddyPress activated
    a working child theme
    some understanding of HTML and php grammar

    This trick was succesfully tested on a single install with WP 4.6, BP 2.6.2 and a Twenty Sixteen child theme.

    Start !
    Read from here how to remove the textarea in post-form.php

    The code to remove is line 40 and looks like this:

    <textarea class="bp-suggestions" name="whats-new" id="whats-new" cols="50" rows="10"
    	<?php if ( bp_is_group() ) : ?>data-suggestions-group-id="<?php echo esc_attr( (int) bp_get_current_group_id() ); ?>" <?php endif; ?>
    ><?php if ( isset( $_GET['r'] ) ) : ?>@<?php echo esc_textarea( $_GET['r'] ); ?> <?php endif; ?></textarea>

    You replace it by:

    <?php
    $content = '';
    $editor_id = 'whats-new';
    wp_editor( $content, $editor_id );
    ?>

    As the visual edit tab doesn’t work, you must deactivate it. In your child-theme functions.php, add this:
    add_filter( 'user_can_richedit' , '__return_false', 50 );

    And that’s it !

    If you want also rich edit for activity comments, which i didn’t recommand for sites who have many comments, you can use the same technique as above, with some more settings. Note that each comment has is own ID and that each comment editor should also have an unique ID.

    First, you need to remove the textarea from (child-theme/buddypress/)activity/entry.php
    You remove this:
    <textarea id="ac-input-<?php bp_activity_id(); ?>" class="ac-input bp-suggestions" name="ac_input_<?php bp_activity_id(); ?>"></textarea>
    and replace it by

    <?php
    $id             = bp_get_activity_id();
    $content	= '';
    $editor_id	= 'ac-input-'. $id;
    $settings	= array( 
    			'textarea_name'	=> 'ac_input_'. $id,
    			'editor_class'	=> 'ac-input bp-suggestions'
    		);
    wp_editor( $content, $editor_id, $settings );
    ?>

    With Twenty Sixteen, i first couldn’t see the Post Update button and the option selector. I got it with this little CSS adjustment (in child-theme/style.css).

    div#whats-new-options { display: block!important;}

    Function reference: wp_editor.

    dekoningalex
    Participant

    Hi,

    Users can’t upload cover/profile pictures for their profile. If one clicks on the button to select a picture to upload, you can select a file, but when you choose a file nothing happens. The following error shows up: Uncaught TypeError: Cannot read property ‘add’ of undefined bp-plupload.min.js?ver=2.6.2:1

    When i use a buddypress compatible theme (e.g. twentyeleven) the issue doesn’t occur so it is a custom theme issue. I have asked my theme developer for help but that has gotten me nowhere…

    1. Which version of WordPress are you running? 4.6

    2. Did you install WordPress as a directory or subdomain install? root

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? The one before 4.6

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes

    6. Which version of BP are you running? 2.6.2

    7. Did you upgraded from a previous version of BP? If so, from which version? Yes, the one before

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes, but none of these plugins cause issues as i turned them all off, and the problem still persisted.

    9. Are you using the standard WordPress theme or customized theme? Customized theme (Bronx by Fuelthemes)

    10. Have you modified the core files in any way? No

    11. Do you have any custom functions in bp-custom.php? No

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? 2.5.10

    13. Please provide a list of any errors in your server’s log files. Don’t know how

    14. Which company provides your hosting? Transip

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux (Ubuntu)

    Thank you so much in advance, any help is very much appreciated.

    #258122
    lil_bugga
    Participant

    Site:http://www.vwrx-project.co.uk Using WordPress 4.6 and BuddyPress 2.6.2

    I’ve just installed BuddyPress as I want to create a community based website within WordPress.

    My end goal is to have a site where multiple users can add content regarding their car project/build, where each update they add is displayed on the homepage of the site, but where viewing a users profile you could, should you wish, view someones project in its entirety with all posts and content or view just the images they’ve uploaded.

    I’m in the process of creating my own theme for this website but I’m having a hard to changing anything within BuddyPress.

    I’ve copied the entire BuddyPress plugin directory into my theme and then each document I edit I make a note of, so then I can remove any files I haven’t touched. I wanted to start with something simple before moving onto bigger modifications so opted to try and change the Site-Wide Activity title that displays.

    I have found bp-activity-actions.php line 450 & class-bp-activity-component.php line 125 and edited, saved and uploaded/overwrote these files into my themes version of Buddypress but can’t get the title to change.

    Once I’d done that I was hoping to edit the activity page to remove almost everything, the only part I really wanted to keep was the activity feed itself so that anyone visiting my sites homepage will see the most recent updates etc.

    Have I missed/overlooked something silly. I’m more accustomed to creating websites myself with CSS and PHP etc but as I want this site to be easy to use and accessible to multiple people adding content I felt this would be a better route to take.

    #258114

    In reply to: Force ssl

    danbp
    Participant
    #258104
    mynde
    Participant

    Hello, a wordpress newbie here. It’s my first website with buddypress, and i have an idea , just not sure if its implented allready or i would need some sor of plugin or a custom code, here it is:
    I would like a group(A) leader(creator, or a member with apropriate privileges) to assign this group to a different group(B) so that if something is posted in group B it would automaticaly appear in groups A activity feed. Thats it. Would it be possible? Thank you!

    #258097

    In reply to: New Privacy Plugin

    Fencer04
    Participant

    Turns out the error you pointed out is a bug that is being tracked in BuddyPress. It will be resolved in version 2.7. I will still see if I can alleviate it somehow:

    https://buddypress.trac.wordpress.org/ticket/7203

    #258089
    danbp
    Participant

    @jendam As of #6573, you’ll need to add custom CSS to tweak the appearance.
    Read https://buddypress.trac.wordpress.org/ticket/6573#comment:4

    The ticket is closed as invalid.

    #258087

    Topic: New Privacy Plugin

    in forum Showcase
    Fencer04
    Participant

    I’ve been a lurker here for a while since starting on a Buddypress project for a client. For that project I needed to allow each member to be able to choose whether everyone, logged in users or just their friends could see their profile.

    Based on that development I just got a plugin approved at the repo that give the members that functionality. It is early in it’s development and I have a lot of plans for extending it to allow more customization to the messages and to what items are hidden. Since I’m no Buddypress expert I was hoping some of you might be interested in reviewing it and giving me your thoughts.

    The plugin is available at the repo: https://wordpress.org/plugins/simple-buddypress-profile-privacy/

    #258084

    In reply to: import xprofile CSV

    sharmavishal
    Participant

    yes…i read your post as well…unfortunately no plugin exists which would import bp related data. So you need to do it via phpmyadmin only as of now…just backup everything in case u need to revert back..best luck

    also mairajs last link is of users capability issue which he faced…so if you face that issue then only u need to check this …else ignore this….

    https://wordpress.org/support/topic/admin-problems-after-moving-wordpress?replies=2#post-750300

    #258073
    mynde
    Participant

    Hello wodpress gurus!, a fellow wordpress newbie here . I have a couple of quick questions , i couldnt figure it out in couple of days, so frustration is kicking in, maby you could help and clear some things up! Thank you in advance!
    1. I’m now sure what is the best option to translate a website, not posts, just different menu textst and different plugin text by user choise or by locale.
    I’v tried setting up multisite, but it really is a big fuss, since i need, 4 different languages , so creating 4 different sites and managing every pages widget etc. seems a big deal.
    2. Would it be possible having 4 sites, and 1 main site , from wich you can manage all other sites behaviour, for example (A- main site) if i add a widget in site A , then a widget adds in site B,C,D .
    Thats it ! Thank you very mutch for assitance, and sorry for poor english.

    #258067
    danbp
    Participant

    Perhaps the closing php tag after endwhile. Remove ?>

    <?php endwhile;
    	// User filtering.
    	$user_id = bp_displayed_user_id()
    		? bp_displayed_user_id()
    		: false;

    Note that you’re hacking a core file and that customization will be lost at next bp update.
    Never do that.
    That said i doubt that your like button will work on BP activities. That button is made for wordpress, not BP.
    Try better this plugin which is more appropriate imho.
    https://wordpress.org/plugins/buddypress-like/

    #258065
    jgilbert1990
    Participant

    Hope everybody is doing well.
    Im having trouble using a plugin. The plugin is by likebtn.com and allows me to sort activity by most liked content. However it requires modifying a bit of code and im having quite the difficult time. I have tried pasting this line of code into a few different files. Currently im trying to paste it into ‘public_html/wp-content/plugins/buddypress/bp-activity/bp-activity-template.php’. When i try to include it into the PHP file the activity page breaks and a syntax error appears saying there was an unexpected ‘<‘ at the top of the new code. Here is where i pasted the code and the instructions provided by likebtn.com

    function bp_has_activities( $args = '' ) {
    	global $activities_template;
    
    	// Get BuddyPress.
    	$bp = buddypress();
    
    	/*
    	 * Smart Defaults.
    	 */
             //Filtering by Likes.Custom Code.
             <?php query_posts($query_string . '&meta_key=Likes&orderby=meta_value&meta_type=numeric&order=DESC'); ?>
    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>
        <?php get_template_part( 'content', get_post_format() ); ?>
    <?php endwhile; ?>
    
    	// User filtering.
    	$user_id = bp_displayed_user_id()
    		? bp_displayed_user_id()
    		: false;

    https://likebtn.com/en/wordpress-like-button-plugin#sort_posts_by_likes

    #258062
    Graham
    Participant

    I am aware that there are numerous threads about impoting/exporting CSVs. I wasn’t able to find a good plugin for importing xProfile data specifically.

    Thanks to Ruby @rubyji I was able to find this plugin

    that exports the user’s xProfile data . . .

    But wasn’t able to crack the issue of properly importing. I would like to avoid phpMyAdmin and SQL as it seemed a bit complex. Some day I’d love to learn it but not for this project.

    Thank you in advance for any direction or plugin guidance.
    -Graham

    #258043
    Paul Wong-Gibbs
    Keymaster

    I’m not aware of any plugin that offers a feature to remove the activation URL. You would instead have to delete the user/signup record entirely.

    https://wordpress.org/plugins/unconfirmed/ might help.

    #258035

    In reply to: Redirect does not work

    fail2reap
    Participant

    @djpaul – Thanks for getting back to me with these additional steps. I have tested this now with removing the plugin iThemes Security and Welcome Pack. I also set a default WordPress theme.

    Unfortunately it did not resolve the issue as the user still get’s directed back to the home screen after the submit the register page.

    Any other ideas?

    #258030
    mabiak
    Participant

    Why is there a plugin available for install in the subscriber dashboard’s wordpress news?

    What happens if the subscriber clicks on install?

    How can I get that out of the dashboard?

    Can I remove the WordPress News? That’s unnecessary and irrelevant to my content.

    Thanks.

    Bill

    keywestdiet.com

    macmizer
    Participant

    I have been racking my brains out trying everything I know of to fix the issue I am having. First off let me say that I have been over a 1000 sites using wordpress so I am well aware of all the tricks to troubleshoot. Not saying i know everything because if I did I would not be here. 😉
    Now I have WordPress 4.5.2 (tried upgrading to 4.6 as well at some point on a cloned server)

    Running 4.5.2 of wordpress, Avada 4.0.3., BuddyPress 2.6.2

    I can add a cover image to the profile and to the groups but it does not appear. There is a button to click to delete the cover for profile and groups and when I click the Delete cover button the screen displays a message that the image was removed. When I upload cover images I can see a rectangular grey background where the image should be yet the image does not show. I then inspect the area where the image should be and I find style that shows the url for the image that should be showing. I take that url and paste it into a browser and I get a 404 message. I then check through cpanel file manager and ftp and see that the images is sitting exactly where the url points to. I tried changing the permissions as well to 777 on everything such as the image and all the sub-directories leading up to the image. Still no display of the covers. Strangely though, if I click on the link in my buddypress navigation called “Media” I see the cover image only on that page/link. No other buddypress nav item, when clicked, shows the cover image for the user. The “Media” link in the buddypress is part of the rtmedia plugin. Of course I disabled that plugin to see if that was causing the cover image not to show but it was not the cause.

    At some point disabled every single plugin ever installed except of course the core buddypress plugin. The cover image never displays for either profile or groups.

    I then changed the theme from Avada to anyone of the default “Twenty” themes and the same issue, no covers showing.

    When I first discovered the issue I was running 4.5.2 of WordPress and Avada 4.0.2. I cloned the entire site and put it onto a new subdomain just to test upgrading the WordPress and Avada. Same issue with no cover images displaying.

    I have never been able to display the cover image with this site. It is a development site waiting to go live once I get the issue with the covers showing.

    #258018

    In reply to: Fatal Error

    danbp
    Participant

    Please don’t double post on this forum.

    You activated BuddyPress Custom Profile Menu plugin and got a fatal error. Remove it or rename his folder via FTP, so you can access your dashboard again.

    Then contact the plugin author.
    Since 2.6, BP use a new navigation API. Maybe the plugin isn’t updated for that or there is another conflict with your theme.

    You have to debug.
    And read also here please.

    #258010
    davidpaul30
    Participant

    I’m using photos for cover images for BuddyPress groups. The images don’t appear in the media library, so I’m not sure how to set the attribution for the photos. I would be grateful for help with this.

    I’m setting up a new BuddyPress site using the Boss theme on WordPress 4.6

    #257984
    Paul Wong-Gibbs
    Keymaster

    Hi @dnicu26

    I can’t immediately see why that should be stopping the emails. Can you remove the snippet and test again, see if the emails resume sending?

    Are you talking about the plain text email that you get from WordPress that says something like a “new user registered on your site”? I assume this has always worked in the past — how many such emails have you received? 10s? 100s?

    Can you also please check your spam folders in your email?

    Finally, are you using Multisite or regular WordPress?

    #257053
    bigkahunaburger
    Participant

    You may want to look at creating member types. Then you could add the meta as a div class and style them via css:

    Member Types

    https://gist.github.com/imath/3a5c5ade44eae997fdfd

    If you don’t have the ability to code or hire someone that does you may want to try some of the member type plugins out there:

    BuddyPress Member Types

    https://wordpress.org/plugins/bp-member-type-generator/

    #257480

    In reply to: Chinese Translation

    Petya Raykovska
    Participant

    Hey @idichoo,

    It’s awesome you’d like to help with BuddyPress translation! Happy to help you get started with translating on http://translate.wordpress.org. I’m Petya on wp Slack.

    If you’d like to get started on your own, this is the best page: https://make.wordpress.org/polyglots/handbook/about/get-involved/first-steps/

    BuddyPress could use a Project Translation Editor for Chinese as well, so if you’d like to become one, you can post a request on https://make.wordpress.org/polyglots and we’ll put you in touch with the Chinese General Translation Editors so they can add you as a project maintainer.

    P.S. If you’d like to help the team with something quick, you can give us a hand with translating the WordPress 4.6 release video to Chinese! http://www.amara.org/en/videos/HD0Z715enyuZ/id/1429554/

Viewing 25 results - 5,876 through 5,900 (of 32,678 total)
Skip to toolbar