Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 7,151 through 7,175 (of 22,649 total)
  • Author
    Search Results
  • #189592
    Cartographer
    Participant

    Hi again,

    I use the latest versions of both WordPress and Buddypress and I can replicate the issue using “Twenty Fourteen” theme.

    Wordpress: 3.9.2
    BuddyPress: 2.0.2
    Theme: Twenty Fourteen

    #189567
    durkk
    Participant

    @danp: Yes, that’s the plugin indeed. I have the latest version.

    Thanks for the ideas! I have gone through those options and the whole website is pretty much one big WP manual in layout (knowledge base search type of thing) so that’s covered.

    The one 2 one tutoring is practically a video call, but I also share files and links and make a summary and assign homework that I want them to be able to review in their profile.

    So I guess the best way would be to somehow link a personal page to a profile. Any ideas on that?

    While googeling and writing this I have come up with the following:

    Use dynamic links to user profiles via and then give my students a restriction level via s2members or simalair and restrict acces that way. Just thinking out loud and still pondering how to link unique user ID’s to a page.

    http://edu.durkkooistra.com/ I have an open website, so the knowledge base is open to anyone, I just want to restrict one page per student to add the videos etc too.

    #189566
    danbp
    Participant

    hi @tiepolo71,

    you can add such information in each group description.

    If you’re comfortable with coding, build your own group queries or plugin:
    https://codex.buddypress.org/plugindev/group-meta-queries-usage-example/https://codex.buddypress.org/developer/group-extension-api/

    if not, see which plugin solution could be best for your needs

    https://wordpress.org/plugins/buddypress-groups-extras/

    New Plugin Adds Taxonomies to BuddyPress Groups

    #189565
    danbp
    Participant

    @durkk,

    are you speaking about this wordpress add-on ?
    You must have at least PrivateContent v2.3 to use it !

    i would try something different.

    Create a page for each student and set it to private, with a password which you give to the student.
    With the password they can access to the page. This is a WP native behave.

    It would not be very difficult after that to include such a page in each profile.

    To write your summary or summaries, adapted to each student, or any other text, you could use @imath ‘s wp-manual.

    You could also publish courses in PDF and use the buddydrive plugin. Your course will then be listed on your profile, depending your buddydrive visibility settings (public, private, friends, members….).

    I think this can be reasonnably be used if you have few students, but if you have more than 50 you have to use a better adapted solution.

    #189562
    danbp
    Participant

    I don’t understand why you obstinatly want to write bios on wordpress (inactive when BP is activated) when you can do that with xprofile !

    On the register page you have a single line text area field. Why don’t you use a multiline area for doing this ?
    field type = Multi-line Text Area.
    Entered text will then appear on user’s profile !

    The function you want to use cannot work, as it contain errors.

    Sorry to tell, but I think you have to learn some php and buddypress handling before going to reinvent the wheel or making things you don’t really understand.

    Some good reads here, and many others on the forum.

    functions.php


    https://codex.buddypress.org/getting-started/guides/displaying-extended-profile-fields-on-member-profiles/

    Using bp_parse_args() to filter BuddyPress template loops

    intristin
    Participant

    Ok, I just deactivated all plugs again, this time I cleared the server cache, and I restarted them one at a time. When I turned on Facebook Thumb Fixer the txt appeared. So you are correct, it was Facebook Thumb Fixer. I will contact the makers of that and see if I can find a fix. I really like that plug in so I will figure it out.

    bd-wall is this plugin : https://wordpress.org/plugins/buddypress-wall/ but it seems to not be related to the problem I was having. Thank you so much for all your help.

    #189546
    danbp
    Participant

    Shortcodes are used by WordPress since version 2.5.

    https://codex.wordpress.org/Shortcode
    https://codex.wordpress.org/Shortcode_API

    To use the above snippet, you copy/paste it into your child-theme functions.php.
    And you use the shortcode like this [myprofileurl] within post or comments.

    Bla bla bla [myprofileurl] bla bla… will print out Bla bla bla My Profile bla bla…

    I hope for you that you want to write something else before My profile as bla bla bla 😉

    #189542
    danbp
    Participant

    Thank you for your reply @bookclubreader.

    But the first topic is related to Contact Form 7, and your soluce applies to that plugin ONLY.
    Also, the tip you linked to use a core file hack, and this is absolutely not to do.

    If users who don’t use that plugin go to remove both filters, their emails won’t NEVER be send i guess.
    https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from

    For thoose who want to modify the default sender name (from), typically wordpress@yourdomain to something else, use these snippets and put them into your child-theme functions.php

    //notification mail  From email field
    function custom_email_from($mail) {
    	$mail = 'your_email@addre.ss'; // Replace the email address here //
    	return $mail;
    }
    add_filter('wp_mail_from','custom_email_from');
    
    //notification mail From name field - optional
    
    function custom_email_from_name($name) {
    	$name = get_bloginfo('name');//or any other text
    	return $name;
    }
    add_filter('wp_mail_from_name','custom_email_from_name');

    MOD EDIT: Topic moved into Third Party Plugins section

    #189221
    BookClubReader
    Participant

    I spoke too soon. I found the answer here – Contact Form 7 – From Name Incorrect

    Here’s what solved it for me:

    remove_filter('wp_mail_from', 'bp_core_email_from_address_filter' );
    remove_filter('wp_mail_from_name', 'bp_core_email_from_name_filter');

    I added this to my function file. If you have Genesis Extender, it’s easy to do.

    #189030
    danbp
    Participant

    @sam01389
    Q. 4:
    BuddyPress wordings can easily be changed by using a language file, even if your site is in english.

    Customizing Labels, Messages, and URLs

    Q.2:
    When buddypress is activated with the xprofile component, the wordpress register form is not used, except for username, password and email part.
    xprofile let you extend this wp form. And if you need a bio field, you create multiline text field and call it Biography. So simple as that.

    Q.3
    https://wordpress.org/plugins/buddypress-followers/

    Q.1
    no comprendo ! What do you mean exactly ?

    Latest WP and BP maybe enough for a daily forum usage. But imagine people reading your topic in 6 mounth or in 2 years… Give the version number please. And give also the used theme type/name.

    #189011
    danbp
    Participant

    @sokrates,

    the ticket is fixed and closed since 19 mounth.
    If you follow the last IRC discussion around this ticket – 7 mounth ago – you’ll see that the issue cames again, and a new fix was added.

    Also from IRC, test this setting.

    Anyway, if you think the issue is still there, feel free to open a new ticket and give the steps to reproduce. Follow Boone’s instructions

    Login to Trac use the same credentials as bp.org forum.

    #189009
    Sokrates
    Participant

    In fact it sounds like this issue from 3 yrs ago: https://buddypress.trac.wordpress.org/ticket/3725

    #189003
    danbp
    Participant

    @juanmgonzalez,

    thank you for your reply !
    The php GD2 library is necessary on your server to handle images.

    To all readers:

    In case of issues with common image handling and/or image cropping, ensure that your php has GD library enabled.

    On hosted servers, it is generally the case, but not on local with WAMP for example.

    Making a phpinfo will help you.

    Read also here about other server requirements (required or optionnal)

    #188998
    danbp
    Participant

    Is this something that will be able to happen in the 2.1 version?

    No !
    If you readed sarah’s post, ou have seen a mention to a post by Andrew Nacin on the Make (published 2013/28/07) where he writes:

    A disclaimer: This post doesn’t promise anything. Do not rely on the contents of this post for future projects. It will take us some time to lay out the proper groundwork and make sure we get this right. Do not expect this to happen in WordPress 3.7, or even 3.8. (Actually, do not expect this to happen at all.)

    Nothing about taxonomies is annonced for WP 4.0, so don’t expect that BP 2.1 will get something around taxo before WP.

    You may use BP Group Taxo – as experimental plugin. 😉

    #188997
    shanebp
    Moderator

    It might be part of the 2.1 release, but more likely the 2.2 release.
    https://buddypress.trac.wordpress.org/ticket/4017#comment:15

    #188992
    Sokrates
    Participant

    Hi, Just in case it’s of use….

    I’m a bit of a BP newb, and I’m using a fresh install of WP 3.9.2 and BP 2.0.1

    I’m using a Gravity form as a registration form with the GravityForms User Registration add-on to register BuddyPress users.

    As a newb, I have been experimenting a lot with the XProfile fields, and also noticed that at some stage of the proceedings, I had made a change that resulted in the same problem as in the first post – the WordPress last name value was deleted and the firstname field was set to the nicename when the update profile button was pressed.

    I had changed the primary field in the XProfile fields from “Name”.

    Replacing the primary field as Name, and mapping the “full name” field from the Gravity form to this field in the Gravity User Registration add-on screen seems to solve it for me

    #188905
    danbp
    Participant

    @vajrasar,

    the missing field belongs to the wordpress part of the register page.
    Check your wp / bp settings (allow user to register) and on BP settings check profile syncing with wordpress users.

    danbp
    Participant

    Source code tells also this when only highlighting the link you mention

    <link href=”data:image/png;base64 … followed by a very long encrypted code block.

    I would suggest to check for such a base64 in all theme files, just in case of you’re victim of a malicious injection or simply use some wrong code in your beta plugin.

    Your site is loading slow and with such encoded png’s the culprit is probably the images.

    http://ottopress.com/tag/base64/
    Embedding Images in HTML with Data URI & Base64 Encoding

    #188891
    dolliv
    Participant

    I’ve came across this plugin on my search, but that’s only in checkbox form… Any chance of getting that in dropdown form?

    #188877
    Learner
    Participant

    Hi !

    I recently changed my WordPress Theme to ” Customizer ” and this error message crops up at the bottom of every page thereafter.

    Disabling the plugin : Social Login ” of Login Radius makes it go away…

    So, either the theme or the [plugin is causing this….

    Alll solutions appreciated !

    #188854
    danbp
    Participant

    Oh ? Awesome !
    And have you inserted the register form ?

    Create A Responsive Pop-up Login Box for WordPress


    or use a plugin.

    #188846
    danbp
    Participant

    hi @peti446,

    Sorry, this is not clear:

    to send buddypress information to register it then

    Do you want to make a register page ?

    The register template is here: /buddyress/bp-templates/bp-legacy/members/register.php

    Register and Activation Pages


    Other information about registering are on the WP codex.

    #188841

    In reply to: Buddypress not Working

    Bucobill
    Participant

    OK. I have the same issue as quite a few users. I went to the themes area and activated Twenty Fourteen. It still doesn’t work. I changed to Anyone Can Register, still doesn’t work. Added an htaccess.txt file with the WP code found on the wordpress site. Overall I spent the better part of the day with issues. I cannot access the register page, it is using blurbble/register even though I set the Permalink to Postname like http://blurbble.com/index.php/sample-post/ . I uninstalled and reinstalled buddypress and still nothing. If any help could be given it would be appreciated.

    #188806

    In reply to: Buddypress not Working

    samchozx
    Participant

    Hi, I tried the basic theme for wordpress and Budypress functioned as it should. Is there any possibility to work on the theme of what I bought Gamingzone?

    #188803
    danbp
    Participant

    @evilben,

    go to dashboard > users > profile fields.
    Required field on registration form should be added to the NAME field group.
    There is a date field type for birthdates. Set it to required, viewable by everyone

    For the TOS read here

    Another solution here (not tested)

Viewing 25 results - 7,151 through 7,175 (of 22,649 total)
Skip to toolbar