Forum Replies Created

Viewing 40 posts - 6,041 through 6,080 (of 20,101 total)
  • Author
  • in reply to: Profile #168221
     Radu
    Moderator

    Hi,

    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
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: problem with search on the front page #168219
     Radu
    Moderator

    Great

    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 solution
    in reply to: ADD button is not working. #168218
     Radu
    Moderator

    Hi,

    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 CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( '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 solution
    in reply to: How can i force the translation? #168217
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Facebook registration data #168211
     Radu
    Moderator

    Hi,

    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 solution
     Radu
    Moderator
    Not marked as solution
    in reply to: show a message in register page after a redirection #168206
     Radu
    Moderator

    You’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
    in reply to: Restricting Viewing of Messages by Membership level #168205
     Radu
    Moderator

    hi

    Use the next function to remove completely messages tab if the user doesn’t have any membership package.

    COPY CODE
    
    function 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 CODE
    
    function 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 solution
    in reply to: BP tabs #168204
     Radu
    Moderator

    Hi,

    Try to use the

    bp_init hook instead the bp_setup_nav

    COPY CODE
    
    function 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 solution
    in reply to: BUDDYPRESS ACTIVITY REPLY TEXT BUTTON #168202
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: add member type class in member dyrectory #168097
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Profile #168096
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Additional facebook login button #168095
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: ADD button is not working. #168093
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Product Images All One Size #168092
     Radu
    Moderator
    Not marked as solution
    in reply to: Adding button to member masonry #168090
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Urgent issue regarding registration page #168089
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Adding message button in members loop #168086
     Radu
    Moderator

    Hi,

    Please add those codes to function.php child theme but get rid off all codes related to this modification.

    COPY CODE
    
    
    function 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 solution
    in reply to: problem with search on the front page #168080
     Radu
    Moderator

    Hi,

    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 solution
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Facebook login on mobile not working #168077
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Why user can’t publish nothing? #168075
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    Use this to hide that text completely

    COPY CODE
    
    #buddypress div#item-header div#latest-update {display:none !important;}
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Album upload completion a bit ugly… #168073
     Radu
    Moderator

    Hi,

    Ok

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Import Go Pricing data #168069
     Radu
    Moderator

    Hi,

    See the attached

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: CONTACT FORM 7 REDIRECT #168068
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Tiny issue with tickbox #168067
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Child theme layout #168066
     Radu
    Moderator

    Hi,

    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 solution
     Radu
    Moderator

    Hi,

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

    2. 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 CODE
    
    
    add_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 solution
    in reply to: sidebar header profile type #167965
     Radu
    Moderator

    Hi,

    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
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: New Paid Membership Level not creating profile #167964
     Radu
    Moderator

    Hi,

    Please let me know if you encounter the same issue, using default wp theme, if yes you can ask the pmpro support.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Performance issues due to excluded expiry dates #167963
     Radu
    Moderator

    Hi,

    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.

    https://seventhqueen.com/blog/code-snippets/the-definitive-wordpress-speed-guide-step-by-step-easy.html

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Urgent issue regarding registration page #167962
     Radu
    Moderator

    Hi,

    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 solution
    in reply to: Ajax Search Issue #167949
     Radu
    Moderator

    Hi,

    Fixed, please check and let me know

    I’ve added this function to the child theme to fix that

    COPY CODE
    
    add_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 solution
    in reply to: How can i force the translation? #167941
     Radu
    Moderator

    Ok

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Updates #167940
     Radu
    Moderator

    Great
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Product Images All One Size #167939
     Radu
    Moderator
    Not marked as solution
    in reply to: problem with search on the front page #167937
     Radu
    Moderator

    Hi,

    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
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Share with friends #167935
     Radu
    Moderator

    Hi,

    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/#description

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Script override for just a specific page? #167934
     Radu
    Moderator

    You’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
Viewing 40 posts - 6,041 through 6,080 (of 20,101 total)

Log in with your credentials

Forgot your details?