Forum Replies Created

Viewing 40 posts - 1,961 through 2,000 (of 2,990 total)
  • Author
  • in reply to: Change background image for indivdual page #117791
     Radu
    Moderator

    The css should be added in wp-admin -> theme options -> general settings -> quick css
    By this selector body.archive.post-type-archive.post-type-archive-product.woocommerce.woocommerce-page #main section.container-wrap.main-color the css should apply only to the shop page, but also you can add the css here : https://cdn.seventhqueen.com/sq-support/wp-content/uploads/2016/04/VC_custom-CSS.png and it will applies only to that page.

    The sidebar bg can be changed like this if you will paste this in quick css it will apply site-wide

    COPY CODE
    
    .sidebar.sidebar-main {
        background: red !important;
    }
    

    Instead red you can add color code or another name of 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: Change background image for indivdual page #117687
     Radu
    Moderator

    Hi,

    According the plugin description the plugin fully bg manager it add the image background to body and the kleo applies styles from the section tag that are after the body.

    You can add a custom bg do your shop page by using this

    COPY CODE
    
    body.archive.post-type-archive.post-type-archive-product.woocommerce.woocommerce-page #main section.container-wrap.main-color {
        background-image: url(http://imgsv.nikon-image.com/products/lens/nikkor/af-s_nikkor_200-500mm_f56e_ed_vr/img/sample/pic_03_l.jpg);
        background-repeat:no-repeat;
        background-attachment:fixed;
    }
    

    If you want to add a custom bg to other pages follow this : https://archived.seventhqueen.com/forums/topic/different-backgrounds

    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 the whole background color of blog posts #117660
     Radu
    Moderator
    Not marked as solution
    in reply to: login and register buttons under 940px #117656
     Radu
    Moderator
    Not marked as solution
    in reply to: Menu not dropping down correctly #117445
     Radu
    Moderator
    Not marked as solution
    in reply to: Custom excerpt length not working #117432
     Radu
    Moderator

    Hi jokerete,

    Let’s try again, use this code it should work

    COPY CODE
    function custom_excerpt_length( $length ) {
    	return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    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: Changing Background Color #117424
     Radu
    Moderator
    Not marked as solution
    in reply to: Change the whole background color of blog posts #117384
     Radu
    Moderator
    Not marked as solution
    in reply to: how to change inbox message notification color #117318
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: login and register buttons under 940px #117301
     Radu
    Moderator
    Not marked as solution
    in reply to: Add information to the profile preview #117278
     Radu
    Moderator

    Try with this css, by adding it to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    .groups #members-group-list span.activity { 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
     Radu
    Moderator
    Not marked as solution
    in reply to: Logo #117202
     Radu
    Moderator

    Hi,

    You can do the small logo more smaller with this css

    COPY CODE
    .kleo-navbar-fixed .kleo-main-header.header-scrolled strong.logo img {
        padding: 3px;
    }

    Replace 3px with your desired value

    Height of the navbar-scrolled can be changed with this css

    COPY CODE
    .kleo-main-header.header-normal.header-scrolled {
        height: 100px;
    }

    If you want to change the function that calculate the logo dimensions on scroll you will have to look in this file

    /wp-content/themes/kleo/assets/js/app.js line 2087

    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
    Not marked as solution
    in reply to: Font size #116919
     Radu
    Moderator
    Not marked as solution
    in reply to: Few question related to theme layout #116886
     Radu
    Moderator

    Hi,

    Thank you for the nice words !!

    Here is your function that will hide the current logged in user in member directory

    COPY CODE
    add_action('bp_ajax_querystring','sq7_radu_exclude_users',20,2);
    
    function sq7_radu_exclude_users($qs=false,$object=false){
        //list of users to exclude
    
        $excluded_user = bbp_get_current_user_id();//comma separated ids of users whom you want to exclude
    
        if($object!='members')//hide for members only
            return $qs;
    
        $args=wp_parse_args($qs);
    
        //check if we are searching for friends list etc?, do not exclude in this case
        if(!empty($args['user_id'])||!empty($args['search_terms']))
            return $qs;
    
        if(!empty($args['exclude']))
            $args['exclude']=$args['exclude'].','.$excluded_user;
        else
            $args['exclude']=$excluded_user;
    
        $qs=build_query($args);
    
        return $qs;
    
    }
    

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

    Try with important declaration

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

    I’ve loaded the css into your site and it works

    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: Login to demo backend #116878
     Radu
    Moderator

    1. The ad code means a image or a code that render a image or text from your ad network, from example you can put this example code to a text block in sidebar

    COPY CODE
    <img src="http://www.linkorangutan.com/wp-content/themes/thesis_16/custom-sample/rotator/sample-4.jpg">
    

    2. If you says your theme is different from ours means that you have modified the theme

    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 do I if I leave a code between head? #116875
     Radu
    Moderator
    Not marked as solution
    in reply to: How to remove extra space below the slider #116868
     Radu
    Moderator

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

    COPY CODE
    
    @media(max-width:700px){
        .forcefullwidth_wrapper_tp_banner {
        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: Disable Clients, Testimonials or Portfolio post types #116866
     Radu
    Moderator

    Add both functions this to functions.php child theme

    COPY CODE
    
    
    function remove_menu_links() {
    	remove_menu_page( 'edit.php?post_type=kleo_clients' );
    	remove_menu_page( 'edit.php?post_type=kleo-testimonials' );
    	remove_menu_page( 'edit.php?post_type=portfolio' );
    }
    add_action( 'admin_init', 'remove_menu_links', 9999 );
    
    function remove_admin_bar_links() {
        echo "<style>\n";
        echo '#wp-admin-bar-new-kleo-testimonials,#wp-admin-bar-new-kleo_clients,#wp-admin-bar-new-portfolio { display: none !important;}';
        echo "\n</style>";
    
    }
    add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );

    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: Font changes on mobile devices #116863
     Radu
    Moderator

    Hi,

    I think your issue is related to the cache plugins please disable all plugins especially hummingbird cache and test again.

    This issue is not theme related.

    Your console it shows :

    COPY CODE
    Uncaught ReferenceError: $ is not defined
    42ab791….js:1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 42ab791….js:1
    42ab791….js:1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 42ab791….js:1
    40c24b1….js:146 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 40c24b1….js:146
    40c24b1….js:146 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 40c24b1….js:146
    40c24b1….js:146 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 40c24b1….js:146
    40c24b1….js:146 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 40c24b1….js:146
    40c24b1….js:146 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 40c24b1….js:146
    40c24b1….js:146 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 40c24b1….js:146
    (index):1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.
    (index):1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.
    42ab791….js:1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 42ab791….js:1
    42ab791….js:1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 42ab791….js:1
    42ab791….js:1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 42ab791….js:1
    42ab791….js:1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.(anonymous function) @ 42ab791….js:1
    8755c29….js:170 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.e @ 8755c29….js:170
    8755c29….js:170 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.e @ 8755c29….js:170
    (index):1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf'. This request has been blocked; the content must be served over HTTPS.
    (index):1 Mixed Content: The page at 'https://icl.gov.au/' was loaded over HTTPS, but requested an insecure font 'http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nL3QFSXBldIn45k5A7iXhnc.ttf'. This request has been blocked; the content must be served over HTTPS.

    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: Easy Digital Download product title #116837
     Radu
    Moderator

    Hi,

    The child theme has stop to working or some cache issue,

    I’ve added this

    COPY CODE
    	echo '<div class="mytitleattribute">'; 
    	print_r ( the_title_attribute() ) ;
    	echo '</div>'; 
    

    But for some reason the code is not rendered

    IF you cannot handle this provide wp admin to please

    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 do I if I leave a code between head? #116668
     Radu
    Moderator
    Not marked as solution
    in reply to: Full With to be 1024pixels #116661
     Radu
    Moderator
    Not marked as solution
    in reply to: Avatar Uploads #116629
     Radu
    Moderator

    I cannot find the path to your wordpress install, ask the person that installed the wordpress where are the plugins and theme path.

    After you will find out the paths please open this file : “wp-content/plugins/bp-custom.php”

    To increase the avatar size make sure that you have next lines added to the file.

    COPY CODE
    
    if ( !defined( 'BP_AVATAR_THUMB_WIDTH' ) )
    define( 'BP_AVATAR_THUMB_WIDTH', 120 ); //change this with your desired thumb width
     
    if ( !defined( 'BP_AVATAR_THUMB_HEIGHT' ) )
    define( 'BP_AVATAR_THUMB_HEIGHT', 120 ); //change this with your desired thumb height
     
    if ( !defined( 'BP_AVATAR_FULL_WIDTH' ) )
    define( 'BP_AVATAR_FULL_WIDTH', 580 ); //change this with your desired full size,weel I changed it to 260 <img src="http://buddydev.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"> 
     
    if ( !defined( 'BP_AVATAR_FULL_HEIGHT' ) )
    define( 'BP_AVATAR_FULL_HEIGHT', 580 ); //change this to default height for full avatar
    

    Replace 580 with your desired values

    Related to the cover there is nothing wrong with the size, your uploaded image has a very bad quality please upload a image that has a good quality

    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: Buddypress profile view #116610
     Radu
    Moderator

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

    COPY CODE
    .profile dl dt, .profile dl dd {
        padding: 0 !important;
        margin:0 10px !important;
    }

    Have a nice week

    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: Font changes on mobile devices #116606
     Radu
    Moderator

    Hi,

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

    COPY CODE
    .wpb_wrapper, .wpb_wrapper p {
    
     text-rendering: optimizeLegibility !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
     Radu
    Moderator
    Not marked as solution
    in reply to: template settings #116586
     Radu
    Moderator

    Hi,

    4. Use this css by adding it to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    .kleo-main-header .nav > li.active > a {
        background: #00b9f7;
    }

    5. This is only quick solution that i can provide to you , if you will have more than two articles related change from 33 to 50 and if you have more than one remove the snippet.

    COPY CODE
    ul.kleo-carousel article {
        width: 33%;
    }

    6. Strange, other users has replaced that files without any problems, try to re-download archive and try again.

    7. You should backup the child theme and if you have modified some of parent theme files backup it to.. also you can backup the theme settings from wp-admin -> theme options then go to -> import/export -> download data file

    8. If some users has that filed completed it should work… if no user has completed that filed you will not find any users.

    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 buddypress stream background colors #116578
     Radu
    Moderator

    REplace with this css

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

    Yes, the snippet is for uber menu.

    Try this css for the default kleo default menu

    COPY CODE
    .navbar .dropdown-menu li a {
        font-size: 14px !important;
    }

    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: page render problem when not logged in #116565
     Radu
    Moderator

    Ok,

    PLease try this to

    COPY CODE
    .kleo-navbar-fixed.navbar-transparent.pmpro-body-level-required #main-container .article-content { background-color:red; text-align:center; padding:15% 0; color:#FFF; }
    .kleo-navbar-fixed.navbar-transparent.pmpro-body-level-required #main-container .article-content .pmpro_content_message a { margin-top:20px !important; }
    

    Until we patch this you will have to use these temporary solutions

    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
     Radu
    Moderator
    Not marked as solution
    in reply to: Styling sidebars #116366
     Radu
    Moderator

    Hi

    COPY CODE
    
    .main-color .sidebar-right, .main-color .sidebar-left {
        background: red !important;
    }
    
    

    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: color button #116341
     Radu
    Moderator

    Hi,

    Try to use this css

    COPY CODE
    .btn.btn-default {
        background: red;
    }

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

    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

    Ok,

    According the console because of these the slider doens’t work

    COPY CODE
    Uncaught TypeError: jQuery(...).catcomplete is not a function
    load-scripts.php?c=1&load[]=jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-posi…:302 Uncaught TypeError: Cannot read property 'hasClass' of undefined

    I don’t have ftp so please paste this in wp-config.php from root website folder

    define('CONCATENATE_SCRIPTS', false);

    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: Portfolio items look odd #116262
     Radu
    Moderator

    Hi,

    Please use this css it should be ok

    COPY CODE
    .home ul.portfolio-items .media {
        padding: 0 !important;
        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
    in reply to: Responsive menu fix #116235
     Radu
    Moderator

    Hi,

    Use this for single line and for the aligning menu text to right when you are on mobile

    COPY CODE
    
    @media (max-width:700px) {
    div#top-social { padding: 10px; }
    .top-bar > div, .top-menu {width:49%;display:inline-block;border:0 !important; margin:0 !important;padding:0 important;} 
    #header .navbar-nav>li>a {
        text-align: right;
    }
    }
    
    

    REgarding to this i cannot reprudce : https://archived.seventhqueen.com/wp-content/uploads/2016/03/Products_%E2%80%93_Part_Time_Golf_Co_.png

    Cheers

    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 - 1,961 through 2,000 (of 2,990 total)

Log in with your credentials

Forgot your details?