Forum Replies Created

Viewing 40 posts - 4,241 through 4,280 (of 11,328 total)
  • Author
  • in reply to: problems with the login screen #73551
     sharmstr
    Moderator

    Try this css

    COPY CODE
    
    .mfp-bg.kleo-mfp-zoom.mfp-ready {
        z-index: 100 !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 dreaded login #73550
     sharmstr
    Moderator

    Try this in your child theme’s function.php file

    COPY CODE
    
    add_filter( 'register_url', 'custom_register_url' );
    function custom_register_url( $register_url )
    {
        $register_url = "http://www.yoursite.com/membership-account/membership-levels/";
        return $register_url;
    }
    
    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: Geodirectory listing page fullwidth map #73545
     sharmstr
    Moderator

    The code still works for me with the latest geo update. Did you purge your server cache after the updae. You site is throwing a bunch of 404 errors.

    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: long name broke page layout #73544
     sharmstr
    Moderator
    COPY CODE
    
    .item-desc {
        width: 95%;
    }
    #groups-dir-list .item-desc p {
        overflow: hidden;
        word-wrap: break-word;
    }
    #groups-dir-list .item-title a {
        word-wrap: break-word;
    }
    
    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: Styling Options do not publish to site #73500
     sharmstr
    Moderator

    What part are you having problems with? All you need to do is add the code I’ve given you to the functions.php file in /kleo-child/. Do you have your child theme enabled?

    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: Styling Options do not publish to site #73478
     sharmstr
    Moderator

    Here’s the codex on it: https://codex.wordpress.org/Child_Themes#Using_functions.php

    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: Styling Options do not publish to site #73462
     sharmstr
    Moderator

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

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    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

    Great. 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

    in reply to: Forum Theme & Header Avatar #73414
     sharmstr
    Moderator

    Try this css

    COPY CODE
    
    tt {
        font-family: Open Sans !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 fontello icons deleted with theme update #73408
     sharmstr
    Moderator

    There’s no way of doing that yet. You need to re-add your custom font files for now.

    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: Gallery code for rtMedia #73407
     sharmstr
    Moderator

    [rtmedia_gallery global=true]

    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: Forum Theme & Header Avatar #73404
     sharmstr
    Moderator

    For the avatar, that is a common issue with a few social login plugins out there because they override the get avatar function. See if this helps: https://archived.seventhqueen.com/forums/topic/user-profile-picture-in-main-menu-is-incorrect

    I dont see a difference between the forum page you created and the default forum page. Please explain the issue.

    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: Gallery code for rtMedia #73400
     sharmstr
    Moderator

    Because you have media_author=1 http://docs.rtcamp.com/rtmedia/features/shortcodes/gallery.html

    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: ´Sites´-Tab in Buddypress/Demo #73398
     sharmstr
    Moderator

    That is for multi-site setups: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/

    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: Buddypress: Notice, Warning and Error ;) #73395
     sharmstr
    Moderator

    Turn off debug display in your wp_config.php file.

    COPY CODE
    
    define( 'WP_DEBUG_DISPLAY', false );
    
    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: long name broke page layout #73392
     sharmstr
    Moderator

    I need to see a link for the one that’s not working.

    for messages

    COPY CODE
    
    #message-subject {
        word-wrap: break-word;
        max-width: 95%;
    }
    .message-content {
        word-wrap: break-word;
    }
    
    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 dreaded login #73389
     sharmstr
    Moderator

    I didnt say you should copy and paste the section. I said you should copy the page. You can edit the main theme directly, but you’ll have to re-edit it after every upgrade unless you copy the file to the child theme. Read the link I gave you. It explains that.

    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: Banner Logo Issue #73388
     sharmstr
    Moderator

    The logo looks 176px high to me.

    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 Taxonomy Terms in Meta List #73387
     sharmstr
    Moderator

    They wont show up there. As the original poster indicated, you need to edit the kleo_entry_meta function.

    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: http://seventhqueen.com/themes/kleo/mobile-app/ #73386
     sharmstr
    Moderator

    The background color is set in the row settings.

    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: Moving the logo to the top menu #73296
     sharmstr
    Moderator

    probably not.

    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 dreaded login #73291
     sharmstr
    Moderator

    Its in the file system. You should hire someone who knows wordpress to assist you or learn how to override themes and plugins using a child theme: https://codex.wordpress.org/Child_Themes

    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 verify facebook user email like sweetdate #73279
     sharmstr
    Moderator

    7th queen came up with it. You can try emailing them at dev@seventhqueen.com. I’ve also answered this twice already, so please search before posting. 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

    in reply to: how to verify facebook user email like sweetdate #73276
     sharmstr
    Moderator

    1 – Kleo already directs the user after FB registration to the edit profile screen. If you want to direct all logins there, you need to install Peters Login Redirect plugin.

    1b – I believe they are using https://wordpress.org/plugins/bp-registration-options/

    2 – That’s the Social Articles plugin. https://wordpress.org/plugins/social-articles/

    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: Moving the logo to the top menu #73271
     sharmstr
    Moderator

    You can copy /page-parts/general-header-section.php to your child theme. You’ll see both the social icon section and the code for the logo. Try replaceing kleo_get_social_profileswith the logo code. I’m sure you’ll have to add some custom css for it.

    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 dreaded login #73270
     sharmstr
    Moderator

    Copy /kleo/page-parts/general-popups.php to your child theme and edit the create account link. Change it to this

    COPY CODE
    
    <em><?php _e( "or", 'kleo_framework' );?></em>&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.yoursite.com/membership-account/membership-levels/" class="new-account"><?php _e( "Create an account", "kleo_framework" ); ?></a>
    

    Keep in mind that you need to check for any changes to that page after every Kleo update to ensure you are running the latest code.

    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: top menu #73268
     sharmstr
    Moderator

    This has been discussed several times. Please search before posting. Thank you.

    https://archived.seventhqueen.com/forums/topic/changing-top-menue-background-color#post-62941

    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: Move product description under gallery image. #73265
     sharmstr
    Moderator

    The description and additional info are tied together. If you want to separate them, ask on the woo forums since you’ll have to edit their code to do it.

    To move the description under the image, see this: http://sharmstr.com/woocommerce-tricks/

    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: Formatting problems on variable products + megamenu #73263
     sharmstr
    Moderator

    Try this

    COPY CODE
    
    .price del {
        display: none;
    }
    .single_variation {
        margin-bottom: 30px !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: e-mail registration and password reset #73259
     sharmstr
    Moderator

    It depends on what you want to change exactly. Changing text with BP is done through translation. You dont have to translate to a different language, so dont get confused by that: https://codex.buddypress.org/translations/

    Also this might be helpful: https://bp-tricks.com/featured/creating-a-custom-email-template-for-your-buddypress-emails/

    If you need further assistance, ask on the BP forums since you’ll be changing their code.

    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: registration link #73257
     sharmstr
    Moderator

    It depends on where you want it.

    If you want it on a page, you can use the Kleo Button shortcode found in VC.

    If you want it in the menu, you can use this technique: https://archived.seventhqueen.com/forums/topic/i-want-to-put-button-in-main-menu-possible#post-69788

    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: Banner Logo Issue #73256
     sharmstr
    Moderator

    try this css

    COPY CODE
    
    #logo_img {
        max-height: 176px !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: problems with the login screen #73255
     sharmstr
    Moderator

    Please provide a link

    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 Tab line height ? #73127
     sharmstr
    Moderator

    each page has a body class with the page id

    .page-id-7841

    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 Tab line height ? #73122
     sharmstr
    Moderator

    You also have ul in the selector. Please use the exact code I’ve given 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

    in reply to: Change Tab line height ? #73120
     sharmstr
    Moderator

    You put height instead of line-height

    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 Tab line height ? #73115
     sharmstr
    Moderator

    But where’s my code? You dont show a picture of it. Again, please make my life easier and give me a link I can see.

    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 Tab line height ? #73110
     sharmstr
    Moderator

    Adjust the px size in my code to whatever you want. It works for me. If its not working for you, I’ll need to see a link.

    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 Tab line height ? #73108
     sharmstr
    Moderator

    Try this instead

    COPY CODE
    
    .nav-tabs li a {
        line-height: 1px !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: Customizing tabs #73107
     sharmstr
    Moderator

    Try this in quick css. Adjust as necessary.

    COPY CODE
    
    .nav-tabs li {
        width: 200px !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

Viewing 40 posts - 4,241 through 4,280 (of 11,328 total)

Log in with your credentials

Forgot your details?