Forum Replies Created

Viewing 40 posts - 361 through 400 (of 2,990 total)
  • Author
  • in reply to: profile avatar circle #196728
     Radu
    Moderator

    Hi,

    Just using this css

    COPY CODE
    
    #profile #item-header-avatar .avatar {
        border-radius: 50%;
    }
    

    Add it in wp-admin -> theme options -> styling options -> quick css

    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: Main Menu Options for Portfolio Post #196720
     Radu
    Moderator

    Hi,

    Just add this code

    COPY CODE
    
    
    function my_cpt_sq_metabox_menu_options_post_layout($post_types) {
        $post_types[] = 'portfolio';
        return $post_types;
    
    }
    
    add_filter('sq_metabox_page_menu', 'my_cpt_sq_metabox_menu_options_post_layout');
    

    The function will have to be added in wp-content/themes/kleo-child/functions.php

    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: Sports Page #196718
     Radu
    Moderator
    Not marked as solution
    in reply to: Hiding “Friends” From Members #196715
     Radu
    Moderator
    Not marked as solution
    in reply to: Design bug #196615
     Radu
    Moderator

    Hi,

    1. There you should edit your image to have the black frame thiner there to can match with the top line

    2.using this css

    COPY CODE
    
    .kleo-tabs ul li a {
        background: white !important;
    }
    
    .kleo-tabs ul li {
        
    }
    
    .kleo-tabs ul {
        background:white;
    }
    

    The css will be added to wp-admin -> theme options -> General settings -> Quick CSS

    3. Follow that https://seventhqueen.com/blog/promo/free-wordpress-theme-design-install.html this it’s install not customizing thing, so other things than install are not included.

    4. Buddypress plugin will be activated from wp-admin -> appearance -> install plugins -> buddypress

    Here’s a tutorial how you can install and setup the theme. https://archived.seventhqueen.com/video-tutorials/kleo-quick-install-and-setup.html

    What do you mean by the customization of the forum what you need to change ? The forum it will be shown in kleo specific design.

    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: Leo members page css problem #196611
     Radu
    Moderator
    Not marked as solution
    in reply to: Plugin Conflict with Popup Maker #196606
     Radu
    Moderator
    Not marked as solution
    in reply to: Mobile Menu not scrolling in iPhone #196605
     Radu
    Moderator

    Hi,

    No, no need to debug and there is no issue with the menu items…

    Use this css will make the caret (+ sign ) to appear on expendable tabs nto sure why not appears

    COPY CODE
    
    #header .navbar-nav li .caret {
        width: 20px;
        height: 20px;
        background: #50485b !important;
        border-radius: 26px;
    }
    #header .navbar-nav li .caret:before {
        content:" + ";
        text-align:center;
        padding:3px;
        color:#fff;
    }
    

    So it should be ok from my point of view, right ?

    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 menu isn't work #196594
     Radu
    Moderator

    Hi,

    There was a misunderstanding.

    those should be added in the functions.php : https://archived.seventhqueen.com/forums/topic/profile-menu-isnt-work/#post-195817 said here, then to can control the position of the media button following : https://archived.seventhqueen.com/forums/topic/profile-menu-isnt-work/#post-195912

    I’ve do that for you and how they are ok, the exception it’s you will have to copy this file : wp-content/themes/sweetdate/page-parts/general-header.php to child theme wp-content/themes/sweetdate-child/page-parts/general-header.php

    I’ve modified in parent at this moment, so just copy the file as how i said from the beginning.

    Then paste this code in the child theme ( wp-content/thems/sweetdate-child/functions.php )

    COPY CODE
    
    /* Check if the rtmedia plugin it's activated then hook */
    if ( class_exists( 'RTMedia' ) ) {
        add_filter('header_profile_dropdown', 'my_profile_link', 1);
    }
    function my_profile_link($links) {
        $links[] = '<li><a href="' . bp_loggedin_user_domain().'media/" rel="nofollow">Media</a></li>';
        return $links;
    }
    

    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: How change logo and how change write in movement #196577
     Radu
    Moderator

    Add this css

    COPY CODE
    
    @media(min-width:991px) {
            #logo img {
            position: absolute;
            top: -10px !important;
        }
    }
    

    The css will be added to wp-admin -> theme options -> styling options -> Quick CSS

    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: Homepage Redirect Not Working #196298
     Radu
    Moderator
    Not marked as solution
    in reply to: Color of description #196289
     Radu
    Moderator

    Hi,

    use this CSS

    COPY CODE
    
    
    .rtmedia-editor-description.rtm-field-wrap textarea {
        color: red !important;
    }
    
    .rtmedia-edit-title.rtm-field-wrap input {
        color: red !important;
    }
    
    
    

    The css will be added to wp-admin -> theme options -> General settings -> Quick CSS

    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: footer #196272
     Radu
    Moderator

    Hi,

    Not sure if those can be like that without code alteration

    There it’s a single UL generated there and it’s only one column if you want to you will need to make a php condition if there are more than 10 fields from example to generate another UL

    here’s the file : wp-content/themes/sweetdate/custom_buddypress/class-bp-tabs.php

    You can overwrite that by copying this function (it’s marked in screenshot in large rectangle)

    COPY CODE
    
    if (!class_exists('BpMembersTab')):
    class BpMembersTab
    {
        /* tabs instance */
        public $tabs_instance;
        public $args;
        
        public function __construct($args) 
        {
            $this->tabs_instance = BpMembersTabs::get_instance();
            
            $this->args = $args;
        }
        
        public function title()
        {
            $active = '';
            if($this->tabs_instance->active_tab === FALSE || $this->tabs_instance->active_tab == $this->args["name"] ) 
            { 
                $active = 'active';  
                $this->tabs_instance->active_tab = esc_attr(str_replace("%", "",sanitize_title_with_dashes($this->args["name"])));
            }
            
            return '<dd class="'.$active.'"><a href="#'.esc_attr(str_replace("%", "",sanitize_title_with_dashes($this->args["name"]))).'">'.$this->args["name"].'</a></dd>';
        }
        
        public function has_profile_data($name)
        {
            $this->tabs_instance->has_data[$name] = false;
            $this->tabs_instance->fields_data[$name] = '';
            
            if ( bp_is_active( 'xprofile' ) && get_group_id_by_name($name) ) :
                if ( bp_has_profile( 'profile_group_id='.get_group_id_by_name($name ) ) ) : 
                    
                    while ( bp_profile_groups() ) : bp_the_profile_group();
                        if ( bp_profile_group_has_fields() ) :
                            
                            $this->tabs_instance->fields_data[$name] .= '<dl class="dl-horizontal">';
                            while ( bp_profile_fields() ) : bp_the_profile_field();
                                if ( bp_field_has_data() ) :
                                    $this->tabs_instance->has_data[$name] = true;
                                    $this->tabs_instance->fields_data[$name] .= '<dt class="bp-field-name bp-field-id-' . __(bp_get_the_profile_field_id(), 'kleo_framework') . '">'. __(bp_get_the_profile_field_name(), 'kleo_framework') .'</dt>';
                                    $this->tabs_instance->fields_data[$name] .= '<dd class="bp-field-value bp-field-id-' . __(bp_get_the_profile_field_id(), 'kleo_framework') . '">'. __(bp_get_the_profile_field_value(), 'kleo_framework') .'</dd>';
                                endif;
                            endwhile; 
                            $this->tabs_instance->fields_data[$name] .= '</dl>';
                            
                        endif;
                    endwhile;  
                    
                endif; 
            endif;
            
            if ($this->tabs_instance->has_data[$name] == true) 
                return true;
        }
    }
    endif;
    

    Into functions.php from child theme and to make your desired changes for that.

    I don’t have a pre-maded 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: BuddyPress “Profile” Page #196267
     Radu
    Moderator
    Not marked as solution
    in reply to: hide change profile photo field #196179
     Radu
    Moderator

    Hi,

    Add this css

    COPY CODE
    
    li#change-avatar-personal-li {
        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: activity page scroll down #196178
     Radu
    Moderator

    Hi,
    This it’s the only available way

    COPY CODE
    
    @media(min-width:768px) {
    
        ul#activity-stream {
            height: 600px;
            overflow-y: scroll;
        }
    
    }
    

    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 disable title in page.php #196177
     Radu
    Moderator

    Hi,

    Found a easy way just copy this file : wp-content/themes/kleo/page-parts/general-title-section.php to your child theme in wp-content/themes/kleo-child/page-parts/

    Create the missing folders in child theme.

    Then open from child theme wp-content/themes/kleo-child/page-parts/general-title-section.php and add the next code in the marked area starting from line 23-24

    COPY CODE
    
    
    /*Hide the tittle on events pages*/
    
    if(is_singular('post')){
        $title_arr['show_title'] = false;
        //$title_arr['show_breadcrumb'] = false;
        //$title_arr['extra'] = '';
    }
    
    /*END Hide the tittle on events pages*/
    
    

    Replace post from the code with your post type slug.

    It should be ok.

    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/Format description in the Advanced search #196155
     Radu
    Moderator

    No problem.

    Looking at they shortcode options and cannot see any option to add custom html in that shortcode.
    https://getshortcodes.com/shortcodes/spoiler/

    As a workaround you can use this css

    COPY CODE
    
    p.bps_filters {
        background: #0095c2;
        width: 200px;
        position: fixed;
        color: #fff;
        right: 0;
        top: auto;
    }
    
    p.bps_filters a {
        background: red !important;
        color:#fff !important;
        padding: 0 10px;
        margin: 10px !important;
        display: block;
    }
    

    Will do this, there the div showing the selected criteria remains fixed when you scroll.

    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: BuddyPress “Profile” Page #196149
     Radu
    Moderator
    Not marked as solution
    in reply to: How to disable title in page.php #196148
     Radu
    Moderator

    Hi,

    You will have to ask the plugin author for a conditional tag like this if_plugin_page() and if they have one you will have to use a code like this

    COPY CODE
    
    add_action( 'after_setup_theme', 'hide_the_tile_certain_places', 10 );
    function hide_the_tile_certain_places() {
        //title section
        $title_arr['show_title'] = true;
    
        //hide breadcrumb?
        $title_arr['show_breadcrumb'] = false;
    
    }
    
    

    wrap the add action in the plugin condition

    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 matching percent #196030
     Radu
    Moderator

    Hi,

    The matching circle can be hidden easily using this css.

    COPY CODE
    
    div.circular-item[title="Compatibility match"] {
        display: none !important;
    }
    

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

    PS: Salutari din Bucuresti!

    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: activity page #196029
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .elementor-1013 .elementor-element.elementor-element-f67f082 .elementor-posts-container .elementor-post__thumbnail {
        padding:initial !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: footer #195927
     Radu
    Moderator

    Hi,

    Go via FTP to wp-content/themes/sweetdate-child/ and create a file named footer.php

    in that you will paste : https://pastebin.com/raw/Yzz9aWKC

    Then paste this code in child theme functions.php

    COPY CODE
    
    function register_sidebar_col5()
    {
        register_sidebar(array(
            'name' => 'Footer Widget 5',
            'id' => 'footer-5',
            'before_widget' => '<div id="%1$s" class="widgets clearfix %2$s">',
            'after_widget' => '</div>',
            'before_title' => '<h5>',
            'after_title' => '</h5>',
        ));
    
    }
    
    add_action('widgets_init', 'register_sidebar_col5');
    

    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: Button for member post #195918
     Radu
    Moderator

    Hi,

    Check in wp-admin -> pmpro -> advanced setttings -> Message for Logged-out Users:

    add it like this

    COPY CODE
    
    This content is for !!levels!! members only.<br />
    <a class="kleo-show-login" title="Login" href="http://rdu.local/kleo/wp-login.php">Login</a><a href="http://localhost/kleo/wp-login.php?action=register">Register</a>
    

    The idea it’s to have class kleo-show-login on the a element or li or any element.

    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: BuddyPress “Profile” Page #195913
     Radu
    Moderator
    Not marked as solution
    in reply to: BuddyPress “Profile” Page #195907
     Radu
    Moderator
    Not marked as solution
    in reply to: Kleo Monetizer Bug #195903
     Radu
    Moderator

    Hi,

    Your ad code not displays nothing for me

    And it not makes any difference if i de-activate it, the white space remains, and if i replace the adsense code with this one it works even if i de-activate or not the buddypress.

    COPY CODE
    
    <img src="http://google.com/image.png" />
    

    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 menu isn't work #195817
     Radu
    Moderator

    I see…

    Just add this code to your functions.php

    COPY CODE
    
    
    /* Check if the rtmedia plugin it's activated then hook */
    if ( class_exists( 'RTMedia' ) ) {
        add_filter('header_profile_dropdown', 'my_profile_link', 1);
    }
    function my_profile_link($links) {
        $links[] = '<li><a href="' . bp_loggedin_user_domain().'media/" rel="nofollow">Media</a></li>';
        return $links;
    }
    
    

    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/Format description in the Advanced search #195808
     Radu
    Moderator

    Hi,

    1. try to add an empty space there instead of any word.

    2. try this css

    COPY CODE
    
    
    .su-spoiler-content.su-clearfix .editfield {
         margin-top: initial !important;
         float: initial !important; 
         width: initial !important;
    }
    
    
    .su-spoiler-style-fancy > .su-spoiler-content label {display: inline-block;width: auto !important;}
    
    

    I saw that you had styled in a way in style.css the first rule from css will overwrite that selector.

    .su-spoiler-content.su-clearfix .editfield{}

    3. IT add’s this parameter to the URL ?bp_profile_search=clear and all criteria will be cleaned

    https://cristea.ch/members/?bp_profile_search=clear

    4. If you are referring to the default wp search use this plugin : https://wordpress.org/plugins/disable-search/

    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 Monetizer Bug #195799
     Radu
    Moderator

    Hi,

    That code not generates adds, but anyway if i use a regular banner code , and i deactivate the buddypress plugin it will works as normal.

    like

    COPY CODE
    
    <img src="http://google.com/image.png">
    

    Anyway i’ve tried on your site live but cannot see any issue.
    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: Website not working on Microsoft Edge #195781
     Radu
    Moderator
    Not marked as solution
    in reply to: Replaces hearts images visible on theme #195474
     Radu
    Moderator

    Hi,

    To can hide or change that icon use this css

    COPY CODE
    
    .circular-item .hearts {
    /*     background: url(../images/hearts_bg.png) no-repeat; */
           background:none;
    }
    

    Hide friendship heart icon

    COPY CODE
    
    #friends-my-friends:before {
        content:"";
    }
    

    Can you show the page where this button it’s ? https://archived.seventhqueen.com/wp-content/uploads/2018/04/heart1-128×65.jpg

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

    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: widgets background title color #195469
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    .widgets h5 {
        background-color: red !important;
        color:#fff !important;
    }
    

    Add it in wp-admin -> theme options -> styling options -> quick css

    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: Theme customization questions #195455
     Radu
    Moderator

    Hi,

    For the footer color

    COPY CODE
    
    div#socket {
        background: red !important;
        color: #fff !important;
    }
    

    Topbar

    It works tested

    COPY CODE
    
    #top-social li i:before {color:red !important;}
    .header-color .top-menu li > a:hover, .header-color #top-social li a:hover {color:red !important;}
    
    

    What are the credentials ?

    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 carousel display in mobile #195444
     Radu
    Moderator
    Not marked as solution
    in reply to: Removing Last Activity Date #195361
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Theme customization questions #195147
     Radu
    Moderator

    Hi,

    Figured out why it links to the image url instead of the post url

    edit the post grid then follow the screenshots

    then

    For the color of the socket text use this css

    COPY CODE
    
    div#socket div p {
        color: #ccc;
    }
    

    I need an account to can see how the colors at hoverboxes changes when you login/logout

    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: Customize 404 page #195136
     Radu
    Moderator

    Hi,

    just add this css

    COPY CODE
    
    @media(max-width:768px) {
            .search .posts-listing .post-item {
            width: 50% !important;
        }
    }
    

    The css will be added to wp-admin -> theme options -> General settings -> Quick CSS

    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 shows weird on mobile device #195123
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 361 through 400 (of 2,990 total)

Log in with your credentials

Forgot your details?