Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 3,901 through 3,925 (of 22,692 total)
  • Author
    Search Results
  • #261082
    tille
    Participant

    I’m not sure if this is still of interest – but BuddyBoss has developed a premium theme Social Marketplace that could probably do what you’re looking for:

    Social MarketPlace

    Yes, you would also need WordPress (free) and BuddyPress (free) and WooCommerce (free) to get it running. I haven’t tried it myself yet, but I’m currently working on a site using Social Portfolio by BuddyBoss and I must say they did a great job. It can be quite demanding to get everything working, but so far I have no complaints. Cheers!

    #261064
    empressdianna
    Participant

    I don’t have an exact fix but I went into “Emails” from the WordPress Sidebar and edited the email that is sent on a new message sent trigger. I just took out the {{subject}} and {{quot}} tags and then just put a message that they have to login to view the message. hth

    #261061
    empressdianna
    Participant

    Found this on another forum and after some tweaking finally got this to work. This will only work if you force all new and existing non-paying users into one group however without some further tweaking. If a non-paying user tries to click on the “messaging” tab in wordpress it will redirect them to any page you choose. I chose the memberships level page. =D

    function bp_disable_messaging() {
    	global $bp;
    	
    	if ( pmpro_hasMembershipLevel('NonPayingLevel') && bp_is_current_component('messages') ) {
    		wp_redirect( site_url("/PAGE URL/") );
    		exit();
    	}
    }
    add_action('wp','bp_disable_messaging');
    #261045

    In reply to: File Sharing Embedding

    shanebp
    Moderator

    Try this: https://wordpress.org/plugins/buddydrive/

    Google this: buddypress file sharing

    Depending on your ability as a coder, you could adapt some code or write it from scratch.

    #261042
    shanebp
    Moderator

    …you are losing people and ultimately future profits and benefits

    BP is free open source code. There are no direct profits.
    These forums are moderated by volunteers.
    There is no promise, explicit or otherwise, that you will get an answer.

    How does someone who does not constantly do coding for a living really get BuddyPress to function?

    The primary intended audience for users of the BuddyPress codebase: Site Builders and WordPress Developers.

    The widgets and shortcodes you tried ( BuddyPress Sitewide Activity ? ) probably do not include the images because widgets generally output a compressed view and images can take a lot of screen area. It would be relatively simple to tweak such a widget to include activity images.
    If you don’t know how to code, you can post a job here.

    #261030
    danbp
    Participant

    Deactivate https://fr.wordpress.org/plugins/smart-countdown-fx/, activate 2016 theme and give a try

    It seems that this plugin throws an error.

    You may also deactivate all plugins, but BP and search for an issue by reactivating them one by one.
    And if nothing found for plugins, you have to debug the theme.

    https://buddypress.org/support/topic/when-asking-for-support-2/

    #261017
    aladinDr
    Participant

    not bug just in WordPress your company show that your plugin compatible up until 4.5.4

    #261015
    zxbchris
    Participant

    Or maybe is there a way that I can link the default wordpress description to the custom field created in BBPress?

    #261013
    zxbchris
    Participant

    Hi,

    Thanks for your prompt response.

    Do you mean that, as I know where does the theme call it, which i found it :

    <div class=”gdlr-post-author-inner”>
    <div class=”post-author-avartar”><?php echo get_avatar(get_the_author_meta(‘ID’), 90); ?></div>
    <div class=”post-author-content”>
    <h4 class=”post-author”><?php the_author_posts_link(); ?></h4>

    <?php echo get_the_author_meta(‘description‘); ?>
    </div>
    <div class=”clear”></div>
    </div>

    the ‘description’ is the place where it called the default wordpress User description.

    So now I will like to replace it with the custom field that I created, which i think its called field_2, do I need to create one php in the theme with this function:

    $user_id = get_the_author_meta( ‘ID’ );

    $bio = xprofile_get_field_data( ‘field_2’, $user_id );

    echo $bio;

    and use the bio created here to replace with the description above?

    Sorry that my php knowledge is quite limited, Hope you can help me in this 🙂

    Thanks!

    #261008
    danbp
    Participant

    @dkelm,

    if you’ve found a bug, please refer it on Trac.
    Login with same credential as on this forum, describe the issue and give any details to reproduce it.

    https://buddypress.trac.wordpress.org/report

    Venutius
    Moderator

    Have you thought about just using BP Registration Groups?

    danbp
    Participant

    hi @matt2006,

    a partial solution could be https://wordpress.org/plugins/bp-auto-group-join/
    Total solution: the partial + premium complementary plugin.

    Or “do-it-yourself” by adapting auto group join for example.

    #260986
    EMar
    Participant

    Hardly paranoid considering we’re talking about a piece of software.

    What I meant was, the toolbar is belong to wordpress, as you mentioned.
    It’s strange that they add a feature and don’t include any options to remove different
    elements of the toolbar, like it didn’t matter or they left it up to someone else to deal with.

    I thought I added the two links myself actually with some customizer plugin, not the case.

    #260982
    danbp
    Participant

    Hi @vickievik,

    the right question here would be how to make my theme compatible with buddypress.

    The thing to understand is that BP use dynamic content for its page and that these page are NOT ordinaty WP pages.
    For each content, BP fires a so called template-part.
    Lets take as example a profile page

    The slug is /members/ which exist as “page” on wp’s page list. This wp page has no content and also no model or template. It’s just a “slug” in the wp ecosystem.

    When you’re on a profile you have the page(aka /members/) but also many template parts, depending what you’re doing on that profile. Aside the common parts header – content – footer, you’ll find also personnal activity, frineds, groups, mentions, notifications, messages and not the worst, profile settings. All this on the same “page”.

    Most theme mistakes are at this point. People try to design the page, instead to work the template parts.

    When you design a theme, you usually design something for a page, independantly from any plugin. This structure is used by any Twenty Theme and you can follow them as model, because these themes are bullet proof and systematically used by all wp devs when building (in our case) BuddyPress

    BP can be used with almost any existing theme, so far this theme is respecting WP’s coding standarts.

    If you have brocken elements, and specially thoose using JS, it could be due to missing ID or class or even more simple, some missing instructions/conditionnals in your theme.

    BP’s template parts are designed to fit with a majority of themes. The best to do, at least while creating your first theme, is to use BP “as is” and build your theme around thoose existing parts and not to remove/modifying BP arts to fit your creation.

    #260980
    danbp
    Participant

    Hi,

    the toolbar belongs to WordPress. How to remove items is explained here:
    https://codex.wordpress.org/Function_Reference/remove_node
    Searching the forum will certainly bring you some more hints too.

    #260973
    Masoud
    Participant

    @danbp
    hi.
    1 – first of all i have to thank you for your time, and complete explanation on this. i’m so grateful for that.
    ———
    2 – second, i have to apologize for my limited knowledge.
    i am at the beginning and still learning about php, DB, wordpress, and bp.
    so sorry if i had mistakes in codes.
    ———
    3 – third, i have to say that:
    i was not aware of this, that the usage of components are not the same. just like the example you said about buddy nav bar.
    in this code (which was not working) :

    <?php
     if ( !defined( 'BP_DEFAULT_COMPONENT' ) ) {
     if ( bp_is_active( 'activity' ) && isset( $bp->pages->activity ) )
     $bp->default_component = 'mentions' ;
    }
    ?>

    my logic was : if ( !defined( 'BP_DEFAULT_COMPONENT' ) ) i use this code to understand if it’s a component or not.
    then after with this bp_is_active( 'activity' ) it will be checked , if it’s activity or not
    and with this isset( $bp->pages->activity ) to check if activity is to check whether activity is set or not.
    and if all true, then set and define a new nav default tab to mentions with this $bp->default_component = 'mentions'

    but it seems that my logic/codes are wrong from the start 🙁
    ———
    or for this code that i tried, and also went wrong:
    <?php define( 'BP_ACTIVITY_DEFAULT_EXTENSION', 'mentions' ); ?>
    my logic was, the <?php define( 'BP_ACTIVITY_DEFAULT_EXTENSION' part will force the bp, to set the default landing tab to activity.
    and with the second part , 'mentions' ); ?> it will force the Activity component to load on mentions sub-nav item.
    ———
    4 – i have to thank you for the group example. i didn’t know that set such a thing is possible.
    it was clear . i read it. and i’m trying to learn more about it.

    at last , i have to thank you again for the clear explanations.

    #260967
    Lars Henriksen
    Participant

    The defer%20onload is a sign that you might be using a plugin to do something to all WordPress javascript enqueued files.

    Sorry, I disabled a code snippet that defers javascript – that solved the problem.

    #260930

    In reply to: Hiding register link

    Venutius
    Moderator

    I think you are looking for BP Registration options – that provides you with new member moderation.
    https://wordpress.org/plugins/bp-registration-options/

    If you are new to BuddyPress I’m developing a site aimed at helping people get the most out of BuddyPress http://buddyuser.com

    #260921
    modemlooper
    Moderator
    #260920
    modemlooper
    Moderator
    #260892
    Masoud
    Participant

    hi.
    i am using latest versions of both wordpress and buddypress.and working on a food website.
    in this website , i wanted to allow only authors to post activity updates .
    (because it will be much easier for users to track their favorite chef recipes in the activity page.)
    so i’ve hide the ” personal ” submenu of activity tab : Activity > Personal (where people can post updates)
    with the help of following code in bp-custom.php :

    function bpfr_hide_tabs() {
    global $bp;
    if ( bp_is_user() && ( !current_user_can(author) || !current_user_can(administrator) ) ) {		
     bp_core_remove_subnav_item($bp->activity->slug, 'just-me');	}
    }
    add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );

    but now when i go to my profile (as a subscriber)
    i will see a 404 page.
    i’ve searched a lot and i noticed that , now that i’ve removed the default activity stream tab , i have to point it to another tab. so when a user profile is loading (or if a user clicks on activity tab),
    instead of default activity> personal . it load activity > mentions / OR / favorites / OR / … (some other submenu than personal )

    so my question is:

    how can i change the default activity stream tab
    from
    Activity > Personal
    To
    Activity > Mentions – Or to – Activity > Favorites – …

    thanks a lot for any help.

    #260888
    Venutius
    Moderator

    You could try something like this, only it’s not been updated in a while, not tried it myself https://wordpress.org/plugins/buddypress-login-redirect/

    #260887
    Earl_D
    Participant

    It doesn’t set up predefined filters which seems like what OP wanted but this works really well for me and includes widget

    https://wordpress.org/plugins/bp-profile-search/

    #260845

    In reply to: BP and AMP

    Ben Hansen
    Participant

    Responsiveness and AMP are actually sort of unrelated concepts any page/site that can have an AMP’ed version probably should have one (for optimal ranking) and it’s sort of the opposite idea of making a one page fits all situations notion that has made responsiveness a first order requirement in building sites these days (it’s like deja vu all over again).

    i believe that WP itself is not fully compatible with AMP yet:

    https://wordpress.org/plugins/amp/

    (see notes)

    so BP compatibility is probably a ways off at this point. Others may know more than me on this subject though. 🙂

    #260824

    Hey @danbp

    I just thought I’d jump in here real quick, as I think this will be beneficial to everyone in the thread including @Tranny.

    And even if you would be a genius coder creator of an extra super original spam shield, you could be sure to became target #1 of all spammers, because in this case, you would represent the absolute challenger of all code breakers !

    We are that “genius coder creator of an extra super original spam shield” that you speak of. 🙂

    There is no miraculous plugin or trick to stop them.

    Ahh, but there is.

    It’s real, and it’s even called WP-SpamShield. LOL…you can’t make this stuff up. 🙂

    Check it out on WPorg. It’s been out for about two and a half years, and is forked from another plugin we developed almost a decade ago. It works perfectly and automatically on BuddyPress, bbPress, and pretty much everything else. You can also feel free to check out the plugin documentation here.

    …And for the record, we definitely are a huge target of spammers. 🙂

    dealing with spammers is a long run work, to not say a never ending work.

    True story!

    – Scott

Viewing 25 results - 3,901 through 3,925 (of 22,692 total)
Skip to toolbar