Forum Replies Created

Viewing 40 posts - 5,081 through 5,120 (of 11,328 total)
  • Author
  • in reply to: Manual Theme Update #68255
     sharmstr
    Moderator

    Not in the case because the whole reason for the update is to fix issues with themeforest/envato after they changed code on their side. Basically one of the things it broke was auto update.

    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 the display name after registration #68249
     sharmstr
    Moderator

    There’s nothing in Kleo that will do that. Maybe look for a plugin that will do that. Really, the only part of this that is Kleo related is the FB registration bit. After they hit submit, its all Buddypress.

    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: Child Theme #68246
     sharmstr
    Moderator

    I dont see /kleo-child/styles.css being loaded on your site which leads me to believe you have the parent kleo theme enabled, not the child theme.

    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 the display name after registration #68241
     sharmstr
    Moderator

    You didnt say that. You said “able” and “after registration”. 🙂 There’s no way to force them.

    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 the display name after registration #68235
     sharmstr
    Moderator

    Assuming you’re using Buddypress, whatever they put in profile > name will be the display name.

    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: rev slider not showing on homepage #68230
     sharmstr
    Moderator

    1 – Your site is throwing a lot of jquery errors. Once a page hit a jquery error, it will stop processing and addition jquery. Rev Slider is jquery. I think the errors are from you minifying the jquery scripts.

    2 – Same as above

    3 – This has nothing to do with Kleo. With that said, if you have a slug named donate somewehere else, you cant change a page to that slug. In other words, you cant have duplicate slugs. This includes pages, posts, media, whatever else.

    side note: I strongly suggest you use the kleo child theme.

    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: rev slider not showing on homepage #68226
     sharmstr
    Moderator

    link and credentials please.

    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: removing columns #68213
     sharmstr
    Moderator

    Next time, please search yourself.

    Try this in your quick css

    COPY CODE
    
    .single .article-content, .single .article-media {
      margin-left: 0px !important;
    }
    
    .single .article-meta {
      display: none !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 "All Members" activity tab? #68210
     sharmstr
    Moderator

    Ask on the buddypress forum the best way to do that. You can filter the loop with this code in your childs theme functions.php file, but the second page (load more) still shows all activity so you’ll need to ask the bp developers how to fix that.

    COPY CODE
    
    function filtering_activity_default( $query ) {
    
        if ( empty( $query ) && empty( $_POST ) ) {
            $query = 'scope=groups';
        }
        return $query;
    }
    add_filter( 'bp_ajax_querystring', 'filtering_activity_default', 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: Remove "All Members" activity tab? #68206
     sharmstr
    Moderator

    Before I answer, are you saying that you only want to show activity from the groups that the user is a member of. That’s all?

    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 "All Members" activity tab? #68202
     sharmstr
    Moderator

    🙂

    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: Error Installing Plugin Paid Memberships Pro #68201
     sharmstr
    Moderator

    Try disabling all plugins, install pmpro again, then enable your plugins.

    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 Bar Menu unexpectedly replaces Main Menu #68199
     sharmstr
    Moderator

    Bring up Contact us in page editor and see if you’ve set a custom main menu. (right hand column above featured image)

    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: Integrating Sabai discuss plugin #68198
     sharmstr
    Moderator

    This is not theme related. Google for a solution or ask the plugin developer.

    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: Geo plugin JS Errors #68197
     sharmstr
    Moderator

    Cool looking site btw 🙂

    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: Geo plugin JS Errors #68196
     sharmstr
    Moderator

    the jquery errors wont cause the 500 server error its also throwing. Look in your server error log to see what’s causing it.

    You’re getting jquery errors on other pages in your site as well.

    I’d look for plugin conflicts.

    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: Hide "mension" slug in activity page #68194
     sharmstr
    Moderator

    Put this in your theme options quick css

    COPY CODE
    
    #activity-mentions {
      display: none;
    }
    

    There is a sticky on the main forum page that explains how to change profile tab icons.

    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 add Social icons to footer? #68193
     sharmstr
    Moderator

    You display the fontello icons like this

    COPY CODE
    
    <i class="icon-facebook"></i>
    

    There is a list of common fontello icon names in this post: http://sharmstr.com/displaying-social-links-in-members-profile/

    ** ignore the two “use xx instead” notes since they are not relevant in this 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

    in reply to: Remove "All Members" activity tab? #68192
     sharmstr
    Moderator

    put this in your theme options quick css

    COPY CODE
    
    #activity-all {
      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: blog/ category/post color #68191
     sharmstr
    Moderator

    Are you talking about the left border near the title in a masonry list?

    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: posts alternate color style #68190
     sharmstr
    Moderator

    Try this. Copy /page-parts/general-before-wrap.php and /page-parts/posts-social-share.php to your child theme. In general-before-wrap, change this

    COPY CODE
    
    <section class="container-wrap main-color">
    
    COPY CODE
    
    if (is_single()) {
        <section class="container-wrap alternate-color">
        } else {
        <section class="container-wrap main-color">
    }
    

    In posts-social-share.php change main-color to alternate-color.

    In the long run, you’ll be better off going back through your pages and changing the row styles.

    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: Button not clickable with Galaxy Particles #68189
     sharmstr
    Moderator

    You’ll have to use a compare file program. On windows I use WinMerge

    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 Posts In Profile Hack #68188
     sharmstr
    Moderator

    No. I’m not using it anymore so I havent updated it nor do I plan to.

    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: Sorting Blog Posts #68170
     sharmstr
    Moderator

    Maybe this will help. Put this in your child theme functions.php file.

    COPY CODE
    
    /**
     * show included template files
     */
    add_action('all','template_snoop');
    function template_snoop(){
        $args = func_get_args();
        if( !is_admin() and $args[0] ){
            if( $args[0] == 'template_include' ) {
                echo "<!-- Base Template: {$args[1]} -->\n";
            } elseif( strpos($args[0],'get_template_part_') === 0 ) {
                global $last_template_snoop;
                if( $last_template_snoop )
                    echo "\n\n<!-- End Template Part: {$last_template_snoop} -->";
                $tpl = rtrim(join('-',  array_slice($args,1)),'-').'.php';
                echo "\n<!-- Template Part: {$tpl} -->\n\n";
                $last_template_snoop = $tpl;
            }
        }
    }
    

    It will add a comment to the page source for every template file that Kleo uses to build a page. Basically its an easy way to figure out the architecture. I use it all the time.

    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: Sorting Blog Posts #68169
     sharmstr
    Moderator

    Sorry, I have 30 support tickets I’m working on atm.

    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 fields not appearing in BuddyPress settings #68167
     sharmstr
    Moderator

    The problem is that you’re still getting profile fields and profile tabs (sections) confused. Those instructions are for profile fields. I’ve already shown you an example of that. Profile tabs (the icons at the top of every profile section) are set and controlled by buddypress.

    What you are trying to do isnt uncommon. There is lot of information on the buddypress site as well as other blogs. Search for rearrange buddypress profile tabs, remove buddypress profile submenus and rename buddypress profile tabs.

    Kleo doesnt do any of this. Buddypress does.

    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 fields not appearing in BuddyPress settings #68154
     sharmstr
    Moderator

    Please search. Its been discussed several times. I think there’s even a sticky 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: Cropping issues in group picture upload #68082
     sharmstr
    Moderator

    That was an issue with Kleo before the update. To clarify, are you running Kleo 3.0.4?

    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: removing columns #68077
     sharmstr
    Moderator

    Its been discussed here before and I believe custom css has been provided. Do a search. That section is the post meta data

    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: Cropping issues in group picture upload #68076
     sharmstr
    Moderator

    Looks like you either need to update Kleo or Buddypress to the latest versions.

    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 can i hide the Feature Image in the post? #68066
     sharmstr
    Moderator

    Why would you change the theme??!?!?! LOL

    Okay, do try this css then.

    .single .format-standard .article-media, .single .format-image .article-media {
    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: How can i hide the Feature Image in the post? #68063
     sharmstr
    Moderator

    If you turn of display media on post page, then it will also hide videos and such. The best way around this is to not set a featured image and turn on Theme Options > Blog > Get featured image from posts. That way an image will still be displayed in your blog listings even though you havent set a featured image.

    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: My account on the navbar is a icon #68062
     sharmstr
    Moderator

    I always like thank yous 🙂

    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: sidebar come on the navbar #68054
     sharmstr
    Moderator

    As I mention in the other thread, turn of transparent main menu in theme options. Then turn it on for your homepage using the Theme General Settings in page editor.

    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: My account on the navbar is a icon #68053
     sharmstr
    Moderator

    Use one of the profile links under the Buddypress Section and change the label to My Account, instead of the ‘my account’ under Kleo Section.

    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: BP profil search don't search #68051
     sharmstr
    Moderator

    I dont mean under the form on your page. I mean WP Admin > Users > Profile Search > Your form > Form attributes.

    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: BP profile search #68047
     sharmstr
    Moderator

    Kleo doesnt handle that. Buddypress does. Ask on their forum. https://buddypress.org/support/

    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: BP profil search don't search #68038
     sharmstr
    Moderator

    Under form attributes, do you have your results page set to members?

    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

    In that link, you’ll see that it only works when your home page is the blog archive.

    Why not use the built in category page?

    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: Visual composer issue (pencils missing) #68031
     sharmstr
    Moderator

    I’ve even googled it a few times and see no one else reporting this 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

Viewing 40 posts - 5,081 through 5,120 (of 11,328 total)

Log in with your credentials

Forgot your details?