Find Answers and Get Support › Forums › Gwangi – PRO Multi-Purpose Membership, Social Network & BuddyPress Community Theme › Popular Features › Member Profile › How to change the default Cover Image for new registrations
- This topic has 4 replies, 2 voices, and was last updated 6 years, 2 months ago by
Themosaurus.
-
AuthorPosts
-
Des SomebodyParticipant@elsades
- 15 Topics
- 41 Posts
When new members sign up, their cover image appears as your default “mountain ranges” image. How can I set that default image to be one of my own images instead of your “mountain ranges” image ?
Cheers
February 25, 2019 at 01:51 #5499@themosaurus- 1 Topics
- 1675 Posts
Hi @elsades,
Here is a PHP code snippet that should allow you to change the default cover image on member profiles:
add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'gwangi_change_default_member_cover', 20, 1 ); if ( !function_exists('gwangi_change_default_member_cover' ) ) { function gwangi_change_default_member_cover( $settings = array() ) { $settings['default_cover'] = 'your_image_url'; return $settings; } }
Don’t forget to change
'your_image_url'
by your own image url in the snippet. And please keep the opening and closing single quotation marks!If you need to find out how to add a PHP code snippet to your site, we recommend that you visit this article of our documentation:
Best regards,
February 25, 2019 at 12:30 #5511Des SomebodyParticipant@elsades- 15 Topics
- 41 Posts
Fantastic!
Many thanks. Where do I give you a 5-star rating?
February 25, 2019 at 13:04 #5514@themosaurus- 1 Topics
- 1675 Posts
Hi @elsades,
You’re welcome! ?
Feel free to review our theme on our Themeforest page:
https://themeforest.net/item/gwangi-dating-community-theme/21115855It very nice of you as this helps us making our products more known to new potential customers, which allow us more time to improve the quality over time and develop new features.
By doing this, you will be making a great contribution to our community, and we thank you very much for that! #SharingIsCaring
Best,
February 25, 2019 at 13:53 #5516 -
AuthorPosts
The topic ‘How to change the default Cover Image for new registrations’ is closed to new replies.