Forum Replies Created

Viewing 40 posts - 10,921 through 10,960 (of 11,328 total)
  • Author
  • in reply to: Profile Cover Plugin #27589
     sharmstr
    Moderator

    Yep. The cover container is the same width and has the same “padding” that the default kleo header has. I didnt change that. There’s going to be a gap above and to the sides because its sitting inside the ‘template-page col-xx tpl-right’ div. See screenshots for better explanation. I’ve added a border to the default kleo header to illustrate this.

    To expand on your other question about the avatar being below the cover, you can adjust its position by overriding the css. Specifically

    COPY CODE
    
    
    .bp-user #buddypress #item-header-avatar {
    	margin-top: -50px !important;
    
    }
    
    

    Increase the -50px to whatever suits you. MAKE SURE YOU HAVE THE UPDATED PLUGIN FILES INSTALLED.

    The reason I chose to hold the cover in its own div above the avatar instead of having the avatar sit inside the cover div is because it scales better.

    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: Profile Cover Plugin #27582
     sharmstr
    Moderator

    Attached is an update that should target the profile screens only. Groups should be unaffected now until I have a chance to add them in.

    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: Profile Cover Plugin #27581
     sharmstr
    Moderator

    @splendor: The avatar should be sitting half way into the cover image. That’s how I coded it. Can you explain what you mean in the second post (whole space in the element).

    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: Boxed layout not working #27562
     sharmstr
    Moderator

    It is boxed. See screenshot. Maybe your browser window isnt wide enough to display 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Profile Cover Plugin #27560
     sharmstr
    Moderator

    Cool. I’m working on getting it to work with groups now. The main issue being that rtMedia doesnt have a ‘set featured’ for groups :/

    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 Font Color and Icon Color in Top Menu #27558
     sharmstr
    Moderator

    I apologize. I should have been more specific in my answer in your other topic. The theme styling options *should* be controlling the colors for both the top and main menus. The top menu *should* be the same color as the main menu, except with an .5 opacity applied making it lighter. The way to override this is to put custom css in your child theme using wp-admin -> appearance -> editor and making sure you are editing style.css or by adding it to Quick css in Theme Options -> General settings.

    It appears in your screenshot that the opacity is much lighter than .5. This can be caused by a few different things. Different browsers will display colors differently. A plugin might be overriding the css (doubt it). One way to determine what’s going on is using your browsers property inspector. Right click on one of the social icons and select inspect element. Look for the .header-color .top-menu rule. This will tell you where the rule is being loaded from. If its dynamic.css, then its coming from Theme Options -> Styling -> Header. If it says index.php then its coming from Quick css in Theme Options -> General settings. If it says style.css then it coming from the child theme. I’ve attached a screenshot.

    If its just a matter of the .5 opacity setting for your white text is too light, you can change that by putting the following in quick css. You can also test it by clicking on the color setting in the css inspector and changing the opacity from 0.5 to 1.

    COPY CODE
    
    .header-color .top-menu li > a, .header-color #top-social li a {
    color: rgba(255,255,255, 1);
    }
    

    Hope this helps solve your issue. I tried going to your site to figure this out for you.

    Here are some other topics regarding the top menu color
    https://archived.seventhqueen.com/forums/topic/style-top-navmenu
    https://archived.seventhqueen.com/forums/topic/is-it-possible-to-change-top-menu-color

    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: Changing Font Color and Icon Color in Top Menu #27516
     sharmstr
    Moderator

    wp-admin -> theme options -> styling options -> header

    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 Cover Plugin #27513
     sharmstr
    Moderator

    I dont use Sweetdate.

    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

    I did something similar with blog categories. In category.php I get the category name then add css class to the div with the category name. Example

    COPY CODE
    
    <div class="post-category-header <?php echo $currentcat->slug; ?>-header">
    

    Then in my css I have

    COPY CODE
    
    .computers-header {
    	border-color: #6F63EC;
    }
    .books-header {
    	border-color: #ca0000;
    }
    .music-header {
    	border-color: #00df15;
    }
    

    Obviously I’m only setting a border-color, but you could use a similar concept for displaying background images. You’d want to do your page check in /kleo/page-parts/general-header-section.php, adding your css class to the kleo-main-header div, then add your css like this

    COPY CODE
    
    
    .computers-header {
    	background-image: url(computer.jpg);
    }
    .books-header {
    	background-image: url(books.jpg);
    }
    .music-header {
    	background-image: url(music.jpg);
    }
    

    That’s all code off the top of my head. Its not guaranteed to work 🙂

    There might be a plugin that does 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: Conflict template with Event Manager #27498
     sharmstr
    Moderator

    Probably need to override the css to ‘display: inline’ but dont know for sure without a link to your site to test.

    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: Background Won't Leave #27497
     sharmstr
    Moderator

    I just tried it and didnt have a problem removing it so I dont think its a bug. Then I thought maybe you had some sort of caching pluing, but it doesnt appear so. By any chance are you using a could based service for images and css? I know others have had an issue with their changes not showing up because the files up the cloud weren’t updated. Just a guess really.

    Also, have you tried setting a different image to see if it changes?

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

    I’m aware of how to do it via css. That doesnt really answer my 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: Profile Cover Plugin #27494
     sharmstr
    Moderator

    Yeah, that’s next. I forgot to put it on the todo list. Should be easy enough.

    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: Un-shorten profile labels #27463
     sharmstr
    Moderator

    @Parkproductions take a look at this if you want https://archived.seventhqueen.com/forums/topic/profile-cover-plugin

    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 will not properly import .xml file #27386
     sharmstr
    Moderator

    I just validated the file and there were no errors. Maybe your file got corrupted during download or extraction from the zip file?

    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 will not properly import .xml file #27385
     sharmstr
    Moderator

    Hmmm. Interesting. I used it over the weekend and it was fine.

    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 will not properly import .xml file #27377
     sharmstr
    Moderator

    Welcome, griffinfae. In the future, it will be helpful to have more details regarding issues you come across. Expanding on “will not properly upload” will help point you in the right direction. Timming out is a common issue with import, maybe that’s your issue.

    https://archived.seventhqueen.com/forums/topic/demo-content-upload-timeout

    Googling your issue might help you resolve it as well. https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=wordpress%20import%20fails

    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 change Top Menu and Icon Color #27335
     sharmstr
    Moderator

    Theme Options -> Styling

    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 change Top Menu and Icon Color #27330
     sharmstr
    Moderator

    Those icons are actually fonts, so you set the color.

    COPY CODE
    
    .header-color .top-menu li > a, .header-color #top-social li a {
        color: #ca0000;
    }
    
    
    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: Add kleo meta box to custom post type #27329
     sharmstr
    Moderator

    I tried that and it didnt work. That’s why I asked. I copied /kleo/lib/metaboxes.php to /kleo-child/lib/metaboxes.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: "Like This" not using custom likes text #27273
     sharmstr
    Moderator

    I’ve changed my icon to a dog, but imagine its a heart. When you put your cursor over it, the pop-up should adhere to the custom “likes” setting in theme options, which in this case should be ‘bark’.

    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.
     sharmstr
    Moderator

    Can paste your code here? Please wrap it in pre tags.

    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: Stylesheet is Missing #27180
     sharmstr
    Moderator

    If you never had the kleo-child theme activated, then installing it now to get your previous theme option settings back wont work.

    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: Stylesheet is Missing #27178
     sharmstr
    Moderator

    Correct. The kleo-child theme is not there. If you followed my advice in the “Update or Not” topic, you should have downloaded the kleo and kleo-child folders. If you did that, upload kleo-child to the server.

    If you didn’t, go to themes -> install new and select the kleo-child.zip file located in the theme forest download, then activate it. You will have lost any changes made to style sheets and functions, but you should still have everything you set using Theme Options since those are stored in the db.

    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: Stylesheet is Missing #27175
     sharmstr
    Moderator

    Did you back up your child theme? If so, reupload it and activate it. Once reactivated, all your previous changes will be present.

    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: Creating Registration Page #27164
     sharmstr
    Moderator

    Yes it was to you. 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: Creating Registration Page #27162
     sharmstr
    Moderator

    Looks like you’ve found where to turn it on.

    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: Slow AJax Speed (esspecially with friends requests etc) #27156
     sharmstr
    Moderator

    No. Not a member of support.

    Have you tried it using another theme today like I suggested?

    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: Slow AJax Speed (esspecially with friends requests etc) #27152
     sharmstr
    Moderator

    myCred adds additional processing for the ‘post update’ and a slew of other things. I’m assuming that when you post and update it adds points or something.

    Also, even though you have chat disabled, its still setting the cookies with each request.

    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: Slow AJax Speed (esspecially with friends requests etc) #27150
     sharmstr
    Moderator

    Another thing to consider is if any of the plugins you have installed add any additional processing to the “add friend” and “post update” requests. That would make those slower. Again, my suggestion is to disable the plugins and test. If its faster with all the plugin disabled, then enable them one by one, testing before enabling another one. That way you can figure out which one(s) is causing the issue.

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

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

    in reply to: Slow AJax Speed (esspecially with friends requests etc) #27149
     sharmstr
    Moderator

    Wow. You have a ton of admin-ajax.php calls firing. Just sitting on the member page and not doing anything you have

    – gravatar: http://en.gravatar.com/d8379eccd3fe7c7a22cd8c0e8b89da50.json?callback=Gravatar.fetch_profile_callback This is erring out and taking 3 seconds sometimes.

    – kleo notification: Do a search here and you can read about my thoughts on increasing the amount of time between checks.

    – myCred: taking over 1 second on average. firing so fast I cant count them.

    Do you have a chat program installed?

    If you really want to figure this out, disable your plugin and test. I think you’ll find that its the amount of plugins all using constant heartbeat calls is the what the problem 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: Slow AJax Speed (esspecially with friends requests etc) #27146
     sharmstr
    Moderator

    In order to check those things I need an account to use.

    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: Slow AJax Speed (esspecially with friends requests etc) #27138
     sharmstr
    Moderator

    Yes, on my site. And no, I’m not saying the notification plug in is bad. What I’m saying is that its not a Kleo 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: Slow AJax Speed (esspecially with friends requests etc) #27136
     sharmstr
    Moderator

    I just did some testing using chromes developer console. You can look at “time / latency” of the request. Its averaging about 1 second. The times that it goes to almost 2 seconds is when the kleo notification script is also running.

    I’m seeing slightly higher speeds when I enable the 2014 Theme, which obviously doesnt run the kleo notification script.

    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: Slow AJax Speed (esspecially with friends requests etc) #27135
     sharmstr
    Moderator

    I would say its 1 second or less.

    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: Slow AJax Speed (esspecially with friends requests etc) #27133
     sharmstr
    Moderator

    Try enabling the Twenty Fourteen theme and test it. Its going to look like crap, but its a quick way to see if Kleo is really the issue. I dont have slow speed issue you’re having on my site. If you find that its still slow using the 2014 theme, do a google search for admin-ajax.php slowness. Its a notorious issue. I think I remember seeing your exact issue (friend request) talked about on the BuddyPress support forums 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

     sharmstr
    Moderator

    Its something different.


    @abe
    The link css within the activity stream is screwed up.

    COPY CODE
    
    
    #buddypress .activity-list .activity-content .activity-inner p a {
    float: left;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    }
    
    

    This fixes it, but not sure what else it screws up

    COPY CODE
    
    #buddypress .activity-list .activity-content .activity-inner p a {
       float: none;
       display: inline;
    }
    


    @bradh
    Put that new css in your child theme until the Kleo team can 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

    I’ve seen that before. I’m trying to remember what caused it. I’m almost positive its a buddypress issue and nothing Kleo is doing. Let me see if I can find it again.

    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: Slow AJax Speed (esspecially with friends requests etc) #27128
     sharmstr
    Moderator

    Was this an existing BuddyPress site? Or did you install Buddypress when you installed Kleo? Have you tested ajax speeds with a different theme (2014 theme)?

    I’m asking to help narrow down the issue. I’ve seen this issue mentioned before, but I think it was on the BuddyPress support forums, not 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

     sharmstr
    Moderator

    Here’s the fixed quotes

    COPY CODE
    
    
    
    if ( is_user_logged_in() ) {
        $top_menu = wp_nav_menu( array(
            'theme_location' => 'top',
            'depth' => 2,
            'container' => 'div',
            'container_class' => 'top-menu col-sm-12 col-md-7 no-padd',
            'menu_class' => ”,
            'fallback_cb' => ”,
            'walker' => new kleo_walker_nav_menu(),
            'echo' => false,
            'menu' => 'Top-menu'
            )
    	);
    
        $primary_menu = wp_nav_menu( array(
            'theme_location' => 'primary',
            'depth' => 3,
            'container' => 'div',
            'container_class' => 'collapse navbar-collapse nav-collapse pull-right',
            'menu_class' => 'nav navbar-nav',
            'fallback_cb' => 'kleo_walker_nav_menu::fallback',
            'walker' => new kleo_walker_nav_menu(),
            'echo' => false,
            'menu' => 'menu_main'
            )
        );
    }
    else {
        $primary_menu = wp_nav_menu( array(
            'theme_location' => 'primary',
            'depth' => 3,
            'container' => 'div',
            'container_class' => 'collapse navbar-collapse nav-collapse pull-right',
            'menu_class' => 'nav navbar-nav',
            'fallback_cb' => 'kleo_walker_nav_menu::fallback',
            'walker' => new kleo_walker_nav_menu(),
            'echo' => false,
            'menu' => 'logged_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

Viewing 40 posts - 10,921 through 10,960 (of 11,328 total)

Log in with your credentials

Forgot your details?