Forum Replies Created

Viewing 40 posts - 10,001 through 10,040 (of 11,328 total)
  • Author
  • in reply to: Kleo BBpress refresh and main theme changes #34814
     sharmstr
    Moderator

    Awesome!

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

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

    in reply to: Hide Member Level from bbPress Forums #34813
     sharmstr
    Moderator

    The one under the avatar? Thats standard with bbpress.

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

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

    in reply to: Hide Member Level from bbPress Forums #34808
     sharmstr
    Moderator

    put this in your child theme.

    COPY CODE
    
    .bbp-author-role {
    display: none;
    }
    

    I can’t answer the myCred question. I dont use 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: Kleo BBpress refresh and main theme changes #34802
     sharmstr
    Moderator

    I need to start charging for this…

    this works on my site

    COPY CODE
    
    #bbpress-forums .bbp-forum-info .bbp-forum-content, #bbpress-forums p.bbp-topic-meta {
    display: block;
    }
    
    #bbpress-forums li.bbp-forum-freshness .bbp-topic-meta, #bbpress-forums li.bbp-topic-freshness .bbp-topic-meta {
    display: block;
    }
    
    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 BBpress refresh and main theme changes #34799
     sharmstr
    Moderator

    I already told you. try changing inline-block to block. inline-block means on the same line.

    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: Text hidden on members page #34797
     sharmstr
    Moderator

    I see what’s going on. The users name is not being displayed. When it displays a H4 tag is wrapped around it which pushes it down a bit. Since the activity is on the same line, that gets pushed down too. My guess is that there is a setting in the iThemes Security plugin that you’re using that is blocking the display of the members username since it their login name. Just a guess though.

    You can either figure out why the username isn’t displaying or add this to your child theme style.css

    COPY CODE
    
    
    #buddypress #item-header-avatar {
    box-shaddow: 0 0 0 0;
    }
    

    You can see the username on the demo: http://seventhqueen.com/themes/kleo/members/demo/

    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: Text hidden on members page #34794
     sharmstr
    Moderator

    reply privately with credentials. I cant see the profile without logging 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: Text hidden on members page #34791
     sharmstr
    Moderator

    Both of you guys have an extra large border around it. Not sure why because it shouldnt be that way by default. Can you give us 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: Kleo BBpress refresh and main theme changes #34788
     sharmstr
    Moderator

    maybe

    COPY CODE
    
    
    .bbp-author-avatar img {
    border-radius: 100%;
    }
    

    try changing inline-block to block.

    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 Default Avatar and Uploads #34787
     sharmstr
    Moderator

    1 – Add the following to your childs function.php file

    COPY CODE
    
    /**
    * Add a default avatar to Settings > Discussion
    **/
    //add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' );
    define ( 'BP_AVATAR_DEFAULT', 'http://www.yoursite.com/path/to/your/avatar/imagename.jpg' );
    define ( 'BP_AVATAR_DEFAULT_THUMB', 'http://www.yoursite.com/path/to/your/avatar/imagename_thumb.jpg' );
    

    2 – You can turn off the admin bar in Theme Options – Header Options

    3 – There’s already a menu item to change the avatar. Go to your profile, click Profile, click Change Profile Photo.

    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 BBpress refresh and main theme changes #34785
     sharmstr
    Moderator

    Currently there is no way in kleo to have a forum specific side bar. It uses the main side bar. To work around that, you can install a plugin like the one I mentioned. With that plugin, you can set widgets to only display on certain pages. Add all the forum widgets you want to your main sidebar. Then with the help of the plugin I mentioned, set all the widget to NOT display on the forum page, and set all the forum widget to ONLY display on the forum page.

    If you want the exact widgets that bbpress uses, you’ll have to find out from them which ones they are because they are not standard bbpress widgets.

    You can round any image with border-radius:100%. You just need to determine the class name the avatar is using.

    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 – Blog / Category Page Layout? #34781
     sharmstr
    Moderator

    Something is screwing up your page because it shouldn’t be like that by default. What’s the little box on the right hand side of the page? I think it says “edit”. What’s producing 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: H3 to H2 tags for the Featured Item.. items #34777
     sharmstr
    Moderator

    Oooops.

    Most of the shortcode templates are in /plugins/k-elements/shortcodes/templates. That h3 tag is the 3 line from the bottom in kleo_featured_item.php. I’m not sure if you can copy that to your child theme or not.

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

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

    in reply to: Posts – Comment page numbers – no styling #34758
     sharmstr
    Moderator

    +1


    @kieran
    – where you 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

    in reply to: target _blank on single activity #34757
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/buddypress-activity-links-open-in-new-window

    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 BBpress refresh and main theme changes #34754
     sharmstr
    Moderator

    For part #2
    – Theme Options -> bbPress -> Layout: Left Sidebar
    – Settings -> Forums -> Enable forum root should show topics by freshness
    – Use a plugin like Conditional Widgets or similar to only display forum specific widgets on forum page
    – Look for widgets that show forum list with count (default forum list only shows names), forum tag cloud, etc.

    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: Portfolio pagination order #34747
     sharmstr
    Moderator

    Awesome. You’re welcome.

    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: Portfolio pagination order #34739
     sharmstr
    Moderator

    I think I understand. Try this in your functions.php file. Let me know if that’s what you needed.

    COPY CODE
    
    function kleo_post_nav( $same_cat = false ) {
    	// Don't print empty markup if there's nowhere to navigate.
    	$next = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( $same_cat, '', false );
    	$previous     = get_adjacent_post( $same_cat, '', true );
    
    	if ( ! $next && ! $previous ) {
    		return;
    	}
    	?>
    	
    	<nav class="pagination-sticky member-navigation" role="navigation">
    		<?php
    		if ( is_attachment() ) :
    			previous_post_link( '%link', __( '<span id="older-nav">Go to article</span>', 'kleo_framework' ) );
    		else :
                if ($next) {
                    next_post_link( '%link',  '<span id="older-nav"><span class="outter-title"><span class="entry-title">' . $next->post_title . '</span></span></span>', $same_cat );
                }
                if ($previous) {
    			    previous_post_link( '%link', '<span id="newer-nav"><span class="outter-title"><span class="entry-title">' . $previous->post_title . '</span>', $same_cat );
                }
            endif;
    		?>
    	</nav><!-- .navigation -->
    	
    	<?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: K-Elements fatal error #34735
     sharmstr
    Moderator

    Did you also upgrade to kleo 2.1.1? You didnt say. If not,

    Manual update by FTP.
    – Connect to your server.
    – Go to wp-content/themes/ and copy “kleo” folder to your computer so you have a backup of your old files.
    – Extract kleo.zip that you have downloaded from Themeforest. Make sure the resulting “kleo” folder has a style.css in it. Delete on your server all files inside wp-content/themes/kleo and then copy all files inside “kleo” folder to your server in wp-content/themes/kleo

    Last step is to go in WP Admin – Theme options and save the options since some dynamic elements might have been added and to make sure you get the latest 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: Improving KLEO site speed with caching plugin #34716
     sharmstr
    Moderator

    Thank you so much for sharing 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: Homepage shop #34706
     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: Homepage shop #34702
     sharmstr
    Moderator

    The pencil icon above the grid. 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: How to remove 'Free to Call Us' #34701
     sharmstr
    Moderator

    Back to my search question, do you remember where you searched from? Was it the top search bar while in the “general questions” forum? That’s the only place I could find where “free to call us” didnt return any information.

    For the record, I dont work here so I’m just trying to figure out why we get some many of the same questions. I’m thinking it has to do with the search context.

    I also noticed that typing in your subject didn’t return any useful topics. Hmmmm.

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

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

    in reply to: Change button size #34699
     sharmstr
    Moderator

    [kleo_button kleo_icon icon="facebook" title="Facebook" href="https://www.facebook.com/mypage" target="_blank" style="highlight" size="" el_class=".sidebarBtn"]

    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 remove 'Free to Call Us' #34698
     sharmstr
    Moderator

    Like I said, I wasn’t trying to be rude. If you go to the “Where” delete the info in main menu info and 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: How to remove 'Free to Call Us' #34695
     sharmstr
    Moderator

    Quick question. Did you do a search for this? I’ve personally answered this several times. Not trying to be rude. Its an honest question.

    Anyhow, you have to remove it from WP and Buddypress pages.

    WP Admin – Theme Options – Buddypress
    WP Admin – Theme Options – Header Options

    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: "Click" behavior for tabs #34694
     sharmstr
    Moderator

    One other thing to try is to build the same page in a standard wp page instead of a portfolio. Just to see if it works. Portfolios are new and there might be a few more issues to sort 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

    in reply to: "Click" behavior for tabs #34691
     sharmstr
    Moderator

    So I imported your code and it works fine on my site. I cant reproduce the image container not loading nor the up movement when you click on the tabs. I looked at your pages source code and didn’t notice any errors or a lot of extra plugins, but can you try to disable any non-essential plugins? Just trying to determine if there’s a conflict. You can also try switching to the parent kleo theme to rule out any changes you have made.

    As far as preventDefault, that’s already set on the tab.

    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: Missing space in metadata info on mobile #34671
     sharmstr
    Moderator

    Its not so much missing a space as in a space character. The time is set to block on wide displays and inline with small displays. Anyhow, pop some padding before it. Put this in your child style.css file or in quick css located in theme options.

    COPY CODE
    
    article .article-meta .post-meta a.post-time:after {
    padding-left: 2px;
    }
    

    Let me know if that works.


    @abe
    – please fix in core. thanks.

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

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

    in reply to: Blog Post next buttons? #34668
     sharmstr
    Moderator

    Because apparently I dont know how to spell. Sorry about that.

    COPY CODE
    
    .pagination-sticky {
    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: "Click" behavior for tabs #34666
     sharmstr
    Moderator

    One last thing. Can your respond privately with your VC code that you’re using on this page? Switch over to classic mode, click on the text tab and copy all the code. Might be best to attach a text file. Thanks.

    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: "Click" behavior for tabs #34663
     sharmstr
    Moderator

    Okay, My browser is so tall that the entire page fits and cant go up. I reduced the size and now see the issue. I’ll get back to you soon.

    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: "Click" behavior for tabs #34662
     sharmstr
    Moderator

    Yep. I got the message. I’m using win7 w/Chrome and dont see any ‘jump’ issues when clicking the tabs. But there’s only 2 tabs, not 7. Only Saturday and Sunday are there.

    I’ve been at this all day so I’ll take a look at your other issue tomorrow AM. In the meantime, add the 7 tabs or show me somewhere that has the issue. And I’d like free lessons after I’ve figure it out. LOL

    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: Css For Forum Widgets? #34661
     sharmstr
    Moderator

    For anyone not brave enough to do the custom widget option, here’s the combined css that takes care of it all. You just need to remember to change the colors to suit your theme style.

    COPY CODE
    
    
    /* Forum Widget Styles */
    h4.widget-title {
    	color:#777777;
    }
    .widget_display_replies,
    .widget_display_views,
    .widget_display_topics {
        padding: 6px 0 16px;
        list-style: none;
        color:#777777;
    }
     
    .widget_display_replies ul,
    .widget_display_views ul, 
    .widget_display_topics ul {
        padding-right: 0;
        padding-left: 0;
    }
    
    .widget_display_replies li:before,
    .widget_display_views li:before, 
    .widget_display_topics li:before {
        margin-left: 10px;
        margin-right: 2px;
    	color: #C0C0C0;
    }
    
    .sidebar .widget_display_replies li ,
    .sidebar .widget_display_views li ,
    .sidebar .widget_display_topics li {
        padding: 6px 0;
        border-bottom: 1px solid #e5e5e5;
        list-style: none;
    }
    
    #footer .widget_display_replies li,
    #footer .widget_display_views li, 
    #footer .widget_display_topics li {
        padding: 6px 0;
        border-bottom: 1px solid #e5e5e5;
        list-style: none;
    }
    
    .widget_display_replies li:first-child,
    .widget_display_views li:first-child, 
    .widget_display_topics li:first-child {
        border-top: 1px solid #e5e5e5;
    }
     
    /* Recent entries */
    .widget_display_replies ul, 
    .widget_display_views ul, 
    .widget_display_topics ul {
        padding-left: 0;
    }
    .widget_display_replies li:before, .widget_display_views li:before, .widget_display_topics li:before { content: "\e86c"; margin-right: 10px; margin-left: 2px; font-family: "fontello"; /*color: #dedede;*/ text-decoration: none; }
    .widget_display_replies .post-date, .widget_display_views .post-date, .widget_display_topics .post-date { display: block; font-size: 11px; color: #777; margin: 5px 0 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: Featured posts on mobile are not clickable #34654
     sharmstr
    Moderator

    No problem. That was a tricky one to figure out, but I learned something new, so that’s always good.

    Side note about the child theme. Whenever you update Kleo, it updates the parent. Its supposed to. But never enable it. People make that mistake all the time after an update. Just update it and leave it deactivated.

    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: Css For Forum Widgets? #34653
     sharmstr
    Moderator

    Also, if you dont want to do the custom widget option, you can look at this. Basically all I did was search for ‘widget_recent_entries’ css and copied into my child css and changed the name to widget_display_topics. The only thing that wont work is the colors since those are set dynamically through theme options. So you’ll have to hard code the colors you want. But at the very list it should help with your alignment issues.

    COPY CODE
    
    .widget_display_topics {
    	padding: 6px 0 16px;
    	/*border-bottom-style: solid;
    	border-bottom-width: 1px;*/
    	list-style: none;
    }
    
    .widget_display_topics ul {
        padding-right: 0;
        padding-left: 0;
    }
    
    .widget_display_topics li:before {
        margin-left: 10px;
        margin-right: 2px;
    }
    
    .sidebar .widget_display_topics li {
    	padding: 6px 0;
    	border-bottom-style: solid;
    	border-bottom-width: 1px;
    	list-style: none;
    }
    
    #footer .widget_display_topics li {
    	padding: 6px 0;
    	border-bottom-style: solid;
    	border-bottom-width: 1px;
    	list-style: none;
    }
    
    .widget_display_topics li:first-child {
    	border-top-style: solid;
    	border-top-width: 1px;
    }
    
    /* Recent entries */
    .widget_display_topics ul {
    	padding-left: 0;
    }
    .widget_display_topics li:before { content: "\e86c"; margin-right: 10px; margin-left: 2px; font-family: "fontello"; /*color: #dedede;*/ text-decoration: none; }
    .widget_display_topics .post-date { display: block; font-size: 11px; color: #777; margin: 5px 0 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: Css For Forum Widgets? #34649
     sharmstr
    Moderator

    I went a different route. All that really needs to happen is setting the class name of the widget to “widget_recent_entries” and it will pick up all the styling from the posts widget. So I just copied the widgets code and created a new custom widget.

    Attached is forum-widget.txt. If you want to use it, put it in your child theme (change .txt to .php) and call it in your functions.php file.

    COPY CODE
    
    
    require_once( trailingslashit( get_stylesheet_directory() ) . 'whateverdirectoryyouwantinkleo-child/forum-widgets.php' );
    
    

    Its only for (bbpress) Recent Topics, but you can do the same with the other ones. Just rename the classes and functions by putting custom_ in front of them. And changing

    COPY CODE
    
    'classname'   => 'custom_widget_display_topics'
    

    to

    COPY CODE
    
    'classname'   => 'widget_recent_entries',
    
    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: Featured posts on mobile are not clickable #34643
     sharmstr
    Moderator

    Its because you have rtMedia deactivated. Activate it and you should be good to go. (I tested this on my site and the same thing happened when I deactivated rtMedia.)

    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: Css For Forum Widgets? #34641
     sharmstr
    Moderator

    Yeah, that’s why i used stuff like [id^=bbp] because of the lack of targets. I’m digging into someone elses issue at the moment, but I’ll get back to 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: Featured posts on mobile are not clickable #34638
     sharmstr
    Moderator

    Can you bump up the level? I cant see plugins.

    Also, you should be running the kleo child theme. This has nothing to do with your issue, but it will make any customization upgrade safe. Here’s some info on moving your settings from Kleo to Kleo Child: https://archived.seventhqueen.com/forums/topic/newbie-mess-up-manipulating-parent-theme#post-30484

    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,001 through 10,040 (of 11,328 total)

Log in with your credentials

Forgot your details?