Search Results for 'wordpress'
-
AuthorSearch Results
-
December 17, 2014 at 5:33 pm #230708
In reply to: [Resolved] Hide possibility to change 'Base' name
Amic58
ParticipantThank you very much! I was looking for the fix for so long, but I never found one, didn’t know it was that easy.
Also, if it is possible to hide another ‘Base’ name fields.
In extended profile, there is a similar function like in Profile page.
On WordPress Dashboard, when you click Profile, there is a possibility to view Extended profile like on the page before. There is also possibility to change the name.
I also would like to hide the field Name (required), as I don’t want to push people to use their real names.
I use the plugin called Usernames only that eliminates possibility to use real names, but the problem is that people won’t like to add their real name during registration.December 17, 2014 at 12:44 am #230692In reply to: Updated solution to removing @mentions
Tecca
ParticipantI just gave it a shot, you’re right. It works and it doesn’t. It doesn’t send notification emails to the user, nor does it send them notifications on-site. It also doesn’t make the username a clickable link. But it still shows up in the “Latest Update” portion in profiles.
How does it work on your end (or I suppose NOT work)? And if not a custom one, which WordPress theme are you using?
EDIT: Actually, I just woke up and realized that it works completely on my end. The latest update portion part confused me for a second because I remove that on my development websites and I’m not used to ever seeing it.
The above is a bit redundant now, but I’ll leave it. Can you say exactly what it is that you’re trying to do? Are you trying to remove the functionality of mentions when a user starts typing the @ symbol and the username?
December 16, 2014 at 3:07 am #230648In reply to: A few thing about Buddypress
Tecca
ParticipantIt’s essentially a social network plugin for WordPress. Check out the about page: https://buddypress.org/about/
December 15, 2014 at 3:32 pm #230629In reply to: [Resolved] Getting Slammed by Spam since 12/12/2014
Hugo Ashmore
ParticipantWhat else have you tried? There are very many posts on this subject in the forum archives that might suggest approaches to take, try a search through them for more information o9n this issue and what other people have tried or suggest as options.
You could install this plugin and see if it helps:
https://wordpress.org/plugins/wangguard/December 15, 2014 at 12:29 pm #230621In reply to: How to replicate friends component to new component
danbp
ParticipantIt’s not recommended to duplicate BP omponents.
Instead, consider this plugin
https://wordpress.org/plugins/buddy-bbpress-support-topic/December 13, 2014 at 2:10 pm #230588In reply to: How to switch user types in registration
danbp
ParticipantIf you can wait for BP 2.2, the new Member Type API which will be introduced will probably allow such kind of customization.
Note to myself: always remember information found on the dev blog š
December 13, 2014 at 11:31 am #230586In reply to: Custom Login Redirect
Hugo Ashmore
Participant@ad4m_wordpress Codex is another word for documentation, ‘codify’, here it’s the link on the main menu labelled ‘Documentation’ The WP documentation is also referred to as ‘The Codex’.
Your initial requirement would have been served by the simple use of one of the provided BP template tags e.g:
<?php echo bp_core_get_userlink(bp_loggedin_user_id()); ?>
which will render a fully formed link and also takes parameters.Iām just trying to avoid paying $50 an hour to a programmer who will take 30 seconds to do this for me.
In that case you will need to learn to code! That is how you will avoid the skilled services of a developer š
December 13, 2014 at 12:08 am #230579In reply to: Custom Login Redirect
bp-help
Participant@ad4m_wordpress
On lines 471-474 in that plugins custom-login-redirect.php maybe try switching this:<option value="">Default</option> <?php if (get_option('custom_login_redirect_display6','yes') == 'yes'){ ?> <option value="<?php home_url ?>wp-admin/">Dashboard</option> <?php } ?>To to something like this:
<option value="">My Profile Wall</option> <?php if (get_option('custom_login_redirect_display6','yes') == 'yes'){ ?> <option value="<?php home_url . '/members/' . bp_core_get_username( bp_loggedin_user_id() ) . '/profile/' ?>My Profile Wall</option> <?php } ?>Note that I haven’t tested this at all so test at your own discretion.
December 12, 2014 at 11:12 pm #230548In reply to: Custom Login Redirect
ad4m_wordpress
ParticipantI would LOVE to be able to edit the code. The plugin url is here –
https://wordpress.org/plugins/custom-login-redirect/
I would LOVE to be able to change the ‘default’ value to say ‘My Profile Wall’ and then hard code it so it using the php method you mentioned above so it gives users the option of redirecting themselves to their profile wall.
You can see a live version of it on my site http://milemarker20.com/wp-login.php
(I plan to change the location of the login url to help prevent spam.)
December 12, 2014 at 11:08 pm #230547In reply to: Custom Login Redirect
bp-help
Participant@ad4m_wordpress
Just out of curiosity what plugin are you referring to that creates this dropdown box on the login screen? Most plugins can be modified to suit your needs if you don’t mind editing the code.December 12, 2014 at 10:51 pm #230545In reply to: Custom Login Redirect
bp-help
Participant@ad4m_wordpress
Not really sure what your trying to accomplish but you need to understand the dynamic nature when a user logs in and is redirected to their profile is in PHP language and there is no full html equivalent that could pull that info from the database to take that user to their profile.
I am certain you will have to use PHP to make this happen. If you copy and pasted the snippet in the link I supplied into bp-custom.php it shouldn’t take a few minutes and is very simple.December 12, 2014 at 10:04 pm #230542In reply to: Custom Login Redirect
bp-help
Participant@ad4m_wordpress
See my snippet here for one solution:Redirect logged out visitors to home, and logged in users to profile
December 12, 2014 at 8:25 pm #230536In reply to: Groups and Forums
Hugo Ashmore
Participant@ad4m_wordpress Please check the BP Codex documentation you’ll find much of the information you seek there.
December 12, 2014 at 4:51 pm #230521In reply to: Translating the custom posts activity
danbp
ParticipantSee the WP Codex to get the answer: codex.wordpress.org/Translating_WordPress
The order of %1$s and %2$s is not important.
If you code directly your language into the string, you can write as usual RTL and place %2$s first write something, add %1$s and write another thing…
That said, and if you are using a RTL language like hebrew (as i suppose), you may have some special characters which are (perhaps) not recognized by gettext. And in this case you have to use unicode, in other words, HTML letters.
The orignal
created a new Projectis translated to×צר פר×××§× ××ש
But i don’t know much about hebrew (or persian or arabic) characters.
Search from here how to get rid of this:
https://codex.wordpress.org/WordPress_in_Your_Language
or see here:
http://www.i18nguy.com/unicode/hebrew.htmlAnd apologize if you use another RTL language.
December 11, 2014 at 11:12 pm #230487In reply to: Default to "view" instead of "edit" profile
shanebp
ModeratorThat area is controlled by WordPress, not BuddyPress
Try this in bp-custom.php or your theme/functions.php
https://gist.github.com/shanebp/91acc541776cc083e3a5December 11, 2014 at 1:06 pm #230398In reply to: Buddy Press Increasing Files
danbp
Participanthi @thammavongsam,
Can you give details about
Because whenever we are posing anything its Creating a duplicate file
Which type of posting (blog post, status,….) ?
Which file is growing ? In a CMS like wordPress, nothing is added to files but only to DB šDecember 10, 2014 at 2:15 pm #230371In reply to: [Resolved] Matching status updates with categories
danbp
ParticipantForgot to mention that this can be made with CPT as soon as BP 2.2 is out.
December 10, 2014 at 8:39 am #230363In reply to: Disabling Comments in BuddyPress
notpoppy
Participant@qasimilyas Apologies if I’m missing the point here, but isn’t this something you need to change in WordPress?
Uncheck ‘Allow people to post comments on new articles’ here:
/wp-admin/options-discussion.php
Of course for any articles you’ve already published you’re going to need to disable commenting individually by going into the posts and unchecking ‘Allow comments.’ under ‘Discussion’.
December 9, 2014 at 8:02 pm #230344In reply to: Profile Field Must be Unique
danbp
ParticipantBP use only Name (aka nickname) and the WP registration process.
Unique name possible ? Not really
https://buddypress.trac.wordpress.org/ticket/2036https://codex.wordpress.org/Customizing_the_Registration_Form
December 9, 2014 at 1:04 pm #230335valuser
ParticipantFirst file absent though there is no buddypress folder in twentyfourteen (i think????)
second file present
it begins /*! buddypress – v2.1.0 – 2014-10-06 9:39:07 PM UTC – https://wordpress.org/plugins/buddypress/ */
December 9, 2014 at 8:49 am #230319danbp
Participanttitling a support topic with Help please – How to…. is gentle, but ouf of need on a help forum. And for sure not a waranty to get help.
As you have an understanding problem of php, and a supposed theme issue, it would be very helpfull to give its name and some details where to show the avatar.
Apparently your theme use a custom function Ć la WordPress to get avatars. And this should work, in theory.
Have you synced wp users with bp in bp’s settings ?
Have you tested with one of wp’s default twenty theme ?Depending where to show a user avatar, BuddyPress use different code. You can see this on most of the template files stored in /bp-templates/bp-legacy/buddypress/
On the member header for example; you have
bp_displayed_user_avatar( 'type=full' );
There is also a filter:bp_get_member_avatar;
So it really depends where and how you want your avatar… In a loop, outside of a loop, etcAh, and when you give a topic example, don’t forget to mention the link.
December 8, 2014 at 6:31 pm #230300In reply to: BuddyPress use
danbp
ParticipantExcept if you want to built an expert community, BuddyPress is not appropriate. This can be done with WordPress and some CPT’s…
December 8, 2014 at 6:24 pm #230299In reply to: Need Ning to WordPress help
danbp
ParticipantRead here:
https://wordpress.org/support/topic/how-i-got-import-from-ning-to-work-for-me?replies=1
Or if you want paid service see here:
https://json-csv.com/migrate-ning-data-to-buddypressDecember 8, 2014 at 6:09 pm #230298In reply to: Buddypress emails not working
danbp
ParticipantSee if this plugin can help you ! Old but working.
If your smtp is sending mails, read this topic, may be helpfull too !
https://buddypress.org/support/topic/notify-by-email-when-xprofile-updated/December 8, 2014 at 6:07 pm #230297In reply to: How to Register to contests via BuddyPress profile
danbp
ParticipantFirst of, there is no BP account, it’s a WordPress account with extended information if you use the xprofile component.
When the user is logged in, any information related to him is on his profile, and in fact, this user is then considered a “member” with common user attribute (subscriber, author, and so on).
Now what ? You want a contest page where members can participate.
What do you need on this page ? User information and probably some contest answers.I don’t see the problem you’re affraid of…. At this stage, a contest page or a group or a forum page is the same thing: a place to execute dynamically something related to a contest, a group or a forum. There is no difference for the (logged in) member itself.
Anything related to him is already on his profile page.The difficulty, if ever it exist, is to collect the members who belong to the contest and to send the the xprofile form to the federation.
See if ContactForm7 allows you to send such a form, and perhaps create an additionnal profile tabs where you can add your contest credential, so you can easily extract this part and send it by mail.
-
AuthorSearch Results