Forum Replies Created

Viewing 40 posts - 9,801 through 9,840 (of 11,328 total)
  • Author
  • in reply to: A few doubts #37356
     sharmstr
    Moderator

    Those aren’t theme problems, they are Buddypress, WordPress and bbPress issues. With that said….

    1 – WP admin – settings – menu – buddypress – profile

    2 – Not sure if I follow, but if you’re talking about the information you’ve typed in the visual editor when you created the forum category, you can hide that

    COPY CODE
    
    #bbpress-forums .bbp-forum-info .bbp-forum-content {
    display: none !important;
    }
    

    3 – Ask over on the bbPress forum https://bbpress.org/forums/

    4 – The Kleo documentation mentions “- Social Articles – allow users to create posts right from their BuddyPress profile”

    Hope that helps.

    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 template page with just menus and no margins #37349
     sharmstr
    Moderator

    No problem 🙂

    There’s a lot of settings… everywhere. I’ve got almost a year working with Kleo on 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: Full-width template page with just menus and no margins #37346
     sharmstr
    Moderator

    You can set all of that at the bottom of the page in the 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: Full-width template page with just menus and no margins #37340
     sharmstr
    Moderator

    I already gave them to you. See my first response.

    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: sidemenu customisation #37339
     sharmstr
    Moderator

    Why did you remove this?

    COPY CODE
    
    .offcanvas-sidebar {
    width: 400px;
    }
    

    dark background on close. add this

    COPY CODE
    
    .offcanvas-type-overlay .offcanvas-sidebar {
    background: none;
    }
    

    left border

    COPY CODE
    
    .offcanvas-sidebar.is-open {
    border-left: 1px solid #eee;
    }
    

    I strongly suggest you hire someone to help you with all of this.

    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: Kleo 2.2 Left and Right Sidebar Issue on Home Page #37334
     sharmstr
    Moderator

    already reported https://archived.seventhqueen.com/forums/topic/sidebar-assistance

    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: Kleo 2.2 Left and Right Sidebar Issue on Home Page #37332
     sharmstr
    Moderator

    Confirmed. @abe – only happens when Front page set to ‘latest posts’.

    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: Cant get analytics to work #37331
     sharmstr
    Moderator

    Hmmm. I’m using analytics the way you’re trying to do it. You definitely have to wrap it with <script> tags like you have in your first example. You say google cant find it, but have you looked at your page source? Right click on any page, crt F to find GoogleAnalyticsObject.

    Also, verify that you dont have fancy quotes. They are present in the code examples you provided, but that could be this site doing that when you pasted it here.

    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: IMPORTANT – COLORS MODIFICATION #37328
     sharmstr
    Moderator

    respond privately with a link and credentials to 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: Need help set up registration Kleo #37327
     sharmstr
    Moderator

    @roderswiss – do you still have an issue if you use the 2014 theme instead of kleo?

    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: sidemenu customisation #37326
     sharmstr
    Moderator

    – to fully close

    COPY CODE
    
    .offcanvas-right.offcanvas-type-default .offcanvas-sidebar, .offcanvas-right.offcanvas-type-overlay .offcanvas-sidebar {
    -webkit-transform: translate(400px,0);
    transform: translate(400px,0);
    }
    

    – background color

    COPY CODE
    
    .offcanvas-sidebar.is-open {
    background-color: #fff;
    }
    

    – add a menu happens because you’re using the side menu without a menu. Try this to hide it

    COPY CODE
    
    ul.offcanvas-menu {
    display: none;
    }
    

    – your activity issue probably has something to do with your minutes to read plugin throwing errors.

    – show less

    COPY CODE
    
    span.bp-toggle-less {
    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: Full-width template page with just menus and no margins #37324
     sharmstr
    Moderator

    Forgot to mention, if you truly need it for a single page and not a page template, you can use VC to set css for that page only. Just click on the gear icon at the top.

    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: Full-width template page with just menus and no margins #37323
     sharmstr
    Moderator

    Kleo (and other themes) loads parts of the page using several different .php files. You’ll have to create new files for the sections that need to be changed so you can call your own custom files and functions. Its more work than I’m willing to do for you, but here’s some things that should help.

    – Start will a copy of /page-templates/full-width.php.

    – Put this is your childs function.php file. It will print out what files the page loads in the page source. From there you can figure out what sections you need to override (example: instead of calling general-before-wrap.php where the container class is set, you can call custom-general-before-wrap.php)

    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: Full Screen Video Embed #37322
     sharmstr
    Moderator

    Wp admin – settings – visual composer: enable vc for portfolios

    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: sidemenu customisation #37320
     sharmstr
    Moderator

    respond privately with a link and credentials to 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: Blank Portfolio Pages with Kleo v2.2 #37283
     sharmstr
    Moderator

    @abe, can you take a look at this? Its throwing a parse error for single-portfolio.php, but the file looks fine. I even uploaded a copy that I know works.

    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 template page with just menus and no margins #37281
     sharmstr
    Moderator

    Theme options – Layout Settings
    – Site layout wide
    – Main layout 1 column
    – Page title location Main section
    – Quick css, add the following

    COPY CODE
    
    .container {
    max-width: 100%;
    }
    

    If you want to hide the title, add this as well

    COPY CODE
    
    h1.page-title {
    display: none;
    }
    

    Theme options – Header Options
    – Show breadcrumb off
    – Main menu info blank

    That should get you close. Report back with anything else.

    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: WordPress Back-end collapses #37280
     sharmstr
    Moderator

    No problem. 🙂

    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: Facebook login works but regular login doesn't #37276
     sharmstr
    Moderator

    So, lets see if its actually a kleo issue. Enable the wordpress 2014 theme and try to log in. If it still happens then its not anything kleo related.

    To answer your question about login redirect, kleo has an option in Theme options – Miscellaneous

    Also, not sure if this will matter, but do you have Profile Syncing turned on in Settings – Buddypress – 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: WordPress Back-end collapses #37274
     sharmstr
    Moderator

    I had no problem installing the plugins. Maybe there was an issue with your host when you were trying 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: Blank Portfolio Pages with Kleo v2.2 #37272
     sharmstr
    Moderator

    Hmmm. I’m not sure what’s going on. Every portfolio page is throwing a 500 internal server error. I’ve tried disabling all plugins and even deleted and reinstalled Kleo. Can you enable debug mode so we can see what’s causing the 500 error?

    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: Need help set up registration Kleo #37267
     sharmstr
    Moderator

    @roderswiss – please only report your issue once. respond privately with credentials and a link to your site so we can see what’s going on.


    @frank
    – Can you also respond privately with a link an credentials?

    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: sidemenu customisation #37266
     sharmstr
    Moderator

    1 – Add this css to your child theme

    COPY CODE
    
    .offcanvas-type-default .offcanvas-sidebar {
    background: #ffffff;
    }
    
    .offcanvas-sidebar {
    width: 400px;
    }
    

    2 – Please search. Its been answered several times.

    3 – That’s a bit of a pain in the rear because of the way the +- works. Maybe the Kleo team has an easy solution 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

    in reply to: Full Screen Video Embed #37265
     sharmstr
    Moderator

    If you want this one http://seventhqueen.com/themes/kleo/portfolio/hosted-video-full-width/

    – Add new portfolio item
    – click on Backend Editor
    – click on Embed Vimeo Full Width
    – delete the text box that has “Embed Vimeo Full Width”
    – delete the text box that has “I am a text block”
    – delete the empty column that’s left over
    – delete the 20px gap
    – edit the video player and supply the link to the video
    – click on the pencil to edit the video row and set background style to default AND top padding to 0
    – set the post layout to Full width, no sidebar
    – scroll down and set Show media on single to: No
    – set media type to oEmbed Video and put in the link to the video
    – set top bar status to whatever you want
    – set a custom logo if you want
    – check Transparent main menu
    – check Hide title
    – set Breadcrumb to hidden
    – check Hide information

    If you still cant sort it out, send us a link to the page so we can see what the issue 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: WordPress Back-end collapses #37264
     sharmstr
    Moderator

    respond privately with credentials. I went to your site and the theme is installed.

    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: Facebook login works but regular login doesn't #37263
     sharmstr
    Moderator

    My guess is that it has something to do with the fact that your main site starts with www, but your login redirect doesn’t. You’re even throwing cross domain errors. Check your setup and make sure that both your wordpress address and your site address either start with www or dont.

    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: Footer Div Being Carried on Other Pages. #37262
     sharmstr
    Moderator

    The clue is the mfp-hide css class. That tells the page to hide the div unless its supposed to be displayed when you click login (or something similar). Its not being hidden because your page isn’t loading /kleo/assets/js/plugins/magnific-popup/magnific.css which has

    COPY CODE
    
    .mfp-hide {
    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: Blank Portfolio Pages with Kleo v2.2 #37259
     sharmstr
    Moderator

    respond privately with a link and credentials.

    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 #37223
     sharmstr
    Moderator

    Also, looking at V2.2 image, that’s not from Kleo. Kleo doesnt have Project Types and Project Tags for portfolios. Do you have another plugin that created 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: Blank Portfolio Pages with Kleo v2.2 #37222
     sharmstr
    Moderator

    You shouldn’t have 2 menus in V2.2 Looks like you changed your portfolio name to projects? In any case, did you resave your permalinks? wp admin – settings – permalinks – dont change anything, just click save.

    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: Changing navigation Icons limit #37164
     sharmstr
    Moderator

    I havent even looked at that yet. Open a new topic and I’ll have a look at it soon. Its time to watch some football. 🙂

    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 changed it wrong. Look at my code again. I dont have ‘#’s. “#” are for IDs. “.” are for css classes.

    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 not updating properly #37162
     sharmstr
    Moderator

    A few things

    Giving us the link without telling us what its supposed to look like doesnt help us help you 🙂 We have no idea what we are supposed to be seeing.

    In almost every case, this points to a cache issue. Either a caching plugin, caching on your host or your browser cache.

    Also, I strongly suggest that you use your child theme. You can switch to it without losing your changes by exporting your settings (theme options export) while the main kleo theme is enabled, then enable your child theme and import.

    Try that and let me know if that helps. If not, respond privately with temporary credentials and I’ll be happy to take a look 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

    in reply to: buddy stream social albums and KLEO #37157
     sharmstr
    Moderator

    Then maybe its plugin conflict. Like I said, it worked for 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: Trouble with adding menu items #37153
     sharmstr
    Moderator

    Neither. You need more MEMORY. http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/

    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: buddy stream social albums and KLEO #37152
     sharmstr
    Moderator

    Cache? I said permalinks wp admin – settings – permalinks

    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: Changing navigation Icons limit #37151
     sharmstr
    Moderator

    When I add it using css inspector, it doesnt work right away. It works after I resize the window.

    But if I add it to my child css and reload, then it works right away.

    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: Changing navigation Icons limit #37150
     sharmstr
    Moderator

    give me your css

    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

    Why are you putting .addClass(‘activity’)? Looking at the code you provided, you shouldn’t change that part. It should stay .addClass(‘loading’); Looks like you need to change 3 lines, not just one.

    line 52

    COPY CODE
    
    jq(".activity li.load-more").addClass('loading');
    

    line 71

    COPY CODE
    
    jq(".activity li.load-more").removeClass('loading');//Theme authors, you may need to change #content to the id of your container here, too.
    

    line 79

    COPY CODE
    
     jq(".activity ul.activity-list").append(response.contents);
    
    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: masonry css #37138
     sharmstr
    Moderator

    I’m not sure I completely understand, but you can try adding the following css to your home page

    Bring up your homepage in VC.
    Click on the gear icon to add css to that page (see image)
    Add this and save

    COPY CODE
    
    .item-desc {
    display: none;
    }
    
    .update {
    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

    Attachments:
    You must be logged in to view attached files.
Viewing 40 posts - 9,801 through 9,840 (of 11,328 total)

Log in with your credentials

Forgot your details?