Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,626 through 6,650 (of 22,602 total)
  • Author
    Search Results
  • #230763
    Emineminero
    Participant

    Yes @shivam-kumar, my site is multisite so i checked on /wp-admin/network/ then Settings–>Network Settings and i do have that option enabled (“user accounts can be created” or something like that, my wordpress is in spanish.

    #230760
    danbp
    Participant

    If you need just a simple PDF format to get the members list, the most simple way is to use the export tool of phpmyadmin.

    See this
    video tutorial to learn about this.

    A more sophisticated way to get member’s list converted to PDF, and much more, directly on/in your site, would be to use this premium plugin ($28).
    Also read the doc and try the demos first before taking a decision. šŸ˜‰

    #230740
    jstallard
    Participant

    OK fixed!

    Buddypress was no longer network activated. (The Manage Signups page was still there.) After the WordPress 4.0.1 upgrade I experienced problems on my multisite. Deactivating Buddypress helped (although the problem may have originated elsewhere).

    Network activating Buddypress fixes the Manage Signups page. Now I just need to work out the fastest way to deactivate it on 100 blogs!

    #230738
    Security
    Participant

    Hi @emineminero just to make sure, have you checked the anyone can register checkbox in dashboard>>settings>>general section

    Thanks

    #230729

    In reply to: Spam/Bot users

    danbp
    Participant

    It’s not buddypress but WP who manage registering and concerning bots, they go directly on your server.

    A good starting point is to read the WP Codex:
    https://codex.wordpress.org/Hardening_WordPress

    And at least,
    Never use “admin” as username
    Never user wp_ as table prefix

    If you search for “spam” on this forum, you will find many topics about this subject.
    And the latest one, even if not directly related to your issue, is one of the sticky post on the forum homepage. https://buddypress.org/support/topic/this-is-why-we-cant-have-nice-things/

    #230716
    buffos
    Participant

    * yes , register page is activated
    * yes, i can register
    * yes, members, activity.. etc.. show fine

    ==htaccess==

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /testbuddy/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /testbuddy/index.php [L]
    </IfModule>

    # END WordPress

    ==logs==
    no errors

    * does buddypress support non :80 ports?

    #230708
    Amic58
    Participant

    Thank 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.

    #230692
    Tecca
    Participant

    I 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?

    #230648
    Tecca
    Participant

    It’s essentially a social network plugin for WordPress. Check out the about page: https://buddypress.org/about/

    #230629
    Hugo Ashmore
    Participant

    What 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/

    #230621
    danbp
    Participant

    It’s not recommended to duplicate BP omponents.

    Instead, consider this plugin
    https://wordpress.org/plugins/buddy-bbpress-support-topic/

    #230588
    danbp
    Participant

    If you can wait for BP 2.2, the new Member Type API which will be introduced will probably allow such kind of customization.

    Member Type API

    Note to myself: always remember information found on the dev blog šŸ˜‰

    #230586

    In 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 šŸ™‚

    #230579

    In 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.

    #230548

    In reply to: Custom Login Redirect

    ad4m_wordpress
    Participant

    I 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.)

    #230547

    In 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.

    #230545

    In 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.

    #230542

    In reply to: Custom Login Redirect

    bp-help
    Participant
    #230536

    In 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.

    Installing Group and Sitewide Forums

    #230521
    danbp
    Participant

    See 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 Project is 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.html

    And apologize if you use another RTL language.

    #230487
    shanebp
    Moderator

    That area is controlled by WordPress, not BuddyPress

    Try this in bp-custom.php or your theme/functions.php
    https://gist.github.com/shanebp/91acc541776cc083e3a5

    #230398
    danbp
    Participant

    hi @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 šŸ™„

    #230371
    danbp
    Participant

    Forgot to mention that this can be made with CPT as soon as BP 2.2 is out.

    About Post Types and BuddyPress Activities

    #230363
    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’.

    #230344
    danbp
    Participant

    BP use only Name (aka nickname) and the WP registration process.

    Unique name possible ? Not really
    https://buddypress.trac.wordpress.org/ticket/2036

    https://codex.wordpress.org/Customizing_the_Registration_Form

Viewing 25 results - 6,626 through 6,650 (of 22,602 total)
Skip to toolbar