Forum Replies Created
-
Author
-
Radu
ModeratorHi,
I see,
Please check the wise chat plugin settings in wp-admin -> settings -> Wise Chat Settings -> Appearance ->
Username Display Mode should be -> Link to the page
Username Link Template should be -> /members/{username} or http://portalapper.com.br/members/{username}
Let me know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorGreat
Have a nice weekend
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Do you have some addon installed for WooCommerce? Cuz on my local install while I’m using latest theme version + all plugins updated to latest versions including Woocommerce as well. I’m able to accept any friendship without any problem.
Try to leave activated ONLY BuddyPress and WooCommerce and give a try again, if you encounter the same enable wp_debug and do the same action again to see if it’s written something in debug related to this.
Also, you can try to re-install the WooCommerce.Follow these steps to enable wp debug:
- Connect to your server by FTP
- Look in root directory of your WordPress install and open wp-config.php
- Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
COPY CODEdefine( 'WP_DEBUG', true );- After this line add this:
COPY CODEdefine( 'WP_DEBUG_LOG', true );WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just write your text in both versions in this way
Example :COPY CODE[:en]English Text[:ro]RO Other language Text[:]In theme options you should have the text like this:

In wp globus theme options addon add those -> Options to translate:

IT will render like this

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
Using the next plugin: https://wordpress.org/plugins/bp-force-profile/, after you signup with Facebook, will be redirected to your profile until you complete the required fields, this should be what you are looking for
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
Moderatorhi
Use the next function to remove completely messages tab if the user doesn’t have any membership package.
COPY CODEfunction remove_buddypress_tabs_by_membership() { if( ! pmpro_has_membership_access()) { bp_core_remove_nav_item('messages'); } add_action( 'bp_init', 'remove_buddypress_tabs_by_membership', 999 );Or the next one to remove that only for a certain memebrship level in my example it’s with package id 1
COPY CODEfunction remove_buddypress_tabs_by_membership() { if(pmpro_hasMembershipLevel('1')) { bp_core_remove_nav_item('messages'); } } add_action( 'bp_init', 'remove_buddypress_tabs_by_membership', 999 );Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try to use the
bp_init hook instead the bp_setup_nav
COPY CODEfunction my_change_profile_tab_order() { global $bp; $bp->bp_nav['profile']['position'] = 10; $bp->bp_nav['media']['position'] = 20; $bp->bp_nav['messages']['position'] = 30; $bp->bp_nav['forums']['position'] = 40; $bp->bp_nav['articles']['position'] = 50; $bp->bp_nav['friends']['position'] = 60; $bp->bp_nav['settings']['position'] = 70; } add_action( 'bp_init', 'my_change_profile_tab_order', 999 );Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve noticed that it’s very ODD, can you please provide FTP credentials to can take a closer look?
Cuz I cannot figure out what’s going on there.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You’re welcome.
Please leave a review + 5* on themeforest theme page please if you want
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You are able to reproduce that on the demo ?
Do you have the latest version of WordPress ? If not update those
Do you have the latest version of BuddyApp theme ? If not update those
Do you have the latest version of plugins installed ? If not update those
If you de-activate all plugins it works ? if yes enable back plugins one by one to identify what causes this.
If you de-activate the child theme it works ?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just paste this code into VC using Raw HTML element
COPY CODE<div class="custom-button-location kleo-fb-wrapper text-center"> <a href="#" class="kleo-facebook-connect btn btn-default "><i class="icon-facebook"></i> Log in with Facebook</a> </div>Then you can customize only this with the next CSS that will be added to wp-admin -> theme options -> general options -> quick CSS
COPY CODE.custom-button-location.kleo-fb-wrapper.text-center a { font-size: 15px; padding: 20px; }Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just I’ve de-activated all plugins then I’ve accepted the friend request and I was able !!!
So, deactivate plugins one by one and check again to accept friend.

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can take a look here: https://archived.seventhqueen.com/forums/topic/add-member-type-class-in-member-dyrectory#post-167832
It’s something similar that allows you to target specific CSS for certain member types.
Can you please provide an example shop of a certain user? The shop URL exists on some BuddyPress profile field to can pull that in members directory? Also, you can ask the WC vendors about a function that generates the shop URL by member id.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I see I’ve noticed another thing (see screenshot)

For the registration problem, I’ve noticed that using default wp theme, it’s the same behavior like in buddyapp, most sure that can be caused by the fields, try to remove required for all those fields from wp-admin -> users -> profile fields.
So since this is happening also on default wp theme it means that isn’t caused by the BuddyAPP theme
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please add those codes to function.php child theme but get rid off all codes related to this modification.
COPY CODEfunction filter_message_button_link( $link ) { $link = wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r='. bp_core_get_username( bp_get_member_user_id() ) ); return $link; } function display_private_message_button() { if( bp_get_member_user_id() != bp_loggedin_user_id() ) { //bp_send_message_button(); ?> <div id="send-private-message" class="generic-button"> <div class="private-message-button generic-button" ><a href="<?php echo filter_message_button_link(); ?>" class="button small secondary radius" rel="add"><i class="icon-envelope"></i></a></div> </div> <?php add_filter('bp_get_send_private_message_link', 'filter_message_button_link', 1, 1 ); } } add_action( 'bp_directory_members_item_last', 'display_private_message_button',9999 );Then replace this file content: /wp-content/plugins/buddypress/bp-themes/bp-default/_inc/ajax.php with this one: https://pastebin.com/raw/XjsaY26E
This will overwrite a BuddyPress core file, since the ajax, it returns the "Add friend" text dynamically this it's the single option, you can ask the BuddyPress forums about how to overwrite the ajax.php file in child theme
So those will be displayed like this :

That's all
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
I see I’ve changed the next option in the option and the default sweetdate search form works as it should

The range function it’s available only for the age field.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 20, 2017 at 17:20 in reply to: How to limit the number of Activity entries on Profile pages #168079Radu
ModeratorHi,
Ok if you have solved, if you have any other questions let me know\
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Take a look: https://drive.google.com/file/d/0Bxo5b6iHWRMwdUtOYmI0VzctYTA/view
I was able to log in log out multiple times,
Also, i’m able to to that using directly iPhone.
Please make a video to can see what should I do to see the issue that you encounter.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Use this to hide that text completely
COPY CODE#buddypress div#item-header div#latest-update {display:none !important;}Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Ok
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
See the attached
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionAttachments:
You must be logged in to view attached files.Radu
ModeratorHi,
That’s ODD, I don’t know what advice to give you at this moment, provide admin credentials.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I haven’t told you to put there a notice, just I’ve explained what’s going on there if you think this it’s a usability issue, I will add that to improvement list and in future, we will get back to you.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’m not able to login to your dashboard if the problem happens only when you activate the child theme it means one or more of you modifications can cause that.
If you have made recent changes in the child theme to revert those to see if it’s caused by that, if you just rename the functions.php file from child theme ( wp-content/themes/buddyapp-child/ to functiona.php.temp ) if you have other .php files besides the functions.php file do the same with those until you will find the file that causes that. if it’s the function.php file upload somewhere the file to can take a look at that.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionJuly 19, 2017 at 20:03 in reply to: Homepage Link Changes Wanted to Form Submit Button & JOIN Top Button. Need link to Custom Page Instead! #167970Radu
ModeratorHi,
1. You will need to have child theme installed and active to can overwrite the original theme files even if you update !
The sign-up button will be link to a membership levels page using the next file.
Go to wp-content/themes/sweetdate-child/ and create a new file named header.php in that you will paste the next content https://pastebin.com/raw/xTmwU19A2. You can desesign a new slider using revlolution slider from wp-admin -> revolution slider -> new slider.
the divi builder maybe will work, but there it’s slider area.
3. The theme settings from parent and child are separated, example : if you have child theme activated and you have made your theme adjustments using the child theme, when you activate the parent theme the theme options remains in child theme to can have that in both variants you should import from child theme to parent theme the theme settings that can be imported/exported from wp-admin -> theme options -> import/export.
For the pmpro issue that not shows the credit card information, you will have to copy the checkout.php file from paid memberships pro folder ( /wp-content/plugins/paid-memberships-pro/pages/checkout.php )
to : /wp-content/themes/sweetdate-child/paid-memberships-pro/pages/
In this way the default pmpro checkout form wiill be displayed.
The membership levels page it’s a normal page that can be found under wp-admin -> pages -> memebrship levels and it contains [membership_levels] shortcode to generate those.
For the redirection after paypal payment this isn’t modified by the kleo theme, you can ask the pmpro support about a snippet that controls that.
For the users that already signed up free, you can use this snippet to detect logged in users but not paying and to be redirected and locked to memebrship levels page until they pay.
COPY CODEadd_action( 'template_redirect', 'my_membersip_restrict' ); function my_membersip_restrict() { global $pmpro_pages, $post; if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) { if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) { wp_redirect( pmpro_url() ); } } }The snippet will be pasted in wp-content/themes/sweetdate-child/functions.php
NOTE : The Kleo Child Theme needs to be installed and activated.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Using that code the member type it’s displayed like this :

