Forum Replies Created

Viewing 40 posts - 4,001 through 4,040 (of 20,101 total)
  • Author
  • in reply to: Can’t get into dashboard #188134
     Radu
    Moderator
    Not marked as solution
    in reply to: Another Embeds problem #188133
     Radu
    Moderator

    Hi,

    Just add this css in wp-admin -> theme options -> general options -> quick CSS.

    COPY CODE
    
    #buddypress #activity-stream p iframe[src*='vpinball.com'] {
        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: installation fails #188132
     Radu
    Moderator

    Hi,

    Just let me know what action you had made exactly and after that activate wp_debug log and repeat that action then provide to me the debug.log file

    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 to change tipography (font) #188129
     Radu
    Moderator
    Not marked as solution
    in reply to: Adding post to menu, page turns grey #188128
     Radu
    Moderator

    Hi,

    Expand that button “Ashley in the media” to can see what style it haves

    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: auto expand side menu items #188127
     Radu
    Moderator

    Hi,

    Look at this video : https://drive.google.com/file/d/1ugEn2AJ8-VMx1bupvl0bTVDlHeEaZtfo/view

    I think i cannot reproduce what you say since if i access the child of a parent item it’s expanded from child to parent, if there under submenu it’s another submenu this will not be expanded but only if you access latest level depth.

    Did you have any live url to can check how it behaves on 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: Page after registration #188124
     Radu
    Moderator

    Work for me just i’ve tested

    COPY CODE
    
    add_action( 'wp_logout', 'SQ7R_logout_redirect');
    function SQ7R_logout_redirect(){
        wp_redirect(site_url( '/welcome/' ));
        exit();
    }
    

    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: expand height of the input box in activity #188123
     Radu
    Moderator

    Hi,
    I think we have changed that in the past, but if you need a animation like that use the next CSS

    COPY CODE
    
    #buddypress form#whats-new-form #whats-new-content {
        max-height: 74px!important;
         -webkit-transition: max-height 1s; 
      -moz-transition: max-height 1s; 
      -ms-transition: max-height 1s; 
      -o-transition: max-height 1s; 
      transition: max-height 1s;  
    }
    #buddypress form#whats-new-form #whats-new-content.active {
     -webkit-transition: max-height 1s; 
      -moz-transition: max-height 1s; 
      -ms-transition: max-height 1s; 
      -o-transition: max-height 1s; 
      transition: max-height 1s;  
      overflow: hidden;
      max-height: 274px !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: WooCommerce checkout styling issue Mobile #188061
     Radu
    Moderator
    Not marked as solution
    in reply to: Can’t get into dashboard #188059
     Radu
    Moderator
    Not marked as solution
    in reply to: Dutch Translation #188057
     Radu
    Moderator

    Hi,

    Just add them into one archive and then i will ask the core developer if they can be included in next theme update and i will let you 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: Profile Page #188056
     Radu
    Moderator

    Hi,

    The buddypress standard profile url it’s https://abiriba.com/members/ukayo18/profile/ that’s the default url structure for buddypress.

    The /profile seems to be a simple page that contains that shortcode [wpum_profile], maybe it was used by some plugin or something.

    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 post to menu, page turns grey #188054
     Radu
    Moderator

    Hi,

    Tell me how can i reproduce that button style on my local install please

    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: Google reCaptcha to “Sign Up” form #188053
     Radu
    Moderator

    Hi,

    Maybe in the /register page because the data that user enters will be forwarded to the register page and after this user effectively registers and in that page can be used captcha.

    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: Page after registration #188052
     Radu
    Moderator

    Want to redirect in a certain place after logout ?

    If yes the function will have to be added in wp-content/themes/kleo-child/functions.php and also the child theme should be enabled.

    Replace my-page with your page slug

    COPY CODE
    
    
    function SQ7R_logout_redirect(){
      wp_redirect( home_url('/my-page/') );
      exit();
    }
    add_action('wp_logout','SQ7R_logout_redirect');
    

    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: auto expand side menu items #188051
     Radu
    Moderator

    Hi,

    Tried without that css now and it’s expanded like in screenshot. I’m using latest KLEO version.

    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,

    Done, have a nice week
    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: log in page #188038
     Radu
    Moderator
    Not marked as solution
    in reply to: 3 New building Issues #188034
     Radu
    Moderator
    Not marked as solution
    in reply to: Page after registration #188032
     Radu
    Moderator

    Hi,

    The solution it’s corrent if i test on mine it works after i register from register page i’m redirected but on you when you sign-up always you are redirected to the homepage not sure why, tried to take again a look to wp-admin and the credentials not woks.

    Maybe there will be needed to do turn off plugins and maybe to change the homepage if it’s needed temporary just to test.

    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: Kleo removes square brackets from activity updates #188028
     Radu
    Moderator

    Hi,

    No problem

    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,

    If the avatars from members cannot be increased use the next solution

    Please go to wp-content/themes/sweetdate-child/buddypress/members/ then create a file named members-loop.php in that you will paste the next : https://pastebin.com/raw/A8xGxhMw

    You can change the avatar size from this file, see screenshot.

    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,

    You’re welcome

    Sorry but i don’t understand what you want to say in your latest reply.

    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: Private chat #188016
     Radu
    Moderator

    Hi,

    Our theme follows the buddypress workflow and buddypress doesn’t have this feature implemented also there is no quick solution for that.

    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: Page after registration #188000
     Radu
    Moderator

    Hi,

    Please provide FTP credentials in a private to ca do that for you, but before that install the child theme and activate it

    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: Logo Not redirecting #187986
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    Normally yes, they are buddypress constants, and will define globally values, tell me where you cannot see the avatars increased ?

    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,

    Seems that some color customization makes tthat to look to “not works” the issue was the dot color

    COPY CODE
    
    span.high-bg.kleo-online-status {
        background: #31bd52 !important;
        border: 1px solid #fff !important;
    }
    

    Use this css to make to look like in screenshot

    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: Page after registration #187975
     Radu
    Moderator

    Create the missing folders

    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: Another Embeds problem #187974
     Radu
    Moderator

    Hi,

    Can you please provide to me permalink to that activity please ? to can take a look ?

    And maybe a dummy account to can see if if the community it’s closed.

    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: Private chat #187973
     Radu
    Moderator

    Hi,

    Cannot understand exactly your scenario and what’s the issue can you show to be a screenshot that points out the issue and also explain in detail where the problem is.

    The issue happens also on our demo ?

    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: 3 New building Issues #187972
     Radu
    Moderator
    Not marked as solution
    in reply to: Kleo removes square brackets from activity updates #187971
     Radu
    Moderator

    Hi,

    Many users wants to not run the short codes there, so it’s if if you had find a solution.

    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

    That means that has nothing to do with our product, the issue may comes from any snippet added in bp-custom.php file or by some plugin.

    Try to revert the members slug to the original one to see if it works as it should.

    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: Logo Not redirecting #187969
     Radu
    Moderator
    Not marked as solution
    in reply to: facebook plugin not working from mobile #187968
     Radu
    Moderator

    Hi,

    We have updated things related to facebook login, can you check on our demo if still happens that ?

    https://seventhqueen.com/themes/kleo/members/

    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: Remove lines next to menu #187966
     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: Page after registration #187961
     Radu
    Moderator

    Hi,

    I see in this case you will have to overwrite the register page

    Go to wp-content/themes/kleo-child/buddypress/members/ create file named register.php in that you will paste this : https://pastebin.com/raw/3aHxsXs0

    In the market area you will have to add your page slug where to be redirected.

    NOTE: 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: Can no longer find Icon options in Menu #187956
     Radu
    Moderator

    Hi,

    Great if you have solved the issue with the icons, also the live notifications icon can be changed from wp-admin -> appearanece -> menus top menu and look for live notifications menu item.

    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: how to change tipography (font) #187867
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 4,001 through 4,040 (of 20,101 total)

Log in with your credentials

Forgot your details?