Forum Replies Created

Viewing 40 posts - 9,561 through 9,600 (of 11,328 total)
  • Author
  • in reply to: Blog Posts show full post #39682
     sharmstr
    Moderator

    You’ll have to copy all of the content-xxx.php files from kleo to kleo-child and replace the kleo_excerpt(50) with the_content.

    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 find revolution slider purchase code #39681
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/activate-copy-of-the-revolution-slider#post-11850

    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: broken avatar pictures #39680
     sharmstr
    Moderator

    That information is in the alt attribute of the avatar img tag. Alt info is displayed if the image can’t be found or if there’s a slow connection.

    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: side bar thumbnails #39677
     sharmstr
    Moderator
    COPY CODE
    
    .sidebar .news-thumb img {
    border-radius: 0;
    }
    
    
    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/bbpress redirection #39676
     sharmstr
    Moderator

    @mlenox10. It goes in your kleo-child/functions.php file. You need to be running kleo child 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: Style forum favorites and subscriptions the same #39659
     sharmstr
    Moderator

    Thank you. I was feeling particularly lazy when I created this topic. I didnt feel like fixing it myself 🙂

    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 color #39658
     sharmstr
    Moderator

    1 – https://archived.seventhqueen.com/forums/topic/hi-how-can-i-change-color-and-size-sidebar#post-17501

    2 – Kleo uses several files to build all the page sections. You’ll have to edit several files. Most will be in kleo/page-parts/ If you dont know how to do that, you’ll have to hire someone who does.

    If you know php and are familiar with WP templates, you can use this bit of code in your functions file that will output the path/name of all the files it used to build the page. You can see it by viewing the page source code.

    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;
            }
        }
    }
    
    
    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: side bar thumbnails #39655
     sharmstr
    Moderator

    Try this in your child css

    COPY CODE
    
    .sidebar .widget.buddypress img.avatar {
    border-radius: 0 !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: childs function.php file #39651
     sharmstr
    Moderator

    themes/kleo-child/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: Problem with tags for pages #39586
     sharmstr
    Moderator

    *high five*

    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: Groups and custom fields clustered in tabs #39573
     sharmstr
    Moderator

    Here’s the codex for your reference as well: https://codex.buddypress.org/developer/loops-reference/the-profile-fields-loop-bp_has_profile/

    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: Groups and custom fields clustered in tabs #39572
     sharmstr
    Moderator

    Its best to ask over on the Buddypress forum since its their plugin. A quick search over there found this, but its 5 years old https://buddypress.org/support/topic/dividing-xprofile-fields-into-groups-in-the-profile-loop/

    More than likely you’ll have to edit /kelo/buddypress/members/single/profile/profile-loop.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: LOGO Auto Resizing Issue #39543
     sharmstr
    Moderator

    I wish I could replicated it. I really do. Maybe Abe can. Lets see what he says.

    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: LOGO Auto Resizing Issue #39541
     sharmstr
    Moderator

    Why would a user hit f5 and page up and down 4 times? If this is the only way to make it happen odds are your users will never encounter the problem.

    In case you’re wondering, I went to the page, hit f5 and scrolled up and down 10 times and still dont have the issue you do.

    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: Blank Portfolio Pages with Kleo v2.2 #39539
     sharmstr
    Moderator

    Only you can say that. What I’m saying is that when I searched for possible reasons as to why you were getting the EOF error, that was one of them. I edited your file to remove all occurrences of of that shorthand thinking you were probably running a version of PHP that didnt support it. When I uploaded it to your site, it didnt fix it. So, I reverted back to the original file and pulled more hair out.

    Here’s the thing. You are the only person out of all Kleo users who have ever reported this issue. The common thread between the two sites that you set up is that they are running on “your” server. So, if that change works for you, then great! 🙂

    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: Blank Portfolio Pages with Kleo v2.2 #39536
     sharmstr
    Moderator

    Hmmm. When I logged into your site, I changed all of the shorthands on the page, thinking that was the problem, and it didnt work. I ended up copying the original file back.

    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: Unable to Turn Off Buddy Press Main Menu #39516
     sharmstr
    Moderator

    Turn it on but keep it empty. But having it off, it uses the main site info.

    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: Cannot change standard icons in Home template #39515
     sharmstr
    Moderator

    LOL. It took me awhile to get used to VC and where all the different settings are.

    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 required for revslider #39513
     sharmstr
    Moderator

    Anytime.

    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 required for revslider #39505
     sharmstr
    Moderator

    No. You need to do that. Its located in the download.

    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 required for revslider #39498
     sharmstr
    Moderator

    Kleo uses rev slider 4.6.5 since version 2.3 Its available in the full kleo download package. from theme forest.

    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 tags for pages #39444
     sharmstr
    Moderator

    @patagonia, can you try this instead? I think adding the $query->is_main_query solves the problem and you’ll be able to use bbpress topics widget again.

    COPY CODE
    
    function kleo_archive_add_custom_types( $query ) {
        if(is_tag() && empty( $query->query_vars['suppress_filters'] ) && $query->is_main_query() ) {
            $query->set( 'post_type', array(
                'post', 'portfolio', 'product','page'
            ));
            return $query;
        }
    }
    
    
    
    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 issue #39442
     sharmstr
    Moderator

    You can also put it in wp admin – theme options – general settings – quick css

    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: Top bar issue #39440
     sharmstr
    Moderator

    Put this in your child css

    .dropdown-menu li:last-child {
    border-bottom: 1px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    }
    
    
    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: Avatars #39431
     sharmstr
    Moderator

    Hi Hoops. Welcome to the forum.

    A search would have given you the the following solutions.

    change size: http://codex.buddypress.org/getting-started/guides/customizing-buddypress-avatars/

    make square: put this in your child theme css

    COPY CODE
    
    .avatar {
    border-radius: 0 !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: Support İmport #39429
     sharmstr
    Moderator

    To import demo content, go to WP Admin – Appearance – Kleo Demo Content.

    To display your blog posts in masonry format, make sure you have that set in WP Admin – Theme Options – Blog – Display type: Grid Masonry.

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

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

    in reply to: Top bar issue #39428
     sharmstr
    Moderator

    Because its highlighted? Move to another page and see if shows up.

    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 issue #39409
     sharmstr
    Moderator

    Hello. That’s not the Top Bar, thats the Main Menu. There’s a difference and I’m only clarifying in case someone else sees this that’s not familiar with Kleo.

    Okay, its hard to diagnose whats causing the issue without access to the page. Most times is a plugin issue that’s overriding the kleo css or a caching issue. But we cant tell that by looking at pictures.

    If you dont want to give us access, then start by disabling all plugins except k-elements, rev slider and visual composer. See if the problem exists.

    Clear your cache. See if the problem exists.

    Check your Main menu height in Theme Options – Header Options. Default is 88px.

    Are you running the latest versions of Kleo and k-elements? What versions of visual composer and rev slider do you have installed?

    If you’d like us to take a look at it, respond privately with credentials and 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: Problem with tags for pages #39395
     sharmstr
    Moderator

    Right click on the Topics widget to get the correct id, then use it like this (change 6 to your id)

    COPY CODE
    
    #kleo_recent_posts-6 .news-time {
    display: none;
    }
    

    Anyhow, this is all temporary until Abe can come up with a better solution. I’ve assigned this topic to him, so he’ll see it.

    I’ve also noticed that if you move away from widgets, go back in and save, they start listing all the pages again. So dont do that 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: Problem with tags for pages #39394
     sharmstr
    Moderator

    Wait, you said “does NOT”. Well, we can get rid of that. Hold tight.

    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 tags for pages #39392
     sharmstr
    Moderator

    So does the kleo widget. See attached.

    Also you can see that it does by looking at the code in /kleo/lib/widgets/recent_post.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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Problem with tags for pages #39390
     sharmstr
    Moderator

    Can you try deleting and readding the (Kleo) Recent posts = Posts and (Kleo) Recent posts = Topics? I did that on my site and it seems to have fixed the issue with that widget.

    However, it hasnt fixed it for (bbPress) Recent Topics.

    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 tags for pages #39389
     sharmstr
    Moderator

    Hmmm. I see that. Let me see what I can do about that. But might have to have abe sort it out.

    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’s great news. Thanks for the 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: Problem with tags for pages #39380
     sharmstr
    Moderator

    I figured it out. As I said, they added tags to portfolios starting with 2.3. In that add, they have a new function that filters the queries and are only specifying posts, portfolios and products. You’ll have edit core code to fix this, but I’m sure @abe will come up with another fix for the next update (sorry if I’m putting you on the spot abe)

    Anyhow, open up /kleo/lib/post-types.php. All the way at the bottom you’ll see kleo_archive_add_custom_types. On the line that has ‘post’, ‘portfolio’, ‘product’ add ,’page’ at the end so it looks like this

    COPY CODE
    
    function kleo_archive_add_custom_types( $query ) {
        if(is_tag() && empty( $query->query_vars['suppress_filters'] ) ) {
            $query->set( 'post_type', array(
                'post', 'portfolio', 'product','page'
            ));
            return $query;
        }
    }
    add_filter( 'pre_get_posts', 'kleo_archive_add_custom_types' );
    
    

    That should fix it. 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: Problem with tags for pages #39377
     sharmstr
    Moderator

    I think you’re right. Its a kleo issue. It worked on my 2.2 site until I updated kleo to 2.3. The site was already running k-elements 2.3. Site even works with other themes enabled.


    @abe
    – help. 🙂

    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 tags for pages #39376
     sharmstr
    Moderator

    I have a site still in beta that’s running kleo 2.2. I’ll test it there and report back.

    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 tags for pages #39375
     sharmstr
    Moderator

    Sorry. I looked at the wrong date. 4.0.1 was released 3 weeks ago.

    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 tags for pages #39374
     sharmstr
    Moderator

    Hmmm. I just installed it and it worked for categories, but not tags. So then I disabled Kleo and enabled the wordpress 2014 theme. Tags didnt work for 2014 theme either. Then I disabled K-elements and it still didnt work. So I think we’ve ruled out Kleo as the culprit. Maybe?

    Wordpress 4.0.1 was released last week. Maybe that caused 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: Problem with tags for pages #39373
     sharmstr
    Moderator

    Oh and to answer your question about pre_get_posts. I thinks its only used to display featured posts. Always has been.

    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 - 9,561 through 9,600 (of 11,328 total)

Log in with your credentials

Forgot your details?