Forum Replies Created

Viewing 40 posts - 2,001 through 2,040 (of 2,990 total)
  • Author
  • in reply to: brand page wrong page layout #116228
     Radu
    Moderator

    Hi,

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

    COPY CODE
    .tax-product_brand .woocommerce ul.products li.product, .tax-product_brand .woocommerce-page ul.products li.product {width:25%;clear: right; display: list-item;}
    
    .tax-product_brand .woocommerce ul.products li.product:nth-of-type(4n+1), .tax-product_brand li.product:nth-of-type(4n+1), .tax-product_brand .woocommerce ul.products li.product:nth-of-type(4n+1) {clear:both;} 

    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: template settings #116033
     Radu
    Moderator

    Hi,

    1. Use this css, the css should be added into wp-admin -> theme options -> general options -> quick css

    COPY CODE
    .hr-title {
        color: red !important;
        border-top-color: red !important;
    }

    2. That’s the default behaviour… if there is not enough space for displaying another one it groupes like that

    3. You will have to install and to put your api key into plugin settings https://github.com/envato/envato-wordpress-toolkit

    http://themeforest.net/forums/thread/where-can-i-find-my-secret-api-key-/137373

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: How to change width of the blog content? #116029
     Radu
    Moderator

    Hi,

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

    COPY CODE
    .single-post article {
        width: 75% !important;
        margin: 0 auto !important;
    }

    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: Banner #116011
     Radu
    Moderator

    Hi,

    use this php code, add it to wp-content/themes/kleo-child/functions.php

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

    Replace

    COPY CODE
        <div style="width:728px;height:90px;background-color:red;display:block;margin:0 auto;">
        728 AD
        </div>

    With your desired code

    Cheers

    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,

    Use this css

    COPY CODE
    .hr-title.hr-full {
        display: inline-block;
    }

    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: Members not showing up on memeber feed #115971
     Radu
    Moderator

    Use this css by adding it to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    .five.columns .circular-item {
        display: none !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: Sub Forum Links #115970
     Radu
    Moderator
    Not marked as solution
    in reply to: Change buddypress stream background colors #115760
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    #buddypress ul.item-list li {
    background-color: black;
    margin-bottom: 20px;
    }
    
    /* Level 1 comment */
    
    #buddypress div.activity-comments ul.has-comments li {
        background: yellow;
    }
    
    /* Level 2 reply comment */
    
    #buddypress div.activity-comments ul.has-comments li ul li{
        background: red !important;
    }
    
    /* Level 3 reply comment */
    
    #buddypress div.activity-comments ul.has-comments li ul li ul li{
        background: green !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
     Radu
    Moderator

    Hi,

    Use this css it will apply site wide where the post meta is shown

    COPY CODE
    span.post-meta a ,span.post-meta a.post-time time {
        font-size: 15px;
        color: red !important;
    }
    

    Replace red and 15px with your desired values

    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: Three point icon for right menu on mobile #115699
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    span.second-menu-icon span {display: none;}
    
    span.second-menu-icon:before {content: "\f040"; font:normal normal normal 14px/1 FontAwesome;}

    Replace content: “\f040”; with your font awesome icon code. http://www.weisbergweb.com/FontAwesome-CSS-Values/ / https://astronautweb.co/snippet/font-awesome/

    Cheers

    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 can add a custom tab with this function : https://docs.woothemes.com/document/editing-product-data-tabs/#section-5

    Follow that example and in the function woo_new_product_tab_content() {}

    You will have to paste the content from that page in echo ”; like this

    COPY CODE
    function woo_new_product_tab_content() {
    
    	// The new tab content
    
    	echo '
    
    <b>My Content here</b>
    
    <h2>Content here etc...</h2>
    
    ';
    }

    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: Search Bar Spacing #115663
     Radu
    Moderator

    Add this css to

    COPY CODE
    #bbpress-forums ul.bbp-replies li {
        margin-bottom: 0 !important;
    }

    Let me know

    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,

    Check now, it works, i’ve used this function

    COPY CODE
    add_action('after_setup_theme', 'add_admin_bar_for_editors');
     
    function add_admin_bar_for_editors() {
        if (current_user_can('editor') ) {
            add_filter('show_admin_bar', '__return_true');
            show_admin_bar(true);
        }
    }

    After any code modification all cache needs to be cleared

    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: Search Bar Spacing #115587
     Radu
    Moderator

    Hi,

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

    COPY CODE
    #bbpress-forums .bbp-search-form {
        margin: 0 auto !important;
    }
    
    li.bbp-body div.hentry { 
    padding:0;
    }

    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: Google Adsense #115583
     Radu
    Moderator

    IF you will using an adsense code you will no need the img so the code will be like this

    COPY CODE
    echo = '
    <div style="display: inline-block !important;">
    
    Your add code
    
    </div>
    
    ';
    

    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: widget #115368
     Radu
    Moderator

    Hi

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

    COPY CODE
    .article-content .wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
        margin: 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
     Radu
    Moderator

    HI,

    The topbar can be hidden with this

    COPY CODE
    div#top-social {
        display: none !important;
    }

    Next time try with important declaration.

    Fo this issue : https://cdn.seventhqueen.com/sq-support/wp-content/uploads/2016/04/bottom-of-rev-slider-spacing-issue.png i think you will have to set from row that contain the slider margin bottom 0, same as in the last row, check the row settings and look for any padding or margin.

    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 page #115358
     Radu
    Moderator

    Hi,

    I think it’s a server related problem, do you have htaccess file ?

    IF not create the .htaccess file in that you will paste next code

    COPY CODE
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    https://codex.wordpress.org/htaccess#Basic_WP

    Also make sure that your server has mod_rewrited enabled : http://stackoverflow.com/questions/869092/how-to-enable-mod-rewrite-for-apache-2-2?answertab=votes#tab-top

    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, button color #115356
     Radu
    Moderator

    Hi,

    Use this css instead

    COPY CODE
    .buddypress div#item-header div#item-header-content #item-buttons div.generic-button a.add {
    background-color:red !important;
    border:1px solid red !important;
    }

    Replace red with your desired color

    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 composer "fronted editor " #115351
     Radu
    Moderator

    You can hide that button by using this function

    COPY CODE
    
    function remove_buttom_from_vc_fe(){
        echo "<style>\n";
        echo 'button#vc_button-cancel { display: none !important;}';
        echo "\n</style>";
    }
    add_action( 'admin_print_styles', 'remove_buttom_from_vc_fe' ,90);

    The function will be added to wp-content/themes/kleo-child/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
     Radu
    Moderator

    Hi,

    use this css

    COPY CODE
    button.single_add_to_cart_button.wdm_enquiry {
        display: inline-block !important;
    }
    .woocommerce.single-product #contact-form { margin:10px 0 !important; }
    .woocommerce.single-product div.product form.cart, .woocommerce-page.single-product div.product form.cart { clear:both !important;display:block;width:100% }

    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: Remove RELATED PRODUCTS in product page #115334
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .related.products .hr-title.hr-full {
        display: none;
    }

    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: Styling Issues. #115327
     Radu
    Moderator

    Hi,

    The breadcrumbs css is next :

    COPY CODE
    
    .main-title .breadcrumb {
        color: yellow;
    }

    The menu hover code

    COPY CODE
    .navbar-header:hover, .kleo-main-header .navbar-collapse>ul>li>a:hover, .header-banner:hover {
        color: red !important;
    }
    

    The submenu hover code

    COPY CODE
    .header-color a:hover, .header-color .navbar-nav .dropdown-menu li a:hover {
        color: yellow;
    }

    For that shortcode you will have to copy this file /wp-content/themes/kleo/page-parts/general-header-section.php to wp-content/themes/kleo-child/page-parts/ and on the line 77 after this code

    add this code

    Regarding the add to cart from ppop-up in new tab, i will give you an answer later or monday

    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: Change Forums Title Text Color #115313
     Radu
    Moderator

    Hi,

    Add this css to your child theme style.css or in wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    span.bbp-admin-links a {
        color: red;
    }
    
    div.bbp-reply-header .bbp-reply-post-date {
        color: green;
    }
    
    .bbp-forum-header a.bbp-forum-permalink, .bbp-topic-header a.bbp-topic-permalink, .bbp-reply-header a.bbp-reply-permalink {
        color: coral;
    }

    Replace with your desired colors

    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: Google Adsense #115308
     Radu
    Moderator

    Put all your add code in a div like this

    COPY CODE
    <div style="display: inline-block !important;">
    Your add code
    </div>

    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: disable forums #115101
     Radu
    Moderator

    Hi,

    the forum item from the menu can be hidden with this css of you will not usint at all forums you can disable bbpress

    COPY CODE
    #item-nav li#forums-personal-li {
        display: none;
    }

    The css will be added to wp-admin -> theme options -> general settings -> quick css

    We don’t have a panel for customization that menu, please tell me what do you want to do there and i will give you some css snippets, proivde a screenshot that pointing out that modifications.

    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: Styling Issues. #115098
     Radu
    Moderator

    Hi,

    1. Use this css

    COPY CODE
    .kleo_framework span, .kleo_framework span.active {
        color: #fff !important;
    }

    2. I see that you have solved the issue, if i add a product to cart it opens a new widow

    3. Use this css

    COPY CODE
    .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a, .woocommerce-page ul.cart_list li a, .woocommerce-page ul.product_list_widget li a {
        text-transform: none !important;
    }

    It works but clear the server cache

    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,

    Sorry for my late reply…

    Please add this to your child theme functions.php and let me know i this is not works, please provide ftp to

    COPY CODE
    add_action('after_setup_theme', 'add_admin_bar_for_editors');
    
    function add_admin_bar_for_editors() {
        if (current_user_can('editor') ) {
            show_admin_bar(true);
        }
    }

    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: Make clients not clickable #115085
     Radu
    Moderator

    Hi,

    You can use this css to limit the width of the images

    COPY CODE
    
    .client-wrapper .client a img {
        width: 70%;
    }

    If you want to apply this only to Ils nous soutiennent you will have to place Ils nous soutiennent into separate row in that you will add a custom css class , see here how https://drive.google.com/file/d/0Bxo5b6iHWRMwV0xlbERGdTdjb2M/view?usp=sharing

    In this section “Ils en parlent” please tell me what is the problem i see that all items has # on href attribute what is 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
     Radu
    Moderator

    Hi,

    Use this it works

    COPY CODE
    .offcanvas-right.offcanvas-type-default .offcanvas-sidebar.is-open, .offcanvas-right.offcanvas-type-overlay .offcanvas-sidebar.is-open {
    background-image: url('http://www.joomlaworks.net/images/demos/galleries/abstract/7.jpg') !important;
    background-repeat:repeat-y;
    }

    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: Main menu toggle button (size increase) #115070
     Radu
    Moderator

    Hi,

    add this css to wp-admin -> theme options -> general options -> quick css

    COPY CODE
    li#nav-menu-item-side a {
        font-size: 35px !important;
    }

    Increase or decrease the 35 value with your desired value.

    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: Why the kleo padding theme too big #115057
     Radu
    Moderator

    Hi,

    Regarding the problem with the gallery and members most probably is caused by these errors

    COPY CODE
    GET http://www.olasatu.com/wp-includes/js/mediaelement/mediaelementplayer.min.css?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):249 GET http://www.olasatu.com/wp-includes/js/mediaelement/wp-mediaelement.css?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):250 GET http://www.olasatu.com/wp-includes/css/dashicons.min.css?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):255 GET http://www.olasatu.com/wp-includes/js/jquery/jquery.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):256 GET http://www.olasatu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    jquery.timeago.js?ver=27d5d8b…:23 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.timeago.js?ver=27d5d8b…:23(anonymous function) @ jquery.timeago.js?ver=27d5d8b…:25
    refresh.js?ver=27d5d8b…:93 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ refresh.js?ver=27d5d8b…:93
    (index):270 GET http://www.olasatu.com/wp-includes/js/jquery/jquery.form.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    wp-e-commerce.js?ver=27d5d8b…:1055 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ wp-e-commerce.js?ver=27d5d8b…:1055
    jquery.livequery.js?ver=27d5d8b…:250 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.livequery.js?ver=27d5d8b…:250
    user.js?ver=27d5d8b…:398 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ user.js?ver=27d5d8b…:398
    jquery.peity.min.js?ver=27d5d8b…:13 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.peity.min.js?ver=27d5d8b…:13
    initial.min.js?ver=27d5d8b…:1 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ initial.min.js?ver=27d5d8b…:1
    jquery.scrollbar.min.js?ver=27d5d8b…:14 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.scrollbar.min.js?ver=27d5d8b…:14
    anspress.min.js?ver=27d5d8b…:1 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ anspress.min.js?ver=27d5d8b…:1
    anspress-theme.min.js?ver=27d5d8b…:1 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ anspress-theme.min.js?ver=27d5d8b…:1
    tags_js.js?ver=27d5d8b…:218 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ tags_js.js?ver=27d5d8b…:218
    (index):284 GET http://www.olasatu.com/wp-includes/js/plupload/plupload.full.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    bp-sticker.js?ver=27d5d8b…:52 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ bp-sticker.js?ver=27d5d8b…:52
    confirm.min.js?ver=27d5d8b…:2 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ confirm.min.js?ver=27d5d8b…:2
    widget-members.min.js?ver=27d5d8b…:2 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ widget-members.min.js?ver=27d5d8b…:2
    jquery-cookie.min.js?ver=27d5d8b…:2 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery-cookie.min.js?ver=27d5d8b…:2(anonymous function) @ jquery-cookie.min.js?ver=27d5d8b…:2
    jquery-scroll-to.min.js?ver=27d5d8b…:2 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery-scroll-to.min.js?ver=27d5d8b…:2(anonymous function) @ jquery-scroll-to.min.js?ver=27d5d8b…:2
    buddypress.js?ver=27d5d8b…:3 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ buddypress.js?ver=27d5d8b…:3
    activity-loader.js?ver=27d5d8b…:5 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ activity-loader.js?ver=27d5d8b…:5
    buddy-views.min.js?ver=27d5d8b…:5 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ buddy-views.min.js?ver=27d5d8b…:5
    bp-like.js?ver=27d5d8b…:3 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ bp-like.js?ver=27d5d8b…:3
    jquery.hoverIntent.minified.js?ver=27d5d8b…:8 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.hoverIntent.minified.js?ver=27d5d8b…:8
    jquery.cookie.js?ver=27d5d8b…:17 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.cookie.js?ver=27d5d8b…:17(anonymous function) @ jquery.cookie.js?ver=27d5d8b…:19
    (index):321 GET http://www.olasatu.com/wp-includes/js/mediaelement/wp-mediaelement.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):320 GET http://www.olasatu.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    rtmedia.min.js?ver=27d5d8b…:5 Uncaught TypeError: a is not a function(anonymous function) @ rtmedia.min.js?ver=27d5d8b…:5(anonymous function) @ rtmedia.min.js?ver=27d5d8b…:5(anonymous function) @ rtmedia.min.js?ver=27d5d8b…:5
    (index):376 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ (index):376
    (index):396 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ (index):396
    (index):1666 GET http://www.olasatu.com/wp-includes/js/backbone.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1665 GET http://www.olasatu.com/wp-includes/js/underscore.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1684 GET http://www.olasatu.com/wp-includes/js/comment-reply.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1516 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ (index):1516
    bp-activity-privacy.js?ver=27d5d8b…:2 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ bp-activity-privacy.js?ver=27d5d8b…:2
    rtMedia.backbone.js?ver=27d5d8b…:9 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ rtMedia.backbone.js?ver=27d5d8b…:9
    bootstrap.js?ver=27d5d8b…:6 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ bootstrap.js?ver=27d5d8b…:6
    waypoints.min.js?ver=27d5d8b…:8 Uncaught TypeError: n is not a function(anonymous function) @ waypoints.min.js?ver=27d5d8b…:8(anonymous function) @ waypoints.min.js?ver=27d5d8b…:8(anonymous function) @ waypoints.min.js?ver=27d5d8b…:8(anonymous function) @ waypoints.min.js?ver=27d5d8b…:8
    magnific.min.js?ver=27d5d8b…:3 Uncaught TypeError: a is not a function(anonymous function) @ magnific.min.js?ver=27d5d8b…:3(anonymous function) @ magnific.min.js?ver=27d5d8b…:3
    VM1522:1 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ VM1522:1(anonymous function) @ jquery.carouFredSel-6.2.0-packed.js?ver=27d5d8b…:15
    jquery.touchSwipe.min.js?ver=27d5d8b…:15 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.touchSwipe.min.js?ver=27d5d8b…:15(anonymous function) @ jquery.touchSwipe.min.js?ver=27d5d8b…:15
    jquery.isotope.min.js?ver=27d5d8b…:11 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ jquery.isotope.min.js?ver=27d5d8b…:11
    (index):1697 GET http://www.olasatu.com/wp-includes/js/jquery/ui/core.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1698 GET http://www.olasatu.com/wp-includes/js/jquery/ui/widget.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1699 GET http://www.olasatu.com/wp-includes/js/jquery/ui/position.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    app.js?ver=27d5d8b…:35 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ app.js?ver=27d5d8b…:35
    (index):1700 GET http://www.olasatu.com/wp-includes/js/jquery/ui/menu.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1701 GET http://www.olasatu.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    buddypress-global-search.min.js?ver=27d5d8b…:1 Uncaught ReferenceError: jQuery is not defined(anonymous function) @ buddypress-global-search.min.js?ver=27d5d8b…:1
    (index):1708 GET http://www.olasatu.com/wp-includes/js/masonry.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1709 GET http://www.olasatu.com/wp-includes/js/jquery/jquery.masonry.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):1710 GET http://www.olasatu.com/wp-includes/js/wp-embed.min.js?ver=27d5d8b74de278e99ab6d530a245292f 
    (index):116 GET http://www.olasatu.com/wp-includes/js/wp-emoji-release.min.js?ver=27d5d8b74de278e99ab6d530a245292f 

    I think the problem is caused by some security plugin or something, try to deactivate all plugins except buddypress,k-elements and visual composer, then enable it back one by one to identify what causes this.

    2. Please provide a screenshot where that appears to can figure out

    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: transparent search form #114891
     Radu
    Moderator

    Hi,

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

    COPY CODE
    li.header-login-button a { background: rgba(255,255,255,0.1) !important;}
    li.header-register-button a { background: rgba(255,255,255,0.1) !important; border:1px solid #ddd !important;}
    li.header-register-button a:hover { border:1px solid #ddd !important;  }
    li.header-login-button a:hover, li.header-register-button a:hover { background: rgba(255,255,255,1) !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
     Radu
    Moderator

    I understand please paste this function to your child theme functions.php ( wp-content/themes/kleo-child/functions.php )

    COPY CODE
    function sq7support_get_online_members() {
    	$i = 0;
    
    	if ( bp_has_members( ‘user_id=0&type=online&per_page=999&populate_extras=0’ ) ) :
    	while ( bp_members() ) : bp_the_member();
    	$i++;
    	endwhile;
    	endif;
    
    	return $i;
    }
    
    add_shortcode('kleo_get_online_members','sq7support_get_online_members');

    Then add this shortcode in your page kleo_get_online_members

    Let me know

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Remove buddypress sub-menu “extended dropdown” #114883
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    #buddypress div#item-nav ul li a { padding: 5px 10px !important; }

    If you want to show more items replace 10px with a lower value.

    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,

    Add the next css snippet to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    #buddypress #friend-list .update, #buddypress #member-list .update, #buddypress #members-list .update {
        display: none !important;
    }
    

    Regarding the icons on the member’s name there are no quick solution to provide for 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: Change background image for woocommerce product? #114842
     Radu
    Moderator

    The eye is part of kleo.

    Here is the css for the div and for the add to cart that appears on hover

    COPY CODE
    li.product figcaption .shop-actions {
        background: red !important;
    }
    
    li.product figcaption .shop-actions a.button {
        background: yellow !important;
    }

    If you want to use a bg image you can copy and paste this

    COPY CODE
       background: url(http://www.exiv2.org/include/img_2158.jpg);
        background-repeat: no-repeat;
        background-position: center top;

    Instead the background color red or yellow

    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: Post title padding #114838
     Radu
    Moderator

    Ok

    Add this after that css

    COPY CODE
    h2.article-title.entry-title {
        padding: 0 !important;
        margin: 0 !important;
    }

    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: Why the kleo padding theme too big #114834
     Radu
    Moderator

    Hi,

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

    COPY CODE
    .template-page, .sidebar {
        padding: 5px !important;
    }
    
    .sidebar .widget {
        margin: 0 0 5px 0 !important;
    }
    
    #buddypress #admins-list li, #buddypress #mods-list li, #buddypress #members-list li, #buddypress #member-list li {
        padding: 5px !important;
    }

    Let me know

    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: video thumbnail issue and thumbnail low res view #114825
     Radu
    Moderator

    Hi,
    1. Upload the attached file after you unzip it to /wp-content/themes/kleo/lib/widgets/ ( overwrite the existing file )

    2.

    COPY CODE
    .kleo-masonry article iframe {
        width: 100% !important;
        height: 100% !important;
    }
    

    3.

    COPY CODE
    body.tax-product_brand.woocommerce-page ul.products li {
        width:33% !important;
        display:inline-block !important;
        float:left !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
    Attachments:
    You must be logged in to view attached files.
Viewing 40 posts - 2,001 through 2,040 (of 2,990 total)

Log in with your credentials

Forgot your details?