Forum Replies Created

Viewing 40 posts - 11,121 through 11,160 (of 20,101 total)
  • Author
  • in reply to: Woocommerce Color Variation #134174
     Radu
    Moderator
    Not marked as solution
    in reply to: Submit button on forums all the way to right #134173
     Radu
    Moderator

    Hi,

    On my computer is that button aligned to the left..

    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: uploading the theme #134172
     Radu
    Moderator
    Not marked as solution
    in reply to: Custom breadcrumbs title content #134171
     Radu
    Moderator

    Hi,

    Use the css method instead

    COPY CODE
    
    
    .single-post .kleo_framework.breadcrumb span[rel="v:child"] a {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: Create new form #134021
     Radu
    Moderator

    The method it works and it’s tested you should follow the exact steps, another method can be to copy this file : /wp-content/themes/sweetdate/header.php to /wp-content/themes/sweetdate-child/ then open the header.php from child theme look at line 130 ( 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
    in reply to: Help #134018
     Radu
    Moderator

    🙂

    Have a nice weekend!

    God bless you to!

    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: Submit button on forums all the way to right #134017
     Radu
    Moderator

    https://drive.google.com/file/d/0Bxo5b6iHWRMwNVZ6QzczMGdfWkE/view

    So.. cache issue … see the submit button on the left

    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: Create new form #134014
     Radu
    Moderator

    Now it’s ok with the member profile was caused by what i give you to add to functions you should use an alternative solution to change the PROFILE from header so please read the next instructions.

    Theme strings and plugins strings can easily be changed by using Loco Translate plugin https://wordpress.org/plugins/loco-translate/

    A small introduction on how translations work

    Translatable strings can come from the theme or from the installed plugins. You need to translate the theme or the plugin depending on what section of the site your string is found.

    For example if your string is on your BuddyPress profile then most probably you will need to translate BuddyPress plugin. If you are on the Forums section of your site then bbPress plugin should be the one that needs to be translated. Another example is the rtMedia plugin that adds the Media links to BuddyPress and if you want to translate it then this plugin will contain the string.

    Follow these steps to get you started:

    • Install Loco Translate plugin
    • Go to the plugin dashboard: WP Admin – Tools – Manage translations
    • Find the theme or plugin in the list.
    • If the language isn’t already in the list then click Add new language, choose your language and if you are asked where you want to save the language files choose global language directory ( wp-content/languages/ ).
    • Press SYNC button to synchronise your translation with the provided .pot file
    • Search for the string you want to translate and add your translated string.
    • Press Save when you finished your translation.

    Note: You will have to set the language for your blog from WP-admin – Settings – General – Site Language – Choose your language

    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: uploading the theme #134013
     Radu
    Moderator
    Not marked as solution
    in reply to: Hide group update from Activity Stream #134012
     Radu
    Moderator
    Not marked as solution
    in reply to: Help #134009
     Radu
    Moderator

    Hi I saw that but as you can see there it’s a spacing top and bottom… and the single way it’s to remove padding from top and bottom with this CSS

    COPY CODE
    
    body.is-user-profile .bp-full-width-profile div#item-header {
        padding: 10px;
    }
    

    Play with 10px value

    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: Submit button on forums all the way to right #134008
     Radu
    Moderator

    credentials are not correct

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

    Ok thank you for your feedback and details

    We will have this already on the improvement list and we will let you know when we implement 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: How to increase menu depth #134006
     Radu
    Moderator

    Hi,

    There it’s already to 3 levels

    Home
    -Home
    –Home

    WE don’t’ have a quick solution for 4 level depth ,you can increase the menu depth but is not sufficient it should be made a full CSS for level 4 menu, so you will have to do it yourself , the responsible file for increasing depth is /wp-content/themes/kleo/page-parts/general-header-section.php

    $primary_menu = wp_nav_menu( array(
    ‘theme_location’ => ‘primary’,
    ‘depth’ => 3,
    ‘container’ => ‘div’,
    ‘container_class’ => ‘collapse navbar-collapse nav-collapse’,
    ‘menu_class’ => ‘nav navbar-nav’,
    //’fallback_cb’ => ‘kleo_walker_nav_menu::fallback’,
    ‘fallback_cb’ => ”,
    ‘walker’ => new kleo_walker_nav_menu(),
    ‘echo’ => false
    )
    );

    At line 33 or around look for depth and change from 3 to 4, copy this file to child to have it after theme update also you will write your own css for the level 4 or hire a developer.

    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 should go to themeforest download section and in the row with the Kleo theme you should see an checkbox that it refers to new updates and emails you should check 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: Custom breadcrumbs title content #134004
     Radu
    Moderator

    Hi,

    the condition if single will goes like this

    COPY CODE
    
    function kleo_breadcrumb( $args = array() ) {
        if(is_single()) {
            return WPSEO_Breadcrumbs::breadcrumb('<div class="kleo_framework breadcrumb">', $after, '</div>');
        }
    }
    

    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: Member page template full width #134002
     Radu
    Moderator

    Hi,

    You can add content before members directory using this function

    COPY CODE
    
    
    function add_content_before_members_directory() {
    
        echo '<h1>Test</h1>';
    
    }
    
    add_action('bp_before_directory_members_page','add_content_before_members_directory');
    

    Instead of ‘

    Test

    ‘; add your content….

    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: Comment view/write at once?? #134001
     Radu
    Moderator
    Not marked as solution
    in reply to: Item Navigation Issue #133999
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    #buddypress div#item-nav ul li a {
        font-size: 13px !important;
    }
    

    Play with font size value

    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: Demo Install #133997
     Radu
    Moderator

    Hi,

    You should enable full width profile from wp-admin -> theme options -> BuddyPress -> Member Profile Layout -> fullwidth and in same tab scroll down and look for Enable Full width Profile Header set to be ON

    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: dyanmic.css doesn’t always load: 404 Error #133996
     Radu
    Moderator
    Not marked as solution
    in reply to: error 500 jquery #133994
     Radu
    Moderator

    Great

    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
     Radu
    Moderator
    Not marked as solution
    in reply to: creating a BIG membership site (30K members) #133992
     Radu
    Moderator
    Not marked as solution
    in reply to: uploading the theme #133990
     Radu
    Moderator
    I think you have checked mega menu for that, so go to wp-admin -> appearance -> menus and look for about expand menu item and uncheck megamenu let me know
    in reply to: Change layout for the members page #133989
     Radu
    Moderator

    Hi,

    The responsible file for member search and member directory it’s : /wp-content/themes/kleo/BuddyPress/members/index.php you should copy this file in child theme to can be updated proof in this path /wp-content/themes/kleo-child/buddypress/members/ and if you read the php file you will see what the loop stars it loads this template : which it’s located here : /wp-content/themes/kleo/buddypress/members/members-loop.php i recommend you the same to copy this file in child theme keeping same folder structure.

    Inside members-loop.php you will see “> try to change the avatar function with yours tweaked…

    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 Color Variation #133987
     Radu
    Moderator
    Not marked as solution
    in reply to: Issue with Activity Post #133986
     Radu
    Moderator
    Not marked as solution
    in reply to: Banner #133985
     Radu
    Moderator

    Hi,

    Use that function to add banned before content and for the after content use this

    COPY CODE
    
    function ads_after_content() {
    
        echo '
        <div style="width:728px;height:90px;background-color:red;display:block;margin:0 auto;">
        728 AD
        </div>
        ';
    
    }
    add_action ('kleo_after_main', 'ads_before_content');
    

    these functions should be applied also on the forum pages,

    For the middle of the content we don’t have yet a quick 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
    in reply to: top menu #133984
     Radu
    Moderator

    Hi, scroll bar can be removed by rewriting the max-height rule

    COPY CODE
    
    .basic-menu>.has-submenu>.submenu {
        max-height: inherit;
    }
    

    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: Create new form #133980
     Radu
    Moderator

    I don’t see your child theme installed and activated, please look for child theme in the package that you have downloaded from theme forest install it and activate it.

    Regarding the MailChimp problem, that it’s caused by one of those plugins :

    WP Blog and Widgets Pro

    WP Email Template LITE

    WP Stylist Post and Widgets Pro

    Now the plugins are de-activated, activate plugins back one by one to identify what causes 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: Multiple “Sidebars” in 1 “Sidebar”/Column #133976
     Radu
    Moderator
    Not marked as solution
    in reply to: MENU Repeated Twice #133973
     Radu
    Moderator

    Ok,

    Please de-activate all plugins except BuddyPress and check again you still see the double menu ? try also to de-activate child theme ! and check again, if the double menu it’s shown provide admin credentials to check but do my advice first

    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: Submit button on forums all the way to right #133972
     Radu
    Moderator

    Ok, provide admin credentials, please

    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: Essential Grid questions #133971
     Radu
    Moderator

    Hi,

    For improving the page speed you can use a cache plugin like w3 total cache then read this guide : http://seventhqueen.com/blog/code-snippets/the-definitive-wordpress-speed-guide-step-by-step-easy.html another plugin but more simple its Wp Super Cache : https://wordpress.org/plugins/wp-super-cache/, for the sorting thing I recommend you to read and search for dedicated guidance for that plugin in their documentation : https://www.themepunch.com/essgrid-doc/essential-grid-documentation/

    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 Post Carouse Issue #133969
     Radu
    Moderator
    Not marked as solution
    in reply to: CPT #133968
     Radu
    Moderator
    Not marked as solution
    in reply to: bbpress #133964
     Radu
    Moderator

    Sorry I mean bbpress not BuddyPress, de-activating rest of the plugins excluding BBPRESS we can see if the problem it’s caused by some conflict between plugins.

    You can provide credentials to check if you haven\t solved but I will de-activate child theme and some plugins to test

    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: Login not working #133963
     Radu
    Moderator
    Not marked as solution
    in reply to: Help #133962
     Radu
    Moderator

    Hi,

    You’re very welcome!

    I cannot view your website it’s displaying the maintenance page, are you sure the sizes are not altered by the opened console ?

    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 - 11,121 through 11,160 (of 20,101 total)

Log in with your credentials

Forgot your details?