Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,926 through 18,950 (of 69,109 total)
  • Author
    Search Results
  • #172283

    In reply to: New User Activation

    Henry
    Member

    A partial solution is in the pipeline, although it hasn’t been added to core yet

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

    If the user “second clicks” and they are logged in, they’ll be redirected away from the activation page. If they’re not logged in then they’ll see the activation key form thingy. Whilst not a full solution, it’s an improvement.

    #172275
    aces
    Participant
    #172269
    martinbeaulne
    Participant

    I have the same question as Ben.

    I know we shouldn’t modify core files. I know there are .po and .mo files for translations. But creating an entire .mo file for only one ( 1 ) more translation is overkill ( since poedit doesn’t let you just “add” an entry to an existing .po file ). ( http://stackoverflow.com/questions/7680021/how-to-add-a-new-string-to-a-po-file-w-a-po-editor )

    I have a third-party theme, and I’ve copied the buddypress folder in it. In members/ there is an “activate.php” file where I changed some text.

    But the “Check Your Email To Activate Your Account!” is not in activate.php, nor register.php, nor anywhere else.

    So, the question is simple: where is located the string “Check Your Email To Activate Your Account!” ?

    ( Let me guess something else: there is no translation in the official translation files for this specific string, maybe, because it just isn’t in the registration php files ? )

    I think that’s what Ben wanted too.

    dice2dice
    Participant

    Hi @corytrevor

    Thanks you for the advice, very much appreciated.

    I will try your suggested solution this evening.

    Many thanks for your kind help.

    #172263
    bmstudio
    Participant

    Hi,

    I have modify the @azchipka ‘s plugin.
    It’s work !!!

    
    <?php
    /*
    Plugin Name: TCH BP Posts On Profile
    Plugin URI: http://azchipka.thechipkahouse.com/services/technology/development/wordpress-plugins
    Description: Adds a tab to Buddy Press User Profile displaying the posts they have published. 
    Version: 0.1
    Author: Avery Z Chipka
    Author URI: http://azchipka.thechipkahouse.com
    License: GPLv2 or later
    */
    // Make sure we don't expose any info if called directly
    
    if ( !function_exists( 'add_action' ) ) {
    	echo '404';
    	exit;
    }
    define('TCH_PostsOnProfilesVersion', '0.1');
    define('TCH_PostsOnProfilesVersion_PLUGIN_URL', plugin_dir_url( __FILE__ ));
    
    function my_setup_nav() {
          global $bp;
     
          bp_core_new_nav_item( array( 
            'name' => __( 'Outils', 'buddypress' ), 
            'slug' => 'mes-outils', 
            'position' => 75,
            'screen_function' => 'mes_outils_lien',
    	    'show_for_displayed_user' => true,
    	    'default_subnav_slug' => 'mes-outils',
    	    'item_css_id' => 'mes-outils'
          ) );
    }
     
    add_action( 'bp_setup_nav', 'my_setup_nav', 1000 );
     
    function mes_outils_titre() {
    	echo 'Mes outils';
    }
     
    function mes_outils_contenu() {
    		locate_template( array( 'members/single/outils/loop-outils.php' ), true ) ?>
        	<?php echo "TEST"; ?>
            
        <?php
    }
     
    function mes_outils_lien () {
    	add_action( 'bp_template_title', 'mes_outils_titre' );
    	add_action( 'bp_template_content', 'mes_outils_contenu' );
    	bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    }
    ?>
    #172257
    lucamoretto
    Participant

    Hi guys is the same if i wannainsert a list of all products uploaded by author in my site woocommerce + buddypress. Every users (subscriber) can upload a new products, I wanna display in the user buddypress profile a list with a link of all products published by author. Is Possible? Can help me to solve this problem? Ty in advance!

    #172254
    pacija
    Participant

    Thank you for your reply. Unfortunately my knowledge of php and wordpress APIs is not sufficient for this. I was hoping to have something to click on, or at least some code snippet.

    Perhaps more people will find this feature useful, and someday it gets included in Buddypress.

    Hugo Ashmore
    Participant

    just updated my last comment as you do have a choice to still follow older principles in building BP themes.

    santanin
    Participant

    Okay sounds good. Thank you again!

    Hugo Ashmore
    Participant

    So you couldn’t have been telling the theme to use sidebars on BP pages? It’s not BP aware, BP still works on the principle of a blank placeholder page with a name i.e ‘members’ but it renders that screen view via page.php if it doesn’t find other file names first (as outlined in the codex)

    The template pack post is now outdated, don’t follow, you need to re-factor a file to handle BP screens, there are two codex articles currently dealing with theme compat use those for guidance, further ones may follow but will be generic in nature in that it’s difficult to give specific advice on a per theme basis.

    Also be aware that all template pack plugin really did was copy over files to your theme and enqueue the scripts and styles, essentially it did very little from a developers point of view that they couldn’t do manually, you still have the option of copying files from bp-default theme to your child theme and sorting out the styles and scripts required in your own functions file, the templates then would be re-factored broadly along the lines that mercime outlined in that post, however we are trying to steer everyone towards theme compat as the norm now for either creating themes of creating child themes from parents.

    santanin
    Participant

    To answer your P.S. question, no the theme is not BuddyPress ready. It’s a regular WordPress theme. I just really liked the way it looked for my website, and I was unable to find a BuddyPress enabled theme that fit the style I was looking for.

    santanin
    Participant

    Thank you for the quick response! My apologies, I thought I read a comment by a moderator from a previous post that said not to follow the instructions about 1.7.1, but I was mistaken.

    When you say to follow the 1.7 steps, I assume you mean the information contained in this codex: https://codex.buddypress.org/theme-development/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    If not, can you list the codex that contains this information, or can you recommend any other BuddyPress Codex you feel would help if I read?

    The user “mercime” helped another user get BuddyPress to work on the theme I purchased, but it was using the BP Template Pack, which I know I cannot obtain anymore with BuddyPress 1.8.1. Those instructions were in this post https://buddypress.org/support/topic/resolved-problem-with-adjusting-code-to-fit-theme-modernize/

    Thank you again for your help!

    Hugo Ashmore
    Participant

    No the current theme compatibility documentation is up to date and doesn’t say don’t follow 1.7 steps. 1.7 introduced theme compat, 1.8 just extended the template hierarchy, you need to follow the steps outlined for creating child themes, creating a buddypress.php file based on page,php and then that buddypress file will need to updated to work correctly with your theme which sadly, as a lot of themeforest themes are is not compliant with the standard WP template system that BP works through.

    So use those guides they should put you on the right lines and if this is client work then oughtn’t to be too hard to figure out.

    P.S I note that you say told the theme that bp pages should have sidebars, so is this actually a BP ready /enabled theme ? If so and things aren’t working then you’re best of speaking to theme author or their support channels as they will no best how their theme is constructed and offer far better help.

    #172233
    c.ogden
    Participant

    Sweet thanks! I gave your app 5 stars.

    #172232
    bp-help
    Participant

    @cogden-1
    Try this plugin I made. This only makes BuddyPress and bbPress private.
    https://wordpress.org/plugins/private-bp-pages/
    Also make sure you read the FAQ first:
    https://wordpress.org/plugins/private-bp-pages/faq/
    Make sure you clear the previous code out of bp-custom.php that you posted above!

    #172230
    c.ogden
    Participant

    weird (doesn’t let me edit my post to check the box for recieve email notifications for replies, so I had to post a reply to check the box

    #172224
    corytrevor
    Participant

    Update: The themes author was kind enough to provide the code to add to display the buddypress page titles. Add:

    <?php elseif ( function_exists('bp_is_page') && ( bp_is_page( BP_BLOGS_SLUG ) || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_ACTIVITY_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() || bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) ) : ?>
    <h1><?php the_title(); ?></h1>

    to functions.php just below where it has:

    <?php if (is_page()) : ?>
    <h1><?php the_title(); ?></h1>

    #172221
    Henry
    Member

    @fitnessblogger when @azchipka says adjust the path in the plugin to achieve /author/username I assume that means just getting rid of /posts/? I’m not familiar with the plugin. @azchipka should be able to help with specifics.

    If you just want to show posts on a BP profile then my code should work:

    https://buddypress.org/support/topic/resolved-show-posts-written-by-user-on-profile/page/2/#post-172143

    Alternatively the plugins I mentioned earlier by buddydev.com are brilliant.

    #172216
    hughshields
    Participant

    Thanks @henrywright-1
    I did look at Buddyblog but didn’t know that a list of posts on profile comes standard. I actually don’t want my users to blog from their profile. I just want to show a list of blog posts on my member profiles. In any case I will check it out.

    It seems a pity that the simple Posts in Profile plugin cannot be fixed. I posted on this subject 7 months ago and no one has been able to make it work. It also seems like a highly visible and critical piece to Buddypress WordPress integration. Anyone using WordPress and thinking of adding BP social networking features will want this.

    Guess I will let it go!

    #172215
    Henry
    Member

    @hughshields If you’re just getting started with PHP and prefer a plugin, try BuddyBlog – http://buddydev.com/plugins/buddyblog/ and Simple Front End Post http://buddydev.com/plugins/bp-simple-front-end-post/

    You can let your members blog directly from their BuddyPress profile. A list of posts on profile comes as standard too.

    #172213
    hughshields
    Participant

    The plugin by @azchipka called “TCH-BuddyPress-Posts-On-Profile” gets the job half way done and successfully creates a tab on the member profile, but it looks like there is a problem with the code when displaying member posts. Firstly it links to a new page and doesn not display posts within the tab on the member profile, and secondly it does not display any posts. Here is the code. anyone care to take a swing at fixing this:

    // show feedback when 'Posts' tab is clicked
    function bp_postsonprofile() {
    add_action( 'bp_template_content', 'profile_screen_posts_show' );
    bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    }
    
    function profile_screen_posts_show() {
    $theuser = bp_displayed_user_id(); 
    query_posts("author=$theuser" );
    if ( have_posts() ) :
    get_template_part( 'loop', 'archive' );
    else: ?>
    <div id="message" class="info">
    		<p><?php _e( 'Sorry, this user has not published any posts.', 'buddypress' ); ?></p>
    	</div><?php endif; ?>    <?php
    } 
    }
    ?>
    #172209
    twittem
    Participant

    Upgraded WAMP Server and set the install to run

    – Apache 2.2.22
    – PHP 5.3.13

    Everything is now working correctly.

    #172193

    In reply to: Wrong URL issues

    chuvadeideias
    Participant

    I’m using this theme http://luca.untame.net/, modified.

    And, this plugins below:

    • Advanced Access Manager
    • bbPress
    • Breadcrumb NavXT
    • BuddyPress
    • BuddyPress login redirect
    • BuddyPress user account type lite
    • Contact Form 7
    • Cyclone Slider 2
    • Executable PHP widget
    • Newsletter
    • Simple Ads Manager
    • Theme My Login
    #172191
    randygootjes
    Participant

    ahh thousand times thnx, so can i place login form at a page aswell with buddypress?
    do they go to a sort of dashboard? cause i want them to log in and only see like extra menu button or so

    #172189

    In reply to: Enabling Components

    YvonneTaylor
    Participant

    I am using the Colorway Pro theme and the plugins are Buddypress V1.8.1, Buddypress Activity Plus V1.5. WordPress is the latest update.
    The site is in testing mode at the moment, but can be seen at http://www.thedogsclub.com/testing/
    This is the link to the page I have problems with
    http://www.thedogsclub.com/testing/wp-admin/options-general.php?page=bp-components

    I am trying to achieve something that looks like this screenshot, but at the moment it is more like a dogs dinner! http://wpmu.org/top-3-ways-to-build-a-social-network-with-wordpress/

    Many thanks

Viewing 25 results - 18,926 through 18,950 (of 69,109 total)
Skip to toolbar