Forum Replies Created

Viewing 40 posts - 8,081 through 8,120 (of 11,328 total)
  • Author
  • in reply to: Top Bar Menu not displaying 2nd level items #51689
     sharmstr
    Moderator

    Just give the Kleo account admin rights. I’m not creating an account. Thank you.

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

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

    in reply to: Hiding xprofile edit tabs from different user types #51687
     sharmstr
    Moderator

    The loop happens in /kleo/buddypress/members/single/profile/profile-loop.php. You’ll have to copy that to your child theme and add your check for user type in the loop. Or ask on the Buddypress forum if there is a way to filter the loop. Kleo only stylizes it so its best to ask the developers about 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: Hiding xprofile edit tabs from different user types #51684
     sharmstr
    Moderator

    Sorry, I just read what you wanted again. Give me a sec to get the right answer.

    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 xprofile edit tabs from different user types #51683
     sharmstr
    Moderator

    try bp_core_remove_subnav_item

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

    try this

    COPY CODE
    
    #buddypress div.item-list-tabs#subnav ul li a {
      color: #000;
    }
    
    #buddypress #groups-list li div.meta {
      color: #000;
    }
    
    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 not displaying 2nd level items #51679
     sharmstr
    Moderator

    Need admin access

    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: Image in Post Crop Issue #51677
     sharmstr
    Moderator

    The css goes in Theme Options > general settings > quick css

    posting images works fine with social articles. I’ve tested it on two sites. maybe you have a plugin conflict

    you can safely ignore the rtMedia message. its means nothing to you since 7th queen handles changing of the template.

    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 font size in top menu + hover text? #51673
     sharmstr
    Moderator

    1 – Been asked several times. You can find the css selectors here: https://archived.seventhqueen.com/forums/topic/different-styles-for-top-and-main-menu

    2 – In firebug, you can freeze states (hover) to inspect the css: http://www.sitepoint.com/firebug-css-active-hover-states/

    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 on custom post types #51669
     sharmstr
    Moderator

    It impossible to help without specifics. Please elaborate and provide links.

    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: Homepage Icons Default to Blank Boxes in Google Chrome #51665
     sharmstr
    Moderator

    For what its worth, I had that issue on and off when I was on godaddy.

    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: Email notification #51660
     sharmstr
    Moderator

    Ask over on the Buddypress forums. Kleo doesnt handle that. It only stylizes the 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: Repair Social Icon Set #51659
     sharmstr
    Moderator

    Ok. Those are fonts not images and are defined in css. That’s why you couldnt find 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

     sharmstr
    Moderator

    Ask over on the buddyrpress forums. You sub cant be members since buddypress uses 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: Button to open video in pop-up / light-box #51653
     sharmstr
    Moderator

    Kleo already loads Magnific Popup. Add a button to your slider with a link to the video and the popup-youtube class

    COPY CODE
    
    <a href='http://www.youtube.com/watch?v=0O2aH4XLbto'>Red Button</a>
    

    In Theme options > General Settings > Js add the Magnific Popup code that will trigger the modal

    COPY CODE
    
    <script type="text/javascript">
    jQuery(document).ready(function() {
    	jQuery('.popup-youtube').magnificPopup({
    		disableOn: 700,
    		type: 'iframe',
    		mainClass: 'mfp-fade',
    		removalDelay: 160,
    		preloader: false,
    
    		fixedContentPos: false
    	});
    });
    </script>
    
    

    You can change the popup attributes to your requirements. Here’s a reference http://dimsemenov.com/plugins/magnific-popup/

    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: Simple Modal markup is broken #51644
     sharmstr
    Moderator

    Works for me. Just needed to adjust the css

    COPY CODE
    
    #myModal {
      top: 0 !important;
    }
    
    #myModal:focus {
      outline: 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.
     sharmstr
    Moderator

    And also, you cant access those pages if you are logged 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

     sharmstr
    Moderator

    They cant be that. They have to be http://www.suchavoice.com/activate and http://www.suchavoice.com/register.

    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: Moving Profile Titles #51630
     sharmstr
    Moderator

    try this

    COPY CODE
    
    .profile dd {
      margin: 0 !important;
      padding-top: 0 !important;
    }
    
    .profile dt {
      float: none;
      text-align: left;
      margin: 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: Groups and Fóruns #51629
     sharmstr
    Moderator

    Ask on the Buddypress forums since its their 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: What's New Box #51627
     sharmstr
    Moderator

    if its not a kleo issue and not a plugin issue, then its a My Wall issue. You can now go back to them and show them its not a theme 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: Remove Link when My Account (Avatar) is clicked #51603
     sharmstr
    Moderator

    🙂 Good job!

    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: Errors on profiles #51602
     sharmstr
    Moderator

    Kleo isn’t producing those, so if you really want to figure it out, you can ask over on the Buddypress forum. If you google “Warning: Illegal string offset ‘content’ bp-activity-template.php” you’ll see its quite common.

    But, if you just want to get rid of them, try turning off debugging in your wp-config.php file. Just set debug to false.

    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: Repair Social Icon Set #51599
     sharmstr
    Moderator

    Can you be specific about what/where? Most of the social icons are actually fonts, not icons.

    Actually your site is throwing errors on your css files. That’s probably the issue since the social fonts (icons) are loaded via 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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Image in Post Crop Issue #51591
     sharmstr
    Moderator

    I just tested social articles (which btw doesnt use rtMedia) and images are posting 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: Image in Post Crop Issue #51590
     sharmstr
    Moderator

    To be clear, I’m talking about the image align 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: Image in Post Crop Issue #51589
     sharmstr
    Moderator

    Its already been fixed in the next update. Until then, use this

    COPY CODE
    
    #main-container .article-content {
      overflow: auto;
    }
    
    
    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: I cant installa Kleo Theme #51588
     sharmstr
    Moderator

    Or, you can always just ftp the files to your server.

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

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

    in reply to: I cant installa Kleo Theme #51587
     sharmstr
    Moderator

    Hmmm. Maybe a permissions issue. Try installing one of the free themes and see if you have the same 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: I cant installa Kleo Theme #51583
     sharmstr
    Moderator

    Are you installing /Main Files/Wordpress/Kleo.zip? If so, attach it here. Please mark private.

    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 Link when My Account (Avatar) is clicked #51580
     sharmstr
    Moderator

    You’ll have to copy the kleo_menu_user_avatar function to your child theme and edit the $output variable so that it only displays the avatar. I’ve attached the function for your convenience.

    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: add link to admin bar user menu #51579
     sharmstr
    Moderator

    http://www.wpbeginner.com/wp-tutorials/how-to-add-custom-shortcut-links-to-wordpress-toolbar/

    specifically the add child link 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: What's New Box #51570
     sharmstr
    Moderator

    Couple of things

    1 – Does it work with a different theme active (WP 2014 or WP 2015)?

    2 – We cant really help by looking at an image (in this case).

    If it does work with WP 2015 then respond privately with a link and admin credentials. If it doesnt work, then its not Kleo related and may be a plugin conflict.

    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: I cant installa Kleo Theme #51568
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/failure-to-install

    https://archived.seventhqueen.com/documentation/kleo#installing-the-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

     sharmstr
    Moderator

    wp admin > settings > permalinks > 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

     sharmstr
    Moderator

    Those aren’t valid pages if you have buddypress installed. Buddypress has its own register, activate and login pages. You configure those in Settings > Buddypress > Pages.

    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: Searchresults without Woocommerce Products #51527
     sharmstr
    Moderator

    Ahhhh. That makes sense. Sorry for involving you abe. I should have known 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: registered member not displayed on site #51519
     sharmstr
    Moderator

    That should depend on the filter that is selected. “Last Active” (the default view) will exclude people who have registered but haven’t logged 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

    in reply to: Searchresults without Woocommerce Products #51513
     sharmstr
    Moderator

    Got it. That happens because the original search only searched posts/pages. When search context was added there were filters made for those new search types, but the not for “ONLY” posts/pages. I’ve assigned this to @abe. One of us will fix it in the next 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: Header Logo Replacement – Woocommerce & bbpress #51499
     sharmstr
    Moderator

    Sorry I was out of town. WP handles that : https://codex.wordpress.org/Navigation_Menus#Display_Menus_on_Theme

    Kleo names the locations top and primary

    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: Replace "Comment" button by an icon in Activity #51422
     sharmstr
    Moderator

    No declaration needed. Just need to copy it using the same directory structure. http://codex.wordpress.org/Child_Themes

    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 - 8,081 through 8,120 (of 11,328 total)

Log in with your credentials

Forgot your details?