Forum Replies Created

Viewing 40 posts - 16,681 through 16,720 (of 20,101 total)
  • Author
  • in reply to: user blogs #98033
     Radu
    Moderator

    Hi,

    You can try this plugin : https://wordpress.org/plugins/social-articles/

    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: Footer Menu #98032
     Radu
    Moderator

    Hi,

    Please replace the css that i provided you in previews reply with this

    COPY CODE
    
    .kleo-extra-footer-menu ul li {
        display: inline-block;
    }
    
    .kleo-extra-footer-menu ul {
        text-align: center;
    }
    

    Then add this snippet to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    
    
    function kleo_extra_footer_menu_register() {
        register_nav_menu('extra-footer-menu', 'Extra Footer Menu');
    }
    add_action( 'init', 'kleo_extra_footer_menu_register' );
    function kleo_extra_footer_menu($output, $option){
        if( !is_admin() && $option == 'footer_text' ){
            ob_start();
            wp_nav_menu( array( 'theme_location' => 'extra-footer-menu', 'container_class' => 'kleo-extra-footer-menu' ) );
            $menu = ob_get_clean();
            return $menu . $output;
        }
        return $output;
    }
    add_filter('sq_option', 'kleo_extra_footer_menu', 10, 2);
    
    

    Then go to wp-admin -> appearance -> menus -> select your footer menu and check the new location named Extra Footer Menu

    Let me know if is ok

    Cheers

    Radu

    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: User Avatars & Functionality Broken #98022
     Radu
    Moderator

    Hi,

    Strangem i cannot figure out what causing this, i’ve changed the theme to default wp theme and it makes the same, i suggest you to disable all custom modifications like child theme, and all plugins excluding buddypress and tet after and let me know.

    Cheers

    Radu

    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 font families to standard fonts list #98021
     Radu
    Moderator

    Hi,

    You can load manually the font that you want read here : https://archived.seventhqueen.com/forums/topic/how-can-register-japanese-font/#post-94592

    Cheers

    Radu

    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: Center logo & registration box #98017
     Radu
    Moderator

    Hi,

    Replace the code that i have prodived with this

    COPY CODE
    
    body.home form .row .three.mobile-one.columns {
        width: 42%;
    }
    
    body.home form .row .five.mobile-one.columns label {
        text-align: center !important;
    }
    
    body.home .five.columns {
        margin: 0 auto !important;
        float: none;
        padding: 0 !important;
    }
    
    body.home form .five.mobile-four.columns {
        float: left;
    }
    

    Let me know

    Cheers

    Radu

    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: Missing links and blurry images #98003
     Radu
    Moderator

    Hi,

    Please replace this file : wp-content/themes/sweetdate/custom_buddypress/bp-functions.php with the attached file.

    Unzip it first.

    Cheers

    Radu

    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: Activity in english #97990
     Radu
    Moderator

    Hi,

    I see, it seems that the problem to be caused by the buddypress multilingual i think… i saw that
    when you are in english version the ajax is loaded via this url : http://stagecircle.com/en/wp-admin/admin-ajax.php?lang=en&bpml_filter=true which is returning 500 error while the german language load ajax from this url http://stagecircle.com/wp-admin/admin-ajax.php?lang=de&bpml_filter=true which is ok.

    Cheers

    Radu

    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: Visual composter Issue #97979
     Radu
    Moderator

    Hi,

    Unable to connect, you are able to connect with these ftp login details ?

    Regarding to this

    I use buddypress Version 2.4.3, BBpress Version 2.5.8 and wordpress version Version 4.4.1 on wordpress multisite.

    Buddypress and BBpress are not network activate. I can not find buddypress admin menu neither on site admin nor in network admin.

    Please open a ticket on wordpress or buddypress forums.

    Cheers

    Radu

    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: Disabling search bar in top heading menu section #97850
     Radu
    Moderator

    Hi,

    You can easily hide the search from header with this CSS

    COPY CODE
    
    
    .second-menu-header form#searchform {
        display: none !important;
    }
    
    

    Regarding the issue with colors we will investigate this and tomorrow we will get back to you.

    Cheers

    Radu

    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: email SMTP error message #97848
     Radu
    Moderator

    Ok

    Let me know

    Cheers

    RAdu

    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: Activity in english #97847
     Radu
    Moderator

    Hi,

    Can you please provide admin credentials to take a look into this ?

    Cheers

    Radu

    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: Missing links and blurry images #97846
     Radu
    Moderator

    Hi,

    Sorry for the late reply can you please provide link to the members page ?

    And if the page are protected only for logged users please provide some credentials to can view the page.

    Cheers

    Radu

    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: deleting line in searchbox #97839
     Radu
    Moderator

    Hi,

    Go to wp-admin -> theme options -> buddypress -> Search form customization -> MAIN FORM -> Text before form

    Cheers

    Radu

    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 Registration Email #97837
     Radu
    Moderator

    No,

    Please set up that plugin with correct details if you don;t know exactly what are the smtp server or similar details call you hosting provider.

    Cheers

    RAdu

    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: Online numbering status not functioning #97834
     Radu
    Moderator

    Hi,

    Go to your homepage in language that the fields not works and go to edit that page and in visual area then ( see screenshots )

    You need to complete exact field name and values (case sensitive)

    After you setup the fields just replace the fields that not works

    Cheers

    Radu

    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 menu in sidebar #97832
     Radu
    Moderator

    Hi,

    The changes you require are not quick fixes or something that can be styled from the theme panel since it is too complex and will require modifications in the theme structure. Custom development is not covered by our support forum, so you may ask for a programmer to help, or you can check the availability of our development team by sending an email to our project manager Cornel at
    cornel@seventhqueen.com

    Cheers

    Radu

    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: City field – autocomplete not working #97831
     Radu
    Moderator

    Hi,

    You should create an account here http://geonames.org there you should complete in wp-admin -> theme options -> buddypress -> after you set city autocomplete on Geonames username field will appear and here you will need to paste your username.

    Geonames username : This field is required for the service to work. Get one from geonames.org and enable the free service from your account

    Cheers

    Radu

    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 update messed some of page #97828
     Radu
    Moderator

    Hi,

    I don’t know how your site was looks before update, but i think the problem is with spaces, i suggest you to add to first row padding bottom 30, 40 px and for the second row add padding top 20,30 or 30 px

    Cheers

    Radu

    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: Portfolio content style #97826
     Radu
    Moderator

    Hi,

    There are demo for integration betweeen Kleo and Geo Directory plugin https://wordpress.org/plugins/geodirectory/ and it’s shown a listing page.

    Regarding the user portfolio the changes cannot be made without custom development.

    Cheers

    Radu

    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: Visual composter Issue #97824
     Radu
    Moderator

    Hi,

    Unable to connect, please specify Port and protocol.

    Cheers

    Radu

    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 Registration Email #97823
     Radu
    Moderator

    Hi,

    When you register to the site with facebook, kleo sends you an email like this by default

    New user registration on your site R***.COM:
    Username: *******n
    E-mail: ****@yahoo.com

    And also the mail is sent via WP default mail function : wp_mail

    I suggest you to install this plugin : https://wordpress.org/plugins/wp-mail-smtp/ and to configure it with required details.

    Cheers

    RAdu

    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: Few question related to theme layout #97819
     Radu
    Moderator

    Hi,

    If you are visiting your site on mobile, in that section you will be able to swipe the posts from there.

    Regarding the menu page there is no issue, this is how the theme it works by default as yo can see in demo behaviour is the same.

    Cheers

    Radu

    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: Registration/Login form on the front page #97806
     Radu
    Moderator

    Hi,

    These functionalities like login and register shortcode will be implemented in our next theme update KLEO 4.0 that will be released this month.

    Theme my login works with kleo.

    Cheers

    Radu

    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: Visual Editor i can add button properly TOP PRIARITY #97793
     Radu
    Moderator

    Hi,

    Please add this function to wp-content/themes/sweetdate/functions.php

    COPY CODE
    
    
    function patch_buttons_css(){
        echo "<style>\n";
        echo '
    
    div#TB_window  {
        max-height: 75% !important;
        overflow-y: hidden !important;
    }
      
       div#TB_ajaxContent {
        overflow-x: hidden !important;
    }
    
        ';
        echo "\n</style>";
    }
    add_action( 'admin_print_styles', 'patch_buttons_css' ,90);
    

    Then you will be able to scroll on that.

    Cheers

    Radu

    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: Display User Full Name #97785
     Radu
    Moderator

    Hi,

    Do you want to have this only in members directory or everywhere ?

    Cheers

    Radu

    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: Visual composter Issue #97782
     Radu
    Moderator

    Hi,

    I’m unable to login to ftp, but the function that i have provided you it works, anyway i’ve added priority ‘1’ parameter to the add_action function.

    COPY CODE
    
    // Redirect registration page
    function MyRedirect() {
        if(is_page('register')) {
            wp_redirect( 'http://cpachess.com/register/', 301 );
            exit;
        }
    }
    add_action('template_redirect','MyRedirect', '1');
    

    Please paste this code instead the old code and make sure that the Kleo Child is activated.

    Cheers

    Radu

    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: Revolutionary Slider #97776
     Radu
    Moderator

    Hi,

    All your imported sliders are shown here : http://prettyfaceaccessories.com/wp-admin/admin.php?page=revslider

    You can set a specific slider to a specific page from Revolution Slider visual component from visual composer ( see screenshot )

    Cheers

    Radu

    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,

    It takes to much time to format and cleanup the functions.php file, the reliable way is to call you hosting and ask them about a website backup before problem with the functions.php

    Cheers

    Radu

    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: registration email NOT sent #97766
     Radu
    Moderator

    Hi,

    The email server settings just see the screenshot from plugin : https://s.w.org/plugins/wp-mail-smtp/screenshot-1.png?r=1325826

    If you are not sure what are the settings call the hosting company, then will helps you .

    Cheers

    Radu

    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: User Avatars & Functionality Broken #97765
     Radu
    Moderator

    Hi,

    Can you please provide the server logs to can take a look ?

    Please activate wp_debug function https://codex.wordpress.org/Debugging_in_WordPress

    http://smallbusiness.chron.com/server-error-log-wordpress-blog-41147.html

    Cheers

    Radu

    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: Footer Menu #97755
     Radu
    Moderator

    Hi,

    Add custom menu widget from wp-admin -> appearance -> widgets -> footer column 1.

    choose your menu then add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    div#footer-sidebar-1 {
        width: 100% !important;
    }
    
    #footer .col-sm-3 {
        width: 100%;
        text-align:center;
    }
    
    #footer .col-sm-3 ul li {
        display: inline-block;
        text-align: center !important;
    }
    
    .footer-color .widget_nav_menu li:first-child > a {border-top: 0 !important;}
    

    Cheers

    Radu

    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: User Avatars & Functionality Broken #97380
     Radu
    Moderator

    Hi,

    At first sight i cannot figure out what causes these, i suggest you to disable sweetdate child, i see that you have made some custom modifications if by disabling the child theme i suggest you to disable all plugins that not comes with the theme to see if ony of that plugin causes this.

    Cheers

    Radu

    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: header section #97377
     Radu
    Moderator

    Add this function to wp-content/themes/sweetdate-child/functions.php

    COPY CODE
    
    
    function AddMemberStatsToTopBar() {
        echo '<span>All Members : '. do_shortcode('[kleo_total_members]'). '</span> ';
        echo '<span>Members Online : '. bp_get_online_users() .'</span>';
    }
    add_action('kleo_before_top_links','AddMemberStatsToTopBar');
    
    

    Cheers

    Radu

    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: Not showing deashboard data #97333
     Radu
    Moderator

    Hi,

    Can you please provide screenshot that pointing out the problem ?

    Cheers

    Radu

    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: User Avatars & Functionality Broken #97329
     Radu
    Moderator

    Hi,

    Do you have tried to re-save the permalinks ? wp-admin -> settings -> permalinks -> save

    If my advice is useless please provide admin credentials to take a look.

    Cheers

    Radu

    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: Footer Menu #97328
     Radu
    Moderator

    Hi,

    You can create a menu, then you can add menu Custom Menu widget to the Forum Column 1,2,3 or 4 the menu will be shown vertically.

    Cheers

    Radu

    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: header section #97317
     Radu
    Moderator

    Hi,

    Can you please provide a screenshot that pointing out where you want to display that shortcode ?

    Cheers

    Radu

    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: Activity page loading slowly #97316
     Radu
    Moderator

    Hi,

    Just i’ve tested this and on my local install it works fine, the posts are loaded normally if you scroll down new posts appears immediately, did you have installed and activate other plugins except those plugins that comes with Kleo ?

    If yes, please try to disable all additional plugins that you have installed, and if the activity posts appears properly enable plugins one by one to identify what plugin causes this.

    Let me know

    Cheers

    Radu

    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: Theme updates dont work #97311
     Radu
    Moderator

    Hi,

    You can update the theme without losing any data by uploading the theme files overwriting the existing theme files via FTP in this folder /wp-content/themes/kleo/

    You also read this : https://archived.seventhqueen.com/forums/topic/kleo-translation-update-proof

    Cheers

    Radu

    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: GEO my wp icon bug #97308
     Radu
    Moderator

    You’re welcome,

    Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂

    http://themeforest.net/downloads/

    Best regards

    Radu

    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 - 16,681 through 16,720 (of 20,101 total)

Log in with your credentials

Forgot your details?