Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 37,726 through 37,750 (of 69,108 total)
  • Author
    Search Results
  • #117916
    LPH2005
    Participant

    @mercime

    As always – Thank you!

    The table was in the default.css for buddypress and not the templates default.css. I tried to add it to the wiki default.css file but couldn’t get it to work. Instead, I just modified the default.css for buddypress and now the calendar shows properly.

    valuser
    Participant

    Just to confirm all is well. Apology for wasting your time. installed beta 2-4940 on another multisite install and the installation etc went smoothly – there is a blogs directory.

    #117908
    enderandrew
    Member

    To clarify, I’ve seen the documentation here:

    https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    But my theme template is fairly complex, and I’m not sure where to begin. I’d really appreciate some help.

    #117907

    In reply to: How would I?

    akyleadam
    Member

    @mercime also your example failed. I keep all functions I write in a separate folder in a lib folder, and called that custom function via: include_once(TEMPLATEPATH . ‘lib/CustomFunctions/DisplayMessage.php’);

    How ever the message is un changed (the message I was cheking for was: The topic was created successfully

    and I testing by changing to: I am changed.

    This is the ode:

    class translator
    {
    function filter_gettext($translation, $text, $domain)
    {
    $translations = $get_translations_for_domain($domain);

    if( $text == ‘The topic was created successfully’)
    {
    return $translations->translate(‘I am changed’);
    }

    return $translation;
    }
    }

    add_filter(‘gettext’, array(‘translator’, ‘filter_gettext’), 10, 4);

    @mercime
    Participant

    Same thing I mentioned here

    #117904
    @mercime
    Participant

    @LPH2005 In /wiki/extensions/Calendar/templates/default.css find
    `table tr td, table tr th {
    padding: 8px;
    vertical-align: middle;
    }`
    change padding: 8px; to padding: 7px;

    #117902

    In reply to: How would I?

    akyleadam
    Member

    @mercime except what I want is:

    When the page loads after you hit submit you are greeted with the success or error message (on any thing you do such as saving, editing…what ever) What i want is to take that text out, replace it with a java script pop up – so when the page loads to show you your new topi that pop up displays to say what ever message i gave it for error or success. I have a nice android based notification popup to do this so it will not be obtrusive.

    This is my end game.

    valuser
    Participant

    site tracking is turned on.

    valuser
    Participant

    Am running multisite
    Have bp on blog 2 define ( ‘BP_ROOT_BLOG’, 2 ); in wp-config

    the tab ‘Pages’ in Dashboard > BuddyPress > Components on blog 2 has no mention of a blogs directory

    earlier in the Dashboard Network admin there was a warning

    “Some of your WordPress pages are linked to BuddyPress Components that are disabled: ok, one ore time. Repair” pressed button . this seemed to redirect me to BuddyPress Components on blog 1 which had the same set-up in the tab ‘Pages’
    (i did have 1.29 on this site)

    Directories
    Associate a WordPress Page with each BuddyPress component directory.
    Activity Streams
    Discussion Forums
    User Groups
    Members
    then registration.
    no mention of a Blog Directory ?
    (just posted from another blog (id8) and it was picked up by the activity stream)

    If this is not replicated in your setups then i must have installed incorrectly and thats ok please say so as i don’t want to waste your time.

    just testing this out the version im using is trunk 4932

    #117897
    Miko
    Participant

    that plugin posted by @mercime works a treat for me (BuddyPress Auto Group Join) and I am on the latest versions of WP and BP

    Boone Gorges
    Keymaster

    Go to Dashboard > BuddyPress > Components. Do you have the blogs component turned on? (And, just to double check, are you running Multisite?)

    #117895
    LPH2005
    Participant

    Guess it would help to be able to edit this topic but it comes up with an error …

    Meant @mercime

    Paul Wong-Gibbs
    Keymaster

    ‘Your reply was posted successfully’ is here: https://buddypress.trac.wordpress.org/browser/tags/1.2.9/bp-groups.php#L378

    What do you want to do?

    #117892
    Paul Wong-Gibbs
    Keymaster

    No, this site has plenty of its own problems. It is not reflective of either BuddyPress 1.2.9 or 1.5.

    #117888
    Stigmartyr
    Member

    So how does this explain why it’s not working on this site then either?

    I have to go to the last page of a post to find this box. If you click ‘New Reply’ above it does NOTHING on the Buddypress.org site itself … *le sigh*

    #117886
    Stigmartyr
    Member

    So how does this explain why it’s not working on this site then either? :P

    I have to go to the last page of a post to find this box. If you click ‘New Reply’ above it does NOTHING on the Buddypress.org site itself … *le sigh*

    #117884
    mmendezmi
    Member

    @n_sane I had the same issue. A quick check of the wp database showed new users were being created with user level 2, which, in this case, means that they have not confirmed their registration. Also I realized i had not received any of my dummy account registration conf. emails.

    I found a workaround for this by changing the user status to 0 in the wp_core_startup file, but that was an inadvisable way of fixing the issue since it totally deactivated the email registration system, which i really don’t didn’t want to bypass, and that file will get overwritten in any bp update.

    The fix was to install the ‘Mail From’ plugin by andrew hamilton. this apparently allows the registration emails to go out, and then user_status and registration can be handled the way it was designed to. I’m hosted with bluehost and have a hunch their mail system isn’t playing nice with bp and this plugin seems to allow it to do that.

    valuser
    Participant

    @modemlooper on an install that is multisite there is a filter for posts and for comments. @ Paul Gibbs made the distinction above.

    Would now like to control the category of posts that get posted to the activity stream. Will start a new topic re same later.

    #117881

    In reply to: How would I?

    @mercime
    Participant

    @akyleadam what you’re trying to change was the text string “Topic created successfully” into e.g. “when submit is liked if the post was successful – do this instead of that” and the links I gave could do that.

    Take the first link, instead of creating a plugin, you can add this to your active theme’s functions.php – replacing the text string in that post to your own:
    `class PJW_Translation_Mangler {
    /**
    * Filter the translation string before it is displayed.
    *
    * @param $translation The current translation
    * @param $text The text being translated
    * @param $context The context for the translation
    * @param $domain The domain for the translation
    * @return string The translated / filtered text.
    */
    function filter_gettext($translation, $text, $domain) {
    $translations = &get_translations_for_domain( $domain );
    if ( $text == ‘Topic created successfully’ ) {
    return $translations->translate( ‘when submit is liked if the post was successful – do this instead of that’ );
    }
    return $translation;
    }
    }
    add_filter(‘gettext’, array(‘PJW_Translation_Mangler’, ‘filter_gettext’), 10, 4);`

    You see where I’ve substituted you own terms with that of the code given by Westi

    #117876
    Alan
    Member

    ok I’ve made something really fast for you….

    0.1 place this function into your functions file at the end of the closing php tag ” ?> ” !

    `
    <?php
    function uloga_directory_search_form( $directory ) {
    global $bp;
    $form_id = ‘search-‘ . $directory . ‘-form’;
    $input_id = $directory . ‘_sarch’;
    $submit_id = $directory . ‘_search_submit’;

    $search_value = __( ‘Search ‘ . $directory, ‘buddypress’ );
    if ( !empty( $_REQUEST ) )
    $search_value = $_REQUEST;

    ?>
    <form action="" method="get" id="”>

    <input type="submit" id="” name=”groups_search_submit” value=”” />

    <?php
    }
    ?>

    `

    0.2 now you have to change the bp_directory_members_search_form() function with uloga_directory_search_form( $directory ) ,replace $directory for example with “Members”
    or “Groups” ,etc.

    #117875
    d3creative
    Member

    @cezar “the language file has only one instance of “Search anything” so you can’t have a different message in the search boxes. how did you do it?”

    Anyone found a workaround for this?

    #117872
    Paul Wong-Gibbs
    Keymaster

    BuddyPress has no support for bbPress 2.0 yet

    #117871
    Fee
    Participant

    By the way: If I click on “Edit” here in my own topic, there’s a “Page not found”…

    #117870
    Fee
    Participant

    On http://testbp.org/ bbpress 2.0 is used. I’d like to change to the plugin version, too.
    Maybe a little stupid question, but I’m not sure about it: Do I have to drop the content of bbpress-folder in buddypress and install the new bbpress plugin version via wordpress plugin installation? (So that it’s in the plugins folder, not in buddypress)
    In my case I don’t have to care about data, because I’m still testing and there are no real discussions. But for the others it maybe interesting: Will the forum data be catched by the new install?

    #117869
    Fee
    Participant

    @djpaul Thanks for your answer. I was not able to recreate it on the test drive – I’d have to be a group admin to see these admin links. But I saw there that you use bbpress 2.0 – do we have to change from standalone bbpress version to the bbpress wordpress plugin?
    not sure about it – in this thread Bage said no: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-1-3-trunk-and-bbpress-2/

Viewing 25 results - 37,726 through 37,750 (of 69,108 total)
Skip to toolbar