Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,126 through 4,150 (of 22,651 total)
  • Author
    Search Results
  • #258412
    jasonlazarus
    Participant

    It’s this one in particular that is doing it – https://wordpress.org/plugins/html-on-pages/

    #258410
    steigw
    Participant

    It’s a staging site that doesn’t have public access, but I can put the code and info in here. Here is the complete code of the functions.php in the child theme. maybe I just put it all together wrong.

    <?php
    function nisarg_enqueue_styles() {
    
        $parent_style = 'nisarg-style';
    
        wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css' );
        wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/font-awesome/css/font-awesome.min.css' );   
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    
        wp_enqueue_style( 'nisarg-child-style',
            get_stylesheet_directory_uri() . '/style.css',
            array( $parent_style )
        );
    }
    add_action( 'wp_enqueue_scripts', 'nisarg_enqueue_styles' );
    ?>
    <?php
    function custom_wp_mail_from( $email ) {
            $handle = ‘accounts’;
    	$find = 'http://'; 
    	$replace = '';
    	$link = get_bloginfo( 'url' );
    	$domain = str_replace( $find, $replace, $link );
    	return $handle . '@' . $domain ;
    }
    add_filter( 'wp_mail_from', 'custom_wp_mail_from' );
    ?>

    The email link is:http://mydomain.com/activate/JA0BvkK1Q0DND10SYegdOtkTMemhGUF0/

    When I click on it immediately, I get all this:

    Fatal error: Uncaught exception ‘phpmailerException’ with message ‘Invalid address: ‘accounts’@mydomain.com’ in /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/class-phpmailer.php:946 Stack trace: #0 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/pluggable.php(352): PHPMailer->setFrom(‘\xE2\x80\x98accounts\xE2\x80\x99@…’, ‘WordPress’) #1 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/pluggable.php(1726): wp_mail(‘webmaster@arlin…’, ‘[My Dev Sit…’, ‘New user regist…’) #2 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-content/plugins/buddypress/bp-members/bp-members-functions.php(2031): wp_new_user_notification(18) #3 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-content/plugins/buddypress/bp-members/bp-members-screens.php(364): bp_core_activate_signup(‘JA0BvkK1Q0DND10…’) #4 [internal function]: bp_core_screen_activation(”) #5 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/plugin.php(524): cal in /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/class-phpmailer.php on line 946

    If I wait a while, then I get the normal webpage and it says “invalid activation key”. I don’t understand the significance of an immediate click on the link in the email vs. waiting a few more seconds, but it definitely matters.

    #258407
    Paul Wong-Gibbs
    Keymaster

    BuddyPress is always global to the whole network on multisite.

    If you want to run multiple, separate BuddyPresses on a *multisite*, what you actually want is to set up WordPress multi-network (something like https://wordpress.org/plugins/wp-multi-network/).

    This is actually complicated, and if you do not need to share users between your BuddyPresses, I’d suggest setting up multiple standalone regular WordPresses (or standalone multisites).

    #258404
    Stacy (non coder)
    Participant

    There’s also this option for now @binary10 if I’m understanding your request, but it’s not so automatic. https://wordpress.org/plugins/buddypress-activity-plus/

    #258402
    danbp
    Participant

    FYI, minutes vs. hours ! 🙂

    When you search strings, open the .pot file provided with almost any theme and plugin for translation.
    In this text format file, you will find (if exist) the string and ALSO the file and the line # where it is used.

    The default profile content

    #258401
    Stacy (non coder)
    Participant

    The vid explains that adding a bp activity link to a post embeds. Is embedding in the activity native yet?

    What the embed scripts? like of the provider.

    Would love to make this compatible , especially in the groups https://wordpress.org/plugins/iframely/

    Here was my old combo to achieve this. https://wordpress.org/support/topic/plugin-oembed-for-buddypress-embedly-oembed-4-bp-all-embedly-content-in-bp-forum-yaaay/

    #258393
    israelle
    Participant

    thank you Paul @djpaul for your replay
    i’m using host – http://www.hostinger.co.il its a free host for php and wordpress websites
    those are the plugins in my site

    Clef

    Limit Login Attempts

    Mailgun integration for WordPress
    Regenerate Thumbnails
    WooCommerce
    Akismet
    buddypress
    bbpress
    wipi Hebrew theme page editor
    hello doli

    #258389
    danbp
    Participant

    Hi @bigkahunaburger,

    thanks for the burger! 😉
    Like you, I’m not a JS specialist so i can’t help you more with that. 🙁

    But i can suggest you an alternative solution by using MediaPress. It appears that this plugin allows you to add mediabuttons by shortcode to the Status form (and not only there…).

    Take a little moment to study this option, completely or to check the code how the author implemented it.

    #258377
    bigkahunaburger
    Participant

    @danbp

    Did you have any tips on editing that js file?

    I know this is one of those “don’t try this at home kids” type of things, however I think I’m a trained professional, just not at js. I’ve spent I long time removing the media buttons and other problematic buttons. I used your old trick and had everything working. However I really needed images so I put everything aside I went with a BP gallery plugin. It was safe (or as safe as you can get), but it still saved photos on our sever.

    I was going to scrap Activity altogether and go back to good old bbPress, but then I found this:

    https://codecanyon.net/item/dw-tinymce-imgur-upload-wordpress-plugin/16386641

    It instantly uploads user images to imgur seamlessly. All my dreams where answered. No more bloated hard drives with user images and no need to leave the site to upload to a image host.

    Sadly (as you know), when I put the editor code back in place the trick no longer worked.

    Sorry for the long story. The great thing about WP & BP (most of the time) is you can expand beyond what was intended. Making thing “idiot proof” is not going to stop idiots, just innovation.

    Anyway if you have some tips that would be great. And you may want to check out that plugin (I have nothing to do with it).

    Best,
    Big Kahuna Burger 😛

    #258367
    David Cavins
    Keymaster

    Hi, you have to enable WP registration at Settings > General > Anyone Can Register:

    http://www.wpbeginner.com/beginners-guide/how-to-allow-user-registration-on-your-wordpress-site/

    Henry Wright
    Moderator

    wp_insert_post() takes an array as its first param. post_date is set to the current time by default so something is setting it to 0000-00-00 00:00:00.

    If you’re talking about BuddyPress activity items (not WordPress posts) then recorded_time also defaults to the current time. Again, in this case there must be something in your plugin that is setting it to 0000-00-00 00:00:00.

    Ref: https://codex.buddypress.org/developer/function-examples/bp_activity_add/

    David Cavins
    Keymaster

    Hi r083r7-

    Within the same site, you could write a short code that would render the profile. Outputting profile data is pretty straightforward: https://codex.buddypress.org/themes/guides/displaying-extended-profile-fields-on-member-profiles/

    One another site, I’m less sure. You’d need BP API or similar, which we’re just now writing.

    Check our Bowe Codes for some other useful short codes and examples for your own: https://wordpress.org/plugins/bowe-codes/screenshots/

    #258361
    David Cavins
    Keymaster

    I really have no idea, but checking the code base, that error is thrown when a field type supports options (like a dropdown or checkbox set) and the data posted at save is unpopulated or is not an array. If you’re familiar with the developer tools in Firefox or Chrome, visit that page and submit the form, then see what the $_POST payload looks like.

    Code reference: https://buddypress.trac.wordpress.org/browser/trunk/src/bp-xprofile/classes/class-bp-xprofile-field.php#L1074

    I can’t see what moving hosts would change here, but the internet is a fragile thing. 🙂

    #258359

    In reply to: Remove header images

    David Cavins
    Keymaster

    Since it’s theme specific, your best choice is to create a child theme and override that template part when you don’t want to see the image. (There are lots of conditional you can use, like is_buddypress() which returns true on a BP page.)

    It’s extremely unlikely that there will be a plugin that changes one aspect of a specific theme.

    Child themes: https://codex.wordpress.org/Child_Themes

    #258336
    danbp
    Participant

    Hi,

    this question is not related to BuddyPress as it seems you use Events Manager to let your members add events. Accordingly to plugin’s demo, you’ll probably have such a page.

    From what i see on demo, the visual editor is the one used by WordPress. Read on WP Codex how to customize TinyMCE and use wp-editor function.

    Maybe you could use this plugin to your advantage ?

    #258322
    danbp
    Participant

    Hi,

    i would use a cleaner code like what is indicated here.

    WP function references
    wp_mail_from
    wp_mail_from_name

    BP function references
    bp_core_email_from_name_filter
    bp_core_email_from_address_filter

    NB: please use the code button when you insert code on this forum.

    #258306
    danbp
    Participant

    Hi,

    usually it is because you haven’t established any friendship. Go on a profile or Members Directory, click on Add as Friend.

    Back to the group and see if this profile appears on the Invite tab.

    Friends → Friendships

    If you are in a BP dicovery phase, i recommand you to use BP Default Data plugin. Once activated you will have fake content in all BP active components (users, groups, friendships and so on). So you can see where and who see what.

    #258299
    iamkashifnadeem
    Participant

    Thanks so much for your suggestion. I also got reply from Author of Event Manager plugin for customization. I hope i will execute my idea with this plugin.
    Have a Great Day

    #258262

    In reply to: Insert Text

    steigw
    Participant

    Agreeable allows people to create the account, even if they leave the box unchecked. I see a number of support issues all reporting this problem on wordpress.org and the developers website is shutdown.

    Any other plug in suggestions? This is exactly what I’m looking for.

    #258222

    In reply to: import xprofile CSV

    Graham
    Participant

    Well there’s some great news. I can do it. It’s a very long and involved process but I can do it.

    Thanks for the help Sharma. Here is the plugin I’m using/found that will accept a CSV (comma and quotes delimited) and write to a specific table within the database.

    https://wordpress.org/plugins/wp-csv-to-database/

    There is a lot more information on how I accomplished this but I can not document it all here right now. I will follow up with a video walk through as it is involved as I stated above.

    #258220
    danbp
    Participant

    Apparently nothing to do with BuddyPress.
    Same question as on the buddypress-registration-groups(error comes from this plugin ) support !
    See
    https://wordpress.org/support/topic/fatal-error-on-registration-form-1

    #258215
    Brajesh Singh
    Participant

    Hi Dan,
    Thank you for pointing @humiges in the right direction.

    It was a theme issue for him as communicated on mail. The plugin works fine with current version of BuddyPress 2.6.2/WordPress 4.6

    #258209
    danbp
    Participant

    Hi,

    bp’s Usermenu is added to wp_admin_menu on the Toolbar, under Howdy. This BP menu ID is “my-account”.

    When you’re on a profile page, you see also these items in the Buddymenu, below the profile header cover.

    Some working examples here:
    Remove an item from Usermenu

    Remove an item from Buddymenu

    Since 2.6, BuddyPress use a navigation API. See here for many use case.

    Read also WP codex about admin bar menus.

    Where to put BuddyPress custom code ?
    Usually into bp-custom.php. This file is to BP code what a child theme is to a theme: a safe place with high priority where nothing get to loose when an update occurs !

    Child’s functions.php should be reserved to whatever you need for the theme itself.
    That said, it can happen(rarely) that some custom code won’t work from within bp-custom. In this case, feel free to remove it from bp-custom and give it a try inside child’s functions.php.

    As novice, you’re invited to read BP and WP codex if you want to customize.

    #258201
    mrjarbenne
    Participant

    You can download the zipped version of previous releases on the Developers page of the plugin directory on WordPress.org: https://wordpress.org/plugins/buddypress/developers/

    #258199
    tcornell
    Participant

    How do I downgrade? My version isn’t working with my version of wordpress.

Viewing 25 results - 4,126 through 4,150 (of 22,651 total)
Skip to toolbar