So the snippet works.
What recent changes had you made recently?
Make sure to have child theme activated, try to paste again instead the old one
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please let me know if you encounter the same issue, using default wp theme, if yes you can ask the pmpro support.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
From my personal experience, the expire date for the resources, in general, can be set from the htaccess not from the theme.
Take a look here: https://gtmetrix.com/add-expires-headers.html
and here: https://stackoverflow.com/questions/2676744/set-http-caching-expiration-recommended-by-google-pagespeed
Using the P3 profiler plugin https://wordpress.org/plugins/p3-profiler/ and run it to can see what it’s the heavy process on your server that causes the high CPU/MEMORY usage.Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I cannot reproduce that in my local install, to can find out what causes that, please de-activate the child theme then de-activate all plugins except BuddyPress and check again.
Also, I’ve noticed that you are using google pagespeed, try also to de-activate that while debugging.
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Fixed, please check and let me know
I’ve added this function to the child theme to fix that
COPY CODEadd_filter( 'pre_get_posts', 'tgm_io_cpt_search' ); function tgm_io_cpt_search( $query ) { if ( $query->is_search && $_GET['post_type'] ) { //print_r($_GET['post_type']); if(is_array($_GET['post_type'])) { $post_type = explode(',', $_GET['post_type'][0]); } else { $post_type = $_GET['post_type']; } $query->set( 'post_type', $post_type ); } return $query; }This will be included in next theme update, so you can delete this after the next updates.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorGreat
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
How the sweetdate specific search form it’s displayed, you will have to delete the shortcode, see below.

Just edit the homepage and delete the red marked shortcode

Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
For the 404 page try to resave permalinks from wp-admin -> settings -> permalinks -> save changes, if it’s the same de-activate child theme and rest of the plugins except buddypress and rt media, also make sure to have all things updated ( WordPress,buddypress,sweetdate theme and all other plugins. )
According to the plugin description, it’s able to share rtMedia updates (medias)
https://wordpress.org/plugins/bp-activity-share/#descriptionCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts

