Search Results for 'wordpress'
-
AuthorSearch Results
-
September 5, 2016 at 5:16 pm #258412
In reply to: No Fields On Registration Page After Installing
jasonlazarus
ParticipantIt’s this one in particular that is doing it – https://wordpress.org/plugins/html-on-pages/
September 5, 2016 at 4:46 pm #258410In reply to: How to Change the From Email for Activation
steigw
ParticipantIt’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.
September 5, 2016 at 4:16 pm #258407In reply to: WP Multisite + BuddyPress
Paul Wong-Gibbs
KeymasterBuddyPress 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).
September 5, 2016 at 4:02 pm #258404In reply to: Activity embeds in activity stream
Stacy (non coder)
ParticipantThere’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/
September 5, 2016 at 3:51 pm #258402In reply to: Your connection to this user
danbp
ParticipantFYI, 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
September 5, 2016 at 3:50 pm #258401In reply to: Activity embeds in activity stream
Stacy (non coder)
ParticipantThe 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/
September 5, 2016 at 1:13 pm #258393In reply to: problem with confirmation code
israelle
Participantthank 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 siteClef
Limit Login Attempts
Mailgun integration for WordPress
Regenerate Thumbnails
WooCommerce
Akismet
buddypress
bbpress
wipi Hebrew theme page editor
hello doliSeptember 5, 2016 at 12:02 pm #258389In reply to: tinymce in activity replies and comments
danbp
ParticipantHi @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.
September 5, 2016 at 10:45 am #258377In reply to: tinymce in activity replies and comments
bigkahunaburger
ParticipantDid 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 😛September 4, 2016 at 5:39 pm #258367In reply to: Registration and activate page
David Cavins
KeymasterHi, 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/
September 4, 2016 at 2:55 pm #258364Henry Wright
Moderatorwp_insert_post()takes an array as its first param.post_dateis 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_timealso 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/
September 4, 2016 at 2:17 pm #258363David Cavins
KeymasterHi 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/
September 4, 2016 at 2:12 pm #258361In reply to: These field options are invalid error
David Cavins
KeymasterI 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
$_POSTpayload 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. 🙂
September 4, 2016 at 2:05 pm #258359In reply to: Remove header images
David Cavins
KeymasterSince 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
September 3, 2016 at 12:24 pm #258336In reply to: [Resolved] Front-End Visual Editor Options
danbp
ParticipantHi,
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 ?
September 3, 2016 at 12:13 am #258322In reply to: How to Change the From Email for Activation
danbp
ParticipantHi,
i would use a cleaner code like what is indicated here.
WP function references
wp_mail_from
wp_mail_from_nameBP function references
bp_core_email_from_name_filter
bp_core_email_from_address_filterNB: please use the
codebutton when you insert code on this forum.September 2, 2016 at 7:36 am #258306In reply to: Unable to invite friends
danbp
ParticipantHi,
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.
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.
September 2, 2016 at 3:13 am #258299In reply to: [Resolved] Events Plugin
iamkashifnadeem
ParticipantThanks 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 DaySeptember 1, 2016 at 4:31 pm #258262In reply to: Insert Text
steigw
ParticipantAgreeable 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.
August 31, 2016 at 7:56 pm #258222In reply to: import xprofile CSV
Graham
ParticipantWell 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.
August 31, 2016 at 6:23 pm #258220In reply to: Error on Registration Page
danbp
ParticipantApparently 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-1August 31, 2016 at 3:38 pm #258215In reply to: [Resolved] Availability Checker
Brajesh Singh
ParticipantHi 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
August 31, 2016 at 1:00 pm #258209In reply to: [Resolved] Member Menu Alterations
danbp
ParticipantHi,
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 UsermenuRemove 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.
August 31, 2016 at 2:50 am #258201In reply to: I want to downgrade my buddypress
mrjarbenne
ParticipantYou 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/
August 31, 2016 at 1:02 am #258199Topic: I want to downgrade my buddypress
in forum How-to & Troubleshootingtcornell
ParticipantHow do I downgrade? My version isn’t working with my version of wordpress.
-
AuthorSearch Results