Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 24,476 through 24,500 (of 69,109 total)
  • Author
    Search Results
  • #149835

    In reply to: Ajax Error

    danbpfr
    Participant

    hi @somdefabrica,

    have you tested with the bp-default template activated ?

    Deactivate also any plugin except BP and reactivate one by one to try to find a culprit.

    #149834

    In reply to: Menu tab issue

    Versipellis
    Participant

    I’ve just put the file in with my theme – this is how I develop everything to start with on wordpress and never fails. This just means its always hard coded for my testing purposes rather than being a plugin.

    So it should just be bp-custom.php on it’s own in the plugin folder? There is no special code like in wordpress to give the name, uri etc?

    I had looked at the buddypress info you linked to originally and found it lacking in information, it seemed to assume you knew how to develop a buddypress plugin without actually explaining if its the same as wordpress or different.

    If the case is you cannot hardcode any buddypress code outside of a plugin I shall try a custom plugin, if you could possible answer my previous question of the plugin info code for me? Is it the same as wordpress or does it have to define it is buddypress?

    #149833
    danbpfr
    Participant

    delete the content of htaccess and put this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    and create a phpinfo() file at the root of your site and check the exact php version.

    Google to see what is phpinfo if you don’t know

     

    #149832

    In reply to: Menu tab issue

    danbpfr
    Participant

    Where do you try to insert the code ? The code works if you put it in bp-custom.php (this file should be in wp-content/plugins) , i tested it before publishing here and a tab appears on the profile page.

    Copy/pasting from here is odd, take care with cotes.

    I don’t know about a good tutorial. View here and try also bp-skeleton
    https://codex.buddypress.org/developer/plugin-development/creating-a-custom-buddypress-component/

     

    #149830

    In reply to: Menu tab issue

    Versipellis
    Participant

    Thanks for the info but even cutting and pasting your code into my file doesn’t work, no tab appears in my menu.

    I’ve never built a buddypress plugin before so I don’t really know how to set one up – is it the same as making one for wordpress or not? Currently I’m just working with a test file within my local wordpress/buddypress set up, exactly how I test my commercial plugins before actually developing them within the wordpress plugin format.

    Since this doesn’t seem to have any effect – IE, the code you gave does nothing, does it have to be within a plugin already, unlike wordpress which simply has to be accessible? If so, could you possibly link to a buddypress plugin guide (If different to wordpress itself) As I could not find a clear one myself?

    Thanks kindly,

    Versi

    #149829
    sn0zb0z
    Participant

    The hosting site says 5.2. I don’t know that I can upgrade it as I never actually installed it.

    The htaccess file just says “# Do not remove this line, otherwise mod_rewrite rules will stop working
    RewriteBase /

    # BEGIN WordPress

    # END WordPress”

    #149828
    danbpfr
    Participant

    have you php 5.2 or something greater?

    WP requires more as 5.2.4 https://wordpress.org/about/requirements/

    What is in the htaccess file ?

    #149827
    danbpfr
    Participant

    hi @ngoegan,

    you have problems ? Me too ! But what kind of problems ? It’s not working as you expect is not really ” a problem” i guess….

    You can’t find a register page ! Huh , because User registration is currently not allowed. It’s written here: http://livingcm.org/register/

    Go to BP setting and show if you created all the pages needed by BP espacially “register” and “activate”. This must be done. If pages are OK,  check “Anyone can register” from here /wp-admin/options-general.php

    How to do you set up your homepage ? Did you something like a static page or so ?
    Have you changed a slug somewhere ?

    Have you also changed the permalinks from default to something else ? Must be done to use correctly BP : D

    #149826
    sn0zb0z
    Participant

    WP version 3.5. PHP version 5.2 and MySQL is 5.1. Hosting it on 000webhost.com (free host). And single.

    #149825
    danbpfr
    Participant

    Hi,
    who’s your host ? What type of host do you have ? What is your host mysql and php version ?
    What is your WP version ? Do you want to install BP on a single or MS wordpress ?

    #149824

    In reply to: Menu tab issue

    danbpfr
    Participant

    Hi @versipellis,

    Make sure that you only attempt to set up the items after BP has set up its core navigation. You can ensure this by hooking to bp_setup_nav with a priority higher than 10.

    https://codex.buddypress.org/developer/plugin-development/group-extension-api/

    try this in bp-custom.php

    <code>function my_bp_nav_adder() {

    bp_core_new_nav_item(

    array(

    ‘name’ => __( ‘Media Privacy’,’bp-media-privacy’ ),

    ‘slug’ => ‘media-privacy’,

    ‘position’ => 75,

    ‘show_for_displayed_user’ => true,

    ‘screen_function’ => ‘bp_media_privacy_link’,

    ‘item_css_id’ => ‘bp-media-privacy’

    )
    );

    }

    function bp_media_privacy_link () {

    add_action( ‘bp_template_title’, ‘my_media_privacy_title’ );

    add_action( ‘bp_template_content’, ‘my_media_privacy_content’ );

    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );

    }

    function my_media_privacy_title() {

    echo ‘My Page Title’;

    }

    function my_media_privacy_content() {

    echo ‘Add the content loop here’;

    }

    add_action( ‘bp_setup_nav’, ‘my_bp_nav_adder’, 100 );

    </code>

     

    #149821
    yidamweb
    Participant

    Hello,

    This problem was solved, as follows:

    1. Disable “BuddyPress Registration Options” plugin.
    2. In Settings >> General >> New User Default Role, set to “Blocked”, or some appropriate value to make spam registration difficult.

    Thanks to Hugo for pointing to the solution.

    #149816

    In reply to: Buddypress 1.7

    @johnjamesjacoby
    Hi i downloaded the trunk version and tried to activate it on my test site and received a error. WordPress is 3.5 version and downloaded the trunk from the above given link…Here is the error i received

    Plugin could not be activated because it triggered a fatal error.

    Warning: require(wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php) [function.require]: failed to open stream: No such file or directory in wp-content/plugins/trunk/bp-loader.php on line 401

    Fatal error: require() [function.require]: Failed opening required ‘wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in wp-content/plugins/trunk/bp-loader.php on line 401

    #149811
    danbpfr
    Participant

    Hi @intimez,

    you have 2 possibilities to use bbPress. As group forums, this is intended in buddypress standard install, or as standalone forum., aka sitewide forum, with the complete bbPress plugin. The bbPress part shipped with BP is not exactly working as the plugin.

    In the first case, you may use the install wizard of BP. Activate “discussion forums” and create the appropriate page on the “pages” tab. Done ! You have to create first a group, and from ithin the group admin you can then activate a group forum.

    In the second case, don’t check “discussion forums” and install the bbPress plugin. Once installed, a “forum” menu appears on the left in the dashboard. Go to the forum settings page and do your settings.

    If you want to use ONLY a sitewide forum, you can let all the forum settings by default.

    If you want to use the group forums AND a sitewide forum, witch is not recommended because confusing for your members probably, you have to take care to one thing.

    The “forum base name” in the forum settings of the plugin. By default this name is “forums”. But this base name is also used by the group forums, so it wouldn’t work for both. In fact, this name is reserved for BP only.

    So if you want both forum types, CHANGE OBLIGATORY the base name to something other as forum or forums, and that’s it !

    #149810
    danbpfr
    Participant

    Hi @tombot86,

    of course ! You can use syntaxhighlighter evolved plugin.
    Because BP is stripping out some html in posts replies, you have to modify a line in
    bp-forums-template.php:1167 (or near these line)
    Replace by this:
    <code>`return apply_filters( ‘bp_get_the_topic_post_content’, wp_specialchars_decode( $topic_template->post->post_text, ENT_QUOTES ) );`</code>

    And in your child theme functions.php, add this:
    <code>`remove_filter( ‘bp_get_the_topic_post_content’, ‘bp_forums_filter_kses’, 1 );
    remove_filter( ‘bp_get_the_topic_post_content’, ‘wptexturize’ );`</copy>

    From now you can use the different shortcodes provided by the plugin to insert code snippets into your group forums posts.

    Take care of quotes and backsticks by copy/pasting from here.

    Here’s an example of what you will see on BP 1.6.2 MS/ WP 3.5
    http://bp-fr.net/groupes/comment-faire-pour/forum/topic/des-icones-rondes/#post-5887

     

    #149809
    lenasterg
    Participant

    Hi @elangley I ‘m glad you use buddypress group documents.
    If you have made an updated version can you please share it?

    Thanks
    Lena

    metoo55
    Participant

    Thanks, karmatosed

    Actually i looking drupal, may be i consider BuddyPress. 😀

    thanks again

    #149801
    Tony
    Participant

    i did read it and i tried to understand it but theres just too much and not enough time for me to figure it out

    Tammie Lister
    Moderator

    You can create something like Good Reads out of BuddyPress most definitely. How you go about it though is a bit of a huge question. If you don’t feel comfortable first I’d recommend hiring a developer and designer or partnering with some. It’s certainly going to be beyond the ‘tie a few plugins together’ task.

    Once you’ve got the ‘who’ to build sorted you can then look at planning what you want to form the foundation. You probably want to figure out what people want to do – their actions when using your site. From there, you can work out a list of what you need built.

    I know you may be looking for a plan but that’s not really something anyone can provide you, it’s ultimately up to you as to what you want to build. In short, can you – yes… how – up to you 🙂

    Ben Hansen
    Participant
    #149790
    wpte
    Participant

    uhm… that’s not the patch I applied. This patch @mercime is suggesting is newer. It’s not always a good idea to use patches from upstream, there might be incompatibilities. Like you say, you don’t have all the files

    I used the patch attached to the ticked: https://buddypress.trac.wordpress.org/attachment/ticket/4510/4510.patch

    I suppose for now it’s ok to use the patch I used, in the new version of bp the patch will be included automatically.

    #149787

    In reply to: Avatar Upload Error

    CannedBear
    Participant

    Thanks @chouf1 that solved the problem with the error message!

    But now I have a new problem I can upload a picture, but at the step where you can crop the image the image isn’t loaded. It works with personal profile pictures, but not with group avatars.

    #149784
    danbpfr
    Participant

    Hi Barry,
    sorry to begin with a bad news: buddypress is buddypress and facebook is facebook. To have the same as FB, you have… FB !
    But the trend is the trend and you’re not alone to ask for the same thing. So a plugin still exist that allows you to create an administer your Facebook fan pages directly from WordPress.
    This is the nearest i know so far to respond to your question ” which creates fan pages exactly like facebook”
    Unfortunately, the plugin’s FAQ tells
    Will this plugin work with BuddyPress?
    Meh, yes and no. We’ve had reports that it does look odd and behaves strangely in BuddyPress.
    Should be tested, huh ?

    https://wordpress.org/extend/plugins/fanpage-connect/

    So you have probably to imagine your own solution after grabing a bit here:
    https://wordpress.org/extend/plugins/search.php?q=buddypress+profile

    #149780
    silonimekuri
    Participant

    Hi Chouf,
    Thank you. I will try this out.

    Regards,
    Siloni

    #149778

    In reply to: Avatar Upload Error

    danbpfr
    Participant

    @cannedbear,

    BP 1.6.2 should be installed with WP 3.5…. You’re not alone, read here: https://buddypress.trac.wordpress.org/ticket/4713

    tchuss !

Viewing 25 results - 24,476 through 24,500 (of 69,109 total)
Skip to toolbar