Forum Replies Created

Viewing 40 posts - 241 through 280 (of 1,218 total)
  • Author
  • in reply to: BG gradient, image quality and read more links #92823
     sharmstr
    Moderator

    Okay… Here we go… 🙂

    First, upgrade to 1.0.4.

    1 – You are correct. Its been fixed in the next release. Its also been discussed here so searching before asking is appreciated 🙂 Not sure when they will be releasing 1.0.5 and its a bunch of code to give you the fix now. But if you want something similar now, refer to this: https://archived.seventhqueen.com/forums/topic/illegible-group-descriptions-pre-sales#post-91160

    2 – Let me get back to you on this one.

    3 – Try this in your quick css. (I’ll also ask the devs why they did this.)

    COPY CODE
    
    #buddypress .activity-read-more {
        display: inline !important;
    }
    

    4 – This is a strange one and I’ll have to get the devs involved. I have two sites. One has this issue, the other doesnt. I’ll get back to you on this one.

    5 – Looks like you’ve sorted that since the mouse over links are orange.

    If I’ve missed anything 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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Change User Xprofile Section Icons #92800
     sharmstr
    Moderator

    Its not 404ing for me. Here’s what the link says

    To move the media tab
    http://docs.rtcamp.com/rtmedia/developers/reordering-media-tab-buddypress.html

    To rearrange other tabs

    COPY CODE
    
    function my_change_profile_tab_order() {
        global $bp;
        $bp->bp_nav['settings']['position'] = 10;
        $bp->bp_nav['activity']['position'] = 20;
        $bp->bp_nav['friends']['position'] = 30;
        $bp->bp_nav['groups']['position'] = 40;
        $bp->bp_nav['blogs']['position'] = 50;
        $bp->bp_nav['messages']['position'] = 60;
        $bp->bp_nav['profile']['position'] = 70;
    }
    add_action( 'bp_setup_nav', 'my_change_profile_tab_order', 999 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Possible to use Portfolio Fullwidth Overlay for blog? #92548
     sharmstr
    Moderator

    1 – Not without custom coding which is beyond the scope of support here.

    2 – Yes. Select post based slider and set Fetch Posts to whatever you want.

    3 – You’re not doing anything wrong. Kleo only uses it for header tags. If you want it near the logo, you can copy /kleo/page-parts/general-header-section.php to your child theme and add the following below the logo code

    COPY CODE
    
    <?php bloginfo('description'); ?>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Toggle Navigation not working on mobile devices #92542
     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    .header-color .navbar-nav li .caret:after {
        color: #000 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Social Share Icons #92539
     sharmstr
    Moderator

    The closest I could find is between the image slider and the tabs

    COPY CODE
    
    
    add_action('geodir_details_main_content', 'add_social_sharing', 35);
    function add_social_sharing() {
        get_template_part( 'page-parts/posts-social-share' );
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Line through my post box #92538
     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    #buddypress .activity-timeline {
    margin-top: 300px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Adding Facebook Conversion Pixels #92359
     sharmstr
    Moderator

    Couple of options:

    http://www.wpbeginner.com/plugins/how-to-add-header-and-footer-code-in-wordpress/

    Use the wp_head action https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    COPY CODE
    
    function add_fb_conversion() { ?>
    	<script>
    		//code here
    	</script>
    <?php }
    add_action( 'wp_head', 'add_fb_conversion', 10 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    This isnt a bug. You’ve hidden the confirm checkbox in your custom css. Remove these lines from your custom css

    COPY CODE
    
    #buddypress .standard-form label{
    display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Profile Data Fields #92005
     sharmstr
    Moderator

    What the code is doing is assigning it to a variable, not displaying it. Buddyrpess has a helper function that will auto echo it for you.

    COPY CODE
    
    bp_member_profile_data('field=field name goes here');
    

    If you dont want to echo it right way and then use the code that you have, then echo it when you want…

    COPY CODE
    
    echo $field_content;
    

    For further questions, please refer to the buddypress documentation and ask on their forums.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Fonts not changing #92002
     sharmstr
    Moderator

    A couple of things.

    Try this in your functions.php file

    COPY CODE
    
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    

    Also, if you have caching enabled on your server or use a CDN, make sure you purge those. The styles that you set in Theme Options are written to a css file. If your server uses caching or you have a cdn, when you visit your site, it will load the old version of the css file and you wont see your changes.

    Also, please search before posting. This has been discussed many many times. Thank you.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    That memory limit of 1024M isnt what you’ve allocated to WP. You’ve allocated 256M.

    Okay, do you have wp_debug enabled in wp-config.php? If not, enable it, making sure to set display to true. Should look like this

    COPY CODE
    
    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', true );
    

    Once debugging is enabled, tell me the error messages you’re getting when you try to run both VC and bbpress.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Cusom Post Type & Theme Setting Setting #91920
     sharmstr
    Moderator

    This should add the media section only

    COPY CODE
    
    add_filter( 'kleo_meta_boxes', 'kleo_my_metaboxes' );
    function kleo_my_metaboxes( array $meta_boxes ) {
    
        $meta_boxes[] = array(
            'id'         => 'general_settings',
            'title'      => 'Theme General settings',
            'pages'      => array( 'my-custom-post' ), // Post type
            'context'    => 'normal',
            'priority'   => 'default',
            'show_names' => true, // Show field names on the left
            'fields'     => array(
        
                array(
                    'name' => 'Media',
                    'desc' => '',
                    'id'   => 'kleomedia',
                    'type' => 'tab'
                ),
                array(
                    'name' => 'Show media on post page',
                    'desc' => 'If you want to show image/gallery/video/audio before the post on single page',
                    'id'   => $prefix . 'post_media_status',
                    'type' => 'select',
                    'options' => array(
                        array('value' => '', 'name' => 'Default'),
                        array('value' => '1', 'name' => 'Yes'),
                        array('value' => '0', 'name' => 'No')
                    ),
                    'value' => ''
                ),
                array(
                    'name' => 'Slider',
                    'desc' => 'Used when you select the Gallery format. Upload an image or enter an URL.',
                    'id'   => $prefix . 'slider',
                    'type' => 'file_repeat',
                    'allow' => 'url'
                ),
                array(
                    'name' => 'Video oEmbed URL',
                    'desc' => 'Used when you select Video format. Enter a Youtube, Vimeo, Soundcloud, etc URL. See supported services at <a target="_blank" href="http://codex.wordpress.org/Embeds">http://codex.wordpress.org/Embeds</a>.',
                    'id'   => $prefix . 'embed',
                    'type' => 'oembed',
                ),
        
                array(
                    'name' => 'Video Self hosted(mp4)',
                    'desc' => 'Used when you select Video format. Upload your MP4 video file. Setting a self hosted video will ignore Video oEmbed above.',
                    'id'   => $prefix . 'video_mp4',
                    'type' => 'file',
                ),
                array(
                    'name' => 'Video Self hosted(ogv)',
                    'desc' => 'Used when you select Video format. Upload your OGV video file.',
                    'id'   => $prefix . 'video_ogv',
                    'type' => 'file',
                ),
                array(
                    'name' => 'Video Self hosted(webm)',
                    'desc' => 'Used when you select Video format. Upload your WEBM video file.',
                    'id'   => $prefix . 'video_webm',
                    'type' => 'file',
                ),
                array(
                    'name' => 'Video Self hosted Poster',
                    'desc' => 'Used to show before the video loads',
                    'id'   => $prefix . 'video_poster',
                    'type' => 'file',
                ),
        
                array(
                    'name' => 'Audio',
                    'desc' => 'Used when you select Audio format. Upload your audio file',
                    'id'   => $prefix . 'audio',
                    'type' => 'file',
                )
            )
        );
    return $meta_boxes;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Category and tags from Product Page #91772
     sharmstr
    Moderator

    Try this instead

    COPY CODE
    
    add_action( 'after_setup_theme', 'remove_product_meta' );
    function remove_product_meta() {
        remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
        remove_action( 'woocommerce_single_product_modal_summary', 'woocommerce_template_single_meta', 40 );
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Category and tags from Product Page #91636
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file.

    COPY CODE
    
    add_action( 'after_setup_theme', 'remove_product_meta' );
    function remove_product_meta() {
        remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
    }
    

    Woo has been known to change the priority of their actions and filters, so after an update if this no longer works, look for the add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 40 ) in /woocommerce/includes/wc-template-hooks.php and see if they changed ’40’ to another priority (number).

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Body line height #91633
     sharmstr
    Moderator

    Try this instead. Make sure you undo your changes to the line height in theme options

    COPY CODE
    
    body.single-post .article-content {
        line-height: 25px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Product descriptions not displaying properly #91521
     sharmstr
    Moderator

    Please search before posting. I’ve answered this a couple of times.

    put this in quick css until the next update

    COPY CODE
    
    .woocommerce #accordion-woo {
    clear:both !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Nav bar css code to margin #91490
     sharmstr
    Moderator
    COPY CODE
    
    .navbar-nav>li>a {
    font-size: 30px !important;
    }
    
    .navbar-nav {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Porftolio tiles cut in half after theme update. #91484
     sharmstr
    Moderator

    Its always been that way. You try this to change it

    COPY CODE
    
    .portfolio-items.overlay-style li .portfolio-header .post-title {
        width: 95% !important;
        overflow: visible !important;
        white-space: pre-wrap !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Body line height #91256
     sharmstr
    Moderator

    Try this

    COPY CODE
    
    body.single .article-content {
        line-height: 25px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Navigation Bars #91227
     sharmstr
    Moderator

    wait. I see what you’re trying to do now. You want the entire full-width-nav to be black. couple of things.

    1 – Put a min-height on it

    COPY CODE
    
    .full-width-nav {
        background-color: #000;
        min-height: 30px !important;
    }
    

    Also, you have a full-width-nav inside a full-width-nav. Get rid of one 🙂

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Navigation Bars #91221
     sharmstr
    Moderator

    Sorry for the delay in responding. Looks like you’ve made some progress.

    You’re right, there is no hook between the menu and breadcrumbs. Sorry about that.

    Looks like you tried to set the background color to black. You need to add the .nav container to it.

    COPY CODE
    
    .full-width-nav .nav {
    background-color: #000;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Rearranging icons in members area #91181
     sharmstr
    Moderator

    Please search before posting. Its been asked several times before. Here’s the function you need to move the media icon over. Put it in your child theme’s functions.php file.

    COPY CODE
    
    function bbg_change_profile_tab_order() {
        global $bp;
        $bp->bp_nav['media']['position'] = 20;
        $bp->bp_nav['orders']['position'] = 100;
    
    }
    add_action('bp_init', 'bbg_change_profile_tab_order', 9999 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Illegible group descriptions – Pre Sales #91160
     sharmstr
    Moderator

    I purposely didnt give it to you because it will clash with the fix that they will be releasing. So, remember to remove this

    COPY CODE
    
    #buddypress div#item-header div#item-header-content { background: rgba(0,0,0,0.5); }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Problems with Visual Composer #91030
     sharmstr
    Moderator

    I just used it on a CPT that I made with types and it still works. So, I doubt that’s your problem.

    While still using a VC Text Block….

    Does it work without the button shortcode in it?

    COPY CODE
    
    [membership level="-1"]Can I see this?[/membership]
    

    Does it work with the 2015 Theme enabled?

    Are you on Kleo 3.1.3 and VC 4.8.1?

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Modifying CSS and substitute VOICE by VIEWS(number) #90978
     sharmstr
    Moderator

    1 – Try this

    COPY CODE
    
    .kleo-form-signin input#username, .kleo-form-signin input#password, input#bbp_topic_title {
        background-color: #fff !important;
        color: #000 !important;
    }
    

    2 – in your child theme. copy the file from /kleo/bbpress/

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Mobile Friendly Issues #90890
     sharmstr
    Moderator

    Try this

    COPY CODE
    
    #header .navbar-nav .dropdown-menu li a {
        color: red !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Mobile Friendly Issues #90828
     sharmstr
    Moderator

    The menu icon is white so its not displaying, but its there. Try this in your quick css

    COPY CODE
    
    .navbar-toggle {
    background-color: red !important;
    }
    

    You’ll have to ask the cometchat devs about their formatting on mobile devices. There are so many icons on there I dont see how that would ever look good on a small display.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to change related post images aspect ratio #90816
     sharmstr
    Moderator

    Kleo sets the carousel images to 480×270, then the css sets the max-width to 100% and the height to auto. This will resize the width based on how many items are being displayed (1, 2 or 3). You can override that with the following function placed in your child theme’s functions.php file which will make them square.

    COPY CODE
    
    add_action( 'after_setup_theme', 'kleo_custom_media_size', 20 );
    
    function kleo_custom_media_size() {
        global $kleo_config;
        $kleo_config['post_gallery_img_width'] = 480; //initial was 480
        $kleo_config['post_gallery_img_height'] = 480; //initial was 270
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Put Login Button in main navigation menu #90774
     sharmstr
    Moderator

    There’s no container to pop your button into that would be separate from the menu. So like I said, if you float the menu left against the logo, the login button will follow.

    You can try this, but I cant guarantee that it will be ideal for your site and logo. You’ll need to mess around with the percentages.

    COPY CODE
    
    @media (min-width: 991px) {
    .navbar-header {
        width: 15%;
    }
    .collapse.navbar-collapse.nav-collapse {
        width: 85%;
    }
    .nav.navbar-nav {
        width: 100%;
    }
    .kleo-show-login.menu-item {
        float: right !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Put Login Button in main navigation menu #90728
     sharmstr
    Moderator

    You can try this

    COPY CODE
    
    .kleo-show-login.menu-item.menu-item-type-custom {
        float: right !important;
    }
    

    But you cant brake the menu apart. So floating the menu left will still move the login left, but the login would be the last item. You cant even do that the way you wanted to initially.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Bug with testimonials function #90624
     sharmstr
    Moderator

    The testimonial IDs are numbers, not names. You can get the ID by bringing up the testimonial in the editor and looking at the post ID in the url. See attached.

    With that said, there is a bug that I found that will be fixed in the next k-elements release. Until then, you can fix the problem by editing /k-elements/compat/plugin-js-composer/config.php. Around line 1883 to 1886 you’ll see a value array that looks like this

    COPY CODE
    
    'value'       => array(
    	'Yes'   => 'yes',
    	'No'    => 'no'
    )
    

    Switch the yes and no lines so it looks like this.

    COPY CODE
    
    'value'       => array(
    	'No'   => 'no',
    	'Yes'    => 'yes'
    )
    

    On your page, each section (row) has a background. You can change those by clicking on the pencil icon for the row. See attached.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    Attachments:
    You must be logged in to view attached files.
    in reply to: Odd Styling of Page #90492
     sharmstr
    Moderator

    Please search before posting. Its been discussed a few times. Here’s the solution until the next update. Put this in your quick css

    .woocommerce #accordion-woo {
    clear:both !important;
    }
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Custom Headers per Section #90419
     sharmstr
    Moderator

    Create separate pages for each category.

    Set each page to use the right sidebar template.

    In each page, scroll down to the Header content (optional) section and use the rev slider shortcode

    COPY CODE
    
    [rev_slider alias="HomeFullwidth"]
    

    Change the alias to whatever the slider name is.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Menu on mobile isn’t expanding… #90294
     sharmstr
    Moderator

    For the menu, put this in your quick css

    COPY CODE
    
    @media (max-width: 991px) {
    .header-color .navbar-nav li .caret:after {
        color: #fff !important;
    }
    }
    

    I’ll assign this to someone who can answer your question about the contact form.

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    You have bad css in your quick css. Once there is an issue with the css, it will stop processing the code.

    You have this at the top

    COPY CODE
    
    #nav-menu-item-search #ajax_searchform input{
    color:#777777;
    

    You’re missing a closing bracket. It should be this

    COPY CODE
    
    #nav-menu-item-search #ajax_searchform input{
    color:#777777;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    #accordion-woo .panel {
        clear: both !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    .header-color .dropdown-menu > .active > a {
        color: #000 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Is it possible to make the icon for attachments smaller? #88436
     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    #bbpress-forums ul.bbp-replies li.rtm-bbp-thumb-view {
        width: auto !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: the background color of the column #88432
     sharmstr
    Moderator

    Put this in your quick css. Change ‘red’ to whatever you want.

    COPY CODE
    
    .sidebar.sidebar-main.col-sm-3.sidebar-right {
        background-color: red !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Create an account link from login pop-up #88430
     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    .kleo-pop-title-wrap p {
        display: none !important;
    }
    

    Or, if you aren’t allowing people to register, just turn it off in WP Admin > Settings > General

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

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 241 through 280 (of 1,218 total)

Log in with your credentials

Forgot your details?