Search Results for 'wordpress'
-
AuthorSearch Results
-
November 16, 2016 at 5:25 pm #261082
In reply to: Just a little advice please
tille
ParticipantI’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:
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!
November 16, 2016 at 7:31 am #261064empressdianna
ParticipantI 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
November 16, 2016 at 6:30 am #261061In reply to: Resctrict private messages
empressdianna
ParticipantFound 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');November 15, 2016 at 9:19 pm #261045In reply to: File Sharing Embedding
shanebp
ModeratorTry 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.
November 15, 2016 at 8:50 pm #261042In reply to: Images for activity for front page
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.November 15, 2016 at 2:26 pm #261030In reply to: How To Activate Existing Members
danbp
ParticipantDeactivate 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/
November 15, 2016 at 9:30 am #261017In reply to: question about compatiblity
aladinDr
Participantnot bug just in WordPress your company show that your plugin compatible up until 4.5.4
November 15, 2016 at 7:34 am #261015In reply to: Regarding about custom field display
zxbchris
ParticipantOr maybe is there a way that I can link the default wordpress description to the custom field created in BBPress?
November 15, 2016 at 6:36 am #261013In reply to: Regarding about custom field display
zxbchris
ParticipantHi,
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!
November 15, 2016 at 5:25 am #261008In reply to: Error 404 for non logged in users
danbp
Participantif 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.November 14, 2016 at 7:48 pm #261001Venutius
ModeratorHave you thought about just using BP Registration Groups?
November 14, 2016 at 8:45 am #260988danbp
Participanthi @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.
November 14, 2016 at 8:35 am #260986In reply to: Remove Login & Register Links From Toolbar
EMar
ParticipantHardly 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.
November 14, 2016 at 8:18 am #260982In reply to: How to make Buddypress support my Theme completely
danbp
ParticipantHi @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 pageThe 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.
November 14, 2016 at 7:50 am #260980In reply to: Remove Login & Register Links From Toolbar
danbp
ParticipantHi,
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.November 13, 2016 at 10:17 pm #260973In reply to: help with default activity stream tab
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 thisbp_is_active( 'activity' )it will be checked , if it’s activity or not
and with thisisset( $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.
November 13, 2016 at 11:26 am #260967In reply to: Localized time stamp broken with 2.7 update
Lars Henriksen
ParticipantThe 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.
November 10, 2016 at 9:59 pm #260930In reply to: Hiding register link
Venutius
ModeratorI 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
November 10, 2016 at 7:40 pm #260921In reply to: Change Position of BuddyPress Buttons
modemlooper
Moderatoruse this plugin https://wordpress.org/plugins/buddypress-custom-profile-menu/
November 10, 2016 at 7:37 pm #260920In reply to: redirect to profile after register
modemlooper
Moderatoruse this plugin https://wordpress.org/plugins/bp-redirect-to-profile/
November 10, 2016 at 6:14 am #260892Topic: help with default activity stream tab
in forum How-to & TroubleshootingMasoud
Participanthi.
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.
November 10, 2016 at 12:45 am #260888In reply to: default page for logged in users
Venutius
ModeratorYou 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/
November 9, 2016 at 10:28 pm #260887Earl_D
ParticipantIt doesn’t set up predefined filters which seems like what OP wanted but this works really well for me and includes widget
November 8, 2016 at 4:52 pm #260845In reply to: BP and AMP
Ben Hansen
ParticipantResponsiveness 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. 🙂
November 8, 2016 at 2:31 am #260824In reply to: How to Turn Off Email Notifications for All Users
Red Sand Media Group
ParticipantHey @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
-
AuthorSearch Results