Forum Replies Created

Viewing 40 posts - 10,761 through 10,800 (of 11,328 total)
  • Author
  • in reply to: Center logo only in mozilla firefox #29863
     sharmstr
    Moderator

    Have you tried it with your cookie notice overlay turned off?

    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: New forum specific sidebar? #29849
     sharmstr
    Moderator

    This doesnt work on the Forum index.

    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: main menu scroll transparency #29848
     sharmstr
    Moderator

    @catalin: This works great on the homepage, but also effects the rest of the site when the menu is in ‘sticky’ mode. I’m only using a transparent menu on the homepage. The rest of the site isn’t so I dont want the grey background. If you only want it when using a transparent menu, you have to specify that in your css

    COPY CODE
    
    .navbar-transparent #header .is-sticky .kleo-main-header {
    	background-color: rgba(0,0,0,0.4) !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: Like-Button "contribution" #29839
     sharmstr
    Moderator

    Instead of overwriting the show_likes function, you can add a filter for it

    COPY CODE
    
    add_filter('kleo_likes_post_types', 'kleo_my_custom_like');
    function kleo_my_custom_like( $post_types ) {
      $post_types[] = 'your-custom-post-type1';
      return $post_types;
    }
    

    https://archived.seventhqueen.com/forums/topic/item-likes-for-custom-post-types

    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: Hiding registration page sections #29832
     sharmstr
    Moderator

    @Tom: Abe’s right. But you can run shortcodes within the register.php file.

    Here’s a few things I’m doing with my setup

    1 – Added a rev slider

    COPY CODE
    
    <?php putRevSlider( "slider2" ) ?>
    

    2 – Added kleo gaps and dividers

    COPY CODE
    
    <?php echo do_shortcode('[kleo_gap size="20px" class="" id=""]') ?>
    <?php echo do_shortcode('[kleo_divider type="long" double="yes" position="center" text="Registration: Before You Sign Up" class="" id=""]') ?>
    

    3 – BUT… you can actually run vc code using do_shortcode. Just build the page in wp-admin using vc, then switch to classic mode and copy. I haven’t tested all elements of vc, but what I have tested has worked. Also, I dont think you can output the xprofile fiends in the middle of a vc row, but you can put vc elements around it (top, bottom, sides.)

    4 – I make all users accept 3 rules (similar to terms of service). Normally you’d put those fields in the “base” section of x-profile. I, however, didnt want those to show up on the front end when viewing someones base profile, so I created a separate profile group called “Registration”. They still show up in the profile, but under their own tab and away from the other user info people are interested in. Anyhow, to get those to show up on the profile page I use this loop. Note: the “registration” profile group is the “4” in profile_group_id below.

    COPY CODE
    
    <?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( array( 'profile_group_id' => 4, 'fetch_field_data' => false ) ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    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: Can't get to submit with long topic suggestion list #29827
     sharmstr
    Moderator

    Clearing the cache fixed it. Thanks, Abe.

    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 get the profile picture in Main menu #29793
     sharmstr
    Moderator

    What version are you running? I think that’s new with 2.0, but I dont remember for sure. bbpress shouldnt have anything to do with it and I dont use memberships, so that’s not it.

    I think what really does it is the css applied to it. So you could try adding “My Account” from the link options, then adding the following classes to it.

    kleo-menu kleo-user_avatar-nav

    If you dont see the css classes boxe, click on Screen Options and enable 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: Portfolio Item? #29791
     sharmstr
    Moderator

    Okay. Some other steps I go through when troubleshooting…

    Did you try disabling plugins.

    How did you update to 2.0? Via WP Admin or FTP?

    Have you tried reinstalling?

    Have you tried turning on debugging and looking for 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: How to get the profile picture in Main menu #29785
     sharmstr
    Moderator

    Make sure you used “My Account” from the Kleo menu options and didnt create it from the “links” option.

    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: Default setups #29764
     sharmstr
    Moderator

    Open up the documentation then click on Installation -> Demo Content. There are links to individual page 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: Portfolio Item? #29742
     sharmstr
    Moderator

    How did you update to 2.0? Maybe some files were corrupted.

    Can you tell me if line 79 of /kleo/lib/post-types.php has “Setup Portfolio post type”. What I’m trying to determine is if you even have the correct files on your server.

    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: Left border issue with new post grid #29729
     sharmstr
    Moderator

    Sorry I wasn’t more clear. All you have to do is change it to use “main style” instead of “alternate style”.

    I really wasnt looking for a solution for myself. I was letting you guys know that you’re demo could look better if you make the change on your site. 🙂

    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: Can't get to submit with long topic suggestion list #29705
     sharmstr
    Moderator

    Still not working, but you’re getting closer. The page expands, but still no form elements. 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: Comments section hr-title does not display with 0 comments #29702
     sharmstr
    Moderator

    Right. Hmmm.

    Can you try changing line 24 of /kleo/comments.php to

    COPY CODE
    
    
    <?php if ( comments_open() ) : ?>
         <div class="hr-title hr-long"><abbr><?php comments_number(__('0 Comments', "kleo_framework"), __('1 Comment', "kleo_framework"), __('% Comments', "kleo_framework") ); ?></abbr></div>
    <?php endif; // comments_open() ?>
    
    

    and saving it to kleo-child/comments.php?

    Basically I just added a check to see if comments were allowed.

    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: Portfolio Item? #29699
     sharmstr
    Moderator

    I had a similar issue once where a menu item wasn’t showing up. Turned out it was a plugin conflict. Found it by disabling all plugins and turning them on one by one until I found the culprit.

    Can you get to the portfolio by manually entering the url? wp-admin/edit.php?post_type=portfolio

    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: User Edit or Delete Activity #29698
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/users-cannot-delete-their-own-activities

    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: Comment Attachments #29696
     sharmstr
    Moderator

    No. http://community.rtcamp.com/t/comment-attachment-on-activity-area/2636

    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 @ top of Default Menu #29693
     sharmstr
    Moderator

    wp-admin->theme options->header options->display top bar Turn if off

    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: Version 2.0 Stylesheet issue #29692
     sharmstr
    Moderator

    That link to your site doesnt work.

    In almost all cases where changes don’t take effect, its a caching 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: Rename Groups To Teams #29691
     sharmstr
    Moderator

    https://buddypress.org/support/topic/resolved-renaming-group-and-groups-to-project-and-projects/

    You might be able to use the above solution for forum as well.

    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: show blog, menu and breadcrumb #29690
     sharmstr
    Moderator

    I cant speak for the Kleo team, but they were working hard on releasing an update and dealing with post update issues. All your questions require custom code. They are not simple questions. I’ll try to assist.

    1 – The social section of the top menu is generated by a function called ‘kleo_get_social_profiles’ in /kleo/lib/theme-funtions.php. Copy that function into your /kleo-child/functions.php file and add the links you need.

    2 – There is a filter you can hook into called ‘breadcrumb_trail_items’ in kleo/kleo-framework/lib/function-breadcrumb.php.

    3 – The next and previous show the title in 2.0

    4 – I believe you’re asking about changing what’s displayed in the author meta. If that’s the case, you can copy the ‘kleo_entry_meta’ into your /kleo-child/functions.php file and remove the items you dont want displayed.

    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: Hiding registration page sections #29686
     sharmstr
    Moderator

    Thanks Abe. Just tested it and it works great.

    I still need to use a custom register.php file for adding a rev slider and other things, but this definitely helps. 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: Make custom fontello upgrade safe #29586
     sharmstr
    Moderator

    Excellent. Thanks, Catalin.

    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: Full width main menu with boxed layout #29553
     sharmstr
    Moderator

    Of course its possible 🙂 But you’ll have to edit the header template so the nav div “do_action(‘kleo_header’)” executes before the page layout. Then you’ll have to change some css to remove the max-width on the container.

    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: Have Pinterest style for blog page #29531
     sharmstr
    Moderator

    In the documentation supplied in the download zip, you’ll see all the demo pages.

    Main Files -> Documentation -> Kleo Theme: Open Offline Documentation.html

    In the top menu, click on Installation, then Demo Content. What you seek is under Import individual pages.

    Copy that code into whatever page you want. You’ll have to edit the first row to include your background image. You’ll also have to hide the title and footer sections, turn on transparent main menu and probably a few other things.

    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: New forum specific sidebar? #29525
     sharmstr
    Moderator

    Where does it say that? All I see is that they added that functionality to BudddyPress.

    NEW FEATURE: Enabled page settings for Buddypress directory pages. Now you can customize the sidebar used, show/hide title, transparent header and other page options

    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: Closed my topic featured images #29386
     sharmstr
    Moderator

    here’s another plugin you can try https://wordpress.org/plugins/external-featured-image/screenshots/

    google is your friend.

    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: Show featured picture only in blog not in the post #29375
     sharmstr
    Moderator

    Google search found this plugin: https://epicplugins.com/external-url-link-to-featured-images/

    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: Font weight become unsharp #29372
     sharmstr
    Moderator

    Not sure if this matters or not but you are not specifying 600 in your google font call

    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
    
    
    http://stackoverflow.com/questions/21332475/bold-fonts-in-google-chrome-are-blurry-font-face
    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: No Button to Create Group from frontend #29333
     sharmstr
    Moderator

    The ‘create’ group button has never been in the member profile menu. Its always been at the top of the group directory. See attached.

    The group tab in the member profile is probably hidden under the “+” sign. Let me know if that’s the case.

    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: tag font size in footer #29314
     sharmstr
    Moderator

    Technically, it is the same size; 11px. The reason why its smaller is due to the fact that you’re using the “Roboto Condensed” font. The demo is using open sans.

    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: Update Kleo theme #29224
     sharmstr
    Moderator

    It hasn’t been released yet.

    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: Displaying BadgeOS Achievements #29108
     sharmstr
    Moderator

    🙂 Make sure you save that file into your child theme. Also, make a habit of commenting your changes so you can easily compare against new versions files when they release kleo updates.

    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: Login Page Missing #29101
     sharmstr
    Moderator

    Excellent. Please mark resolved.

    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: Round vs Square Avatars #29090
     sharmstr
    Moderator

    If that message is for me, I dont work here so I cant see 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: Login Page Missing #29088
     sharmstr
    Moderator

    You shouldnt have a ‘page’ like you think you should.

    What happens when you go to http://www.yousite.com/wp-login.php?

    How are you trying to add it to the menu? To add a login link to your menu, you dont specify a page. Go to wp-admin -> appearance -> menus. If you dont see “Buddypress” on the left side in your menu options, click on “Screen Options” in the upper right of the page and turn it on.

    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: Round vs Square Avatars #29083
     sharmstr
    Moderator

    It should be a circle by default. So, that either means some other css is overriding it or the rounded class isn’t being applied. Right click on the avatar to inspect it. When working correctly, it should be similar to the attached screenshot.

    If you respond with a link to your site, I can take a look at it for 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Cant place updates anymore in groep #28935
     sharmstr
    Moderator

    I dont understand your question.

    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: Problem with homepage for members #28890
     sharmstr
    Moderator

    Its redirecting too much because you’ve created an endless loop of redirection. If you’re logged in and try to access the register page, WordPress will redirect you to the whatever home page you have set. Since you have it set to ‘register’ it will redirect you back to the registration page, which again, will redirect you to the home page because you’re logged in, which you have set to registration, which ….. see what I mean? Endless loop.

    http://buddypress.org/support/topic/register-page-as-homepage-redirect-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: First page of the dashboard #28885
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/log-in-redirect

    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 - 10,761 through 10,800 (of 11,328 total)

Log in with your credentials

Forgot your details?