Forum Replies Created

Viewing 40 posts - 1,041 through 1,080 (of 1,218 total)
  • Author
  • in reply to: rtmedia widget masonry #35030
     sharmstr
    Moderator

    Do it in css

    COPY CODE
    
    .widget-item-listing img {
    height: auto !important;
    width: auto !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: Login Shortcode #34904
     sharmstr
    Moderator

    Depends on what you’re after. Do you want it to pop up in a modal or display the actual form?

    Adding the login modal is easy. You just need to trigger it via setting the kleo-show-login class name.

    here’s an example using a button

    COPY CODE
    
    [kleo_button title='Login' style='see-through' icon='star-empty' tooltip_position='left' tooltip_action='hover' size='lg' el_class='kleo-show-login']
    

    I’m not sure if there is a shortcode to display the form on a page. If not, you can probably hack it by creating a sidebar (wp admin – appearance – sidebar), then add the buddypress login widget to it (wp admin – appearance – widgets) then use the VC Widgetised Sidebar shortcode to display it.

    If you use a layout with a sidebar, you can just add the Buddypress login widget to the sidebar and it will show up on all of your 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: 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: 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: 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: 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: 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: 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: 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: Change link color in Revolution slide #34627
     sharmstr
    Moderator

    add !important to it

    COPY CODE
    
    
    color:#fff !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: Moving tags location #34576
     sharmstr
    Moderator

    I am the queen. Look how many crowns I have. LOL. just kidding.

    Do this instead. Change your function call in the loop to this.

    COPY CODE
    
    <?php echo my_bbp_get_topic_tag_list(); ?>
    

    Then in your functions.php file add this

    COPY CODE
    
    
    function my_bbp_get_topic_tag_list( $topic_id = 0, $args = '' ) {
    
    		// Bail if topic-tags are off
    		if ( ! bbp_allow_topic_tags() )
    			return;
    
    		// Parse arguments against default values
    		$r = bbp_parse_args( $args, array(
    			'before' => '<span class="bbp-topic-tags" style="float:right;"><small class="meta-category">' . esc_html__( 'Tagged:', 'bbpress' ) . ' ',
    			'sep'    => ', ',
    			'after'  => '</small></span>'
    		), 'get_topic_tag_list' );
    
    		$topic_id = bbp_get_topic_id( $topic_id );
    
    		// Topic is spammed, so display pre-spam terms
    		if ( bbp_is_topic_spam( $topic_id ) ) {
    
    			// Get pre-spam terms
    			$terms = get_post_meta( $topic_id, '_bbp_spam_topic_tags', true );
    
    			// If terms exist, explode them and compile the return value
    			if ( !empty( $terms ) ) {
    				$terms  = implode( $r['sep'], $terms );
    				$retval = $r['before'] . $terms . $r['after'];
    
    			// No terms so return emty string
    			} else {
    				$retval = '';
    			}
    
    		// Topic is not spam so display a clickable term list
    		} else {
    			$retval = get_the_term_list( $topic_id, bbp_get_topic_tag_tax_id(), $r['before'], $r['sep'], $r['after'] );
    		}
    
    		return $retval;
    	}
    
    
    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: Only the administrator can change the avatar? #34544
     sharmstr
    Moderator

    That’s really a question better suited for the buddypress forums. But you can hide the option on the front end with this

    COPY CODE
    
    li#change-avatar-personal-li {
    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: Breadcrumb and page title #34540
     sharmstr
    Moderator

    You need single quotes around each type

    (‘adventures’, ‘hotels’, ‘vacation’)


    @abe

    Anyway we can filter that with something like

    COPY CODE
    
    add_filter('kleo_meta_boxes','kleo_my_custom_post_types');
    function kleo_my_custom_post_types( $pages ) {
      $pages[] = 'custom_post_type_name';
      return $pages;
    }
    

    If not now can you cook up some magic and make it so in the future?

    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: Breadcrumb and page title #34533
     sharmstr
    Moderator

    Yes, you need to change

    COPY CODE
    
    ‘pages’ => array( ‘custom_post_name’ ), // Post type
    

    to your post type name.

    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: Protect a link with PMPro #34529
     sharmstr
    Moderator

    I’ve thought a bit about this. The /group/2 part points to a specific x-profile group which is a slug to the second profile group you created in user profile fields. (it has nothing to do with the position of the group in the profile menu).

    So, in your functions.php file, you might be able to do something like

    COPY CODE
    
    if (bp_the_profile_group() == "2" && pmpro_getMembershipLevelForUser($user_id) == member_has_access) {
    show the info
    }
    

    I dont use pmPro so I’m not sure what membership levels there but hopefully you get the point.

    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 tags location #34520
     sharmstr
    Moderator

    I got it. I totally forgot that I had made my ‘mark topics read’ plugin print out next to the favorite and subscribe links.

    Anyhow, copy plugins/bbppress/templates/default/bbpress/loop-replies.php to /kleo-child/bbpress/loop-replies.php

    Add the following after _e(‘posts’,’bbpress’) around like 25

    COPY CODE
    
     <small><?php bbp_topic_tag_list(); ?></small>
    

    Then copy /kleo/bbpress/content-single-topic.php to /kleo-child/bbpress-content-single-topic.php and comment out bbp_topic_tag_list function around line 24.

    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? #34461
     sharmstr
    Moderator

    Put this in your css

    COPY CODE
    
    .pagnation-sticky {
    display:none;
    }
    
    

    That will also remove it from the members profile. Let me know if that’s not what you want.

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

    specify an extra class name (lets say you call it sidebarBtn) then use that class name in your child’s css

    COPY CODE
    
    .sidebarBtn {
    width: 200px;
    }
    
    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? #34361
     sharmstr
    Moderator

    Try this. It was a bit difficult because the bbpress widgets print out different divs. The below will make them look similar to the kleo recent post widget, but things like the date format and username are controlled by the widget itself, not through css

    COPY CODE
    
    [id^=bbp].widget li {
    	padding-bottom: 10px;
    	min-height: 50px;
    }
    [id^=bbp].widget .bbp-author-name {
    	//display: none;
    }
    [id^=bbp].widget .bbp-author-avatar {
     	clear: both;
     	display: inline-block;
      	float: left;
     	margin-bottom: 5px;
     	margin-right: 10px;
    }
    [id^=bbp].widget .bbp-author-avatar:empty {
        display: none;
    }
    [id^=bbp].widget .bbp-author-avatar img {
    	width: 40px;
    	height: 40px;
    	border-radius: 100%;
    }
    
    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 admin-ajax.php cpu and memory load #34223
     sharmstr
    Moderator

    Well, god knows I tried to find where the t was being set in the code. But check out these calls. On closer inspection, its a weird carachter then t=0

    http://5.63.155.58/performance-status?info=30&sort=1&tp=0&prd=1&prd_b=&prd_e=&host=&script=&uri=&mode=0

    COPY CODE
    
    GET:/wp-admin/admin-ajax.php?action=kleo_bp_notifications_refresh¤t=0
    

    what the heck is this? ¤

    Could it have something to do with translations?

    (look at me edit. ahahaha)

    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: Showing featured image at top of Page has GONE?! #34163
     sharmstr
    Moderator

    That’s awesome and very clever. Regarding having users set colors and styles, I’m working on something similar today, but it will be injecting those setting into Visual Composer code since I wanted something more than a vanilla WP page. Basically I designed the page using VC then copied the VC code into my template page which runs the code via the do_shortcode call. You can change the code dynamically by injecting the user settings into the code

    basic example showing the $user_set_color being injected into the shortcode.

    COPY CODE
    
    
    do_shortcode('[vc_row inner_container="yes" text_color="' . $user_set_color . '" section_type="main" bg_position="top" bg_position_horizontal="left" bg_repeat="no-repeat" bg_cover="true" bg_attachment="false" parallax_speed="0.1" padding_top="40" padding_bottom="40" min_height="0" border="bottom" css_animation="right-to-left"][vc_column width="1/1"][kleo_icon icon="android" icon_size="4x" tooltip_position="left" tooltip_action="hover" target="_self"][/vc_column][/vc_row])'
    
    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: visual composer vertical line placement #34111
     sharmstr
    Moderator

    Hmmm. I just played with the border settings for row and column and couldnt get it to display as I would expect. So try this instead. Go into the column setting for the column on the left and add a Extra class name called column-border-right.

    Then add the following css to the page settings (gear icon top right of vc form)

    COPY CODE
    
    .column-border-right {
        border-right: 1px solid;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

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

    in reply to: Showing featured image at top of Page has GONE?! #34047
     sharmstr
    Moderator

    I’m working blindly here, so forgive me if I’m way off base. I looked at your page source code and it looks like you’re using Child Pages Shortcodes, so I installed it. I created a Members page and put the child page shortcode into that. Then I created 3 member pages and set them to children of the Members page. In each of those children pages I set a featured image. All three of the child pages showed their featured image on the member listing page.

    But, when I went into the individual child page, the featured image did NOT show up at the top of the page. I cant say for sure if they used to before, I’ll just say that I know how to fix it…. Copy /kleo/content-page.php to your child theme (you are using a child theme, right?). Near the bottom around line 103 you’ll see ‘the_content’. Above that line, add the following

    COPY CODE
    
    <?php the_post_thumbnail(); ?>
    

    So, to summarize.

    1 – Not sure why your featured images are not showing up using the child pages shortcode. It worked for me. Maybe try resaving those pages. And make sure you’re running k-elements 2.1.1 (you can get it here: https://archived.seventhqueen.com/forums/topic/fatal-error-message#post-32651)

    2 – Not sure if the featured image ever showed up on the top of pages like they do in posts using the Kleo theme, but adding the code I gave you will fix it.

    Let me know if any of this works 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: No Featured content display above regular articles #33931
     sharmstr
    Moderator

    What I did on my site was put a header above the carousel called “Featured Posts” and then one above the rest of them called “Recent Posts”.

    copy kleo/featured-posts.php into your child theme and edit the carousel div code

    COPY CODE
    
    
    $before_featured = '<h2>Featured Posts</h2><div class="kleo-carousel-container">
    				<div class="kleo-carousel-items kleo-carousel-post" data-min-items="3" data-max-items="3">
    					<ul class="kleo-carousel">';
    	$after_featured = '</ul></div>';
    	$after_featured .= '<div class="carousel-arrow">
    			<a href="#"><i class="icon-angle-left"></i></a>
    			<a href="#"><i class="icon-angle-right"></i></a>
    		</div> ';
    	$after_featured .= '</div>';
    	$after_featured .= '<h2>Recent Posts</h2>';
    
    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: set related articles to autoplay ? #33921
     sharmstr
    Moderator

    Change the line

    COPY CODE
    
    <div class="kleo-carousel-items kleo-carousel-post" data-min-items="1" data-max-items="6">
    

    to this

    COPY CODE
    
    <div class="kleo-carousel-items kleo-carousel-post" data-min-items="1" data-max-items="6" data-autoplay="true">
    
    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 this area from page… #33918
     sharmstr
    Moderator

    Its actually on 10px. That 49 is for the whole container. Anyhow, try this

    COPY CODE
    
    .main-title {
    padding: 0 0 10px 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: set related articles to autoplay ? #33908
     sharmstr
    Moderator

    copy /kleo/page-parts/posts-related.php to your child theme. Then add the data-autoplay attribute to the kleo-carousel-post div

    COPY CODE
    
    <div class="kleo-carousel-items kleo-carousel-post" data-min-items="1" data-max-items="6" data-autoplay="true">
    
    
    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 picture viewer black #33885
     sharmstr
    Moderator

    Kleo has styling for it. As far as I can tell, each section of that container has a background-color associated with it. That makes it a bit of a bear to change. You’ll also have to be careful of font colors.

    COPY CODE
    
    .mfp-content #rtmedia-single-media-container .rtmedia-media {
    background-color: #333!important;
    }
    
    .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta {
    background-color: #333!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: Addthis side bar is not visible .CSS Problem #33881
     sharmstr
    Moderator

    Becareful with that. Its used in a lot of places. You should look for a way to isolate it to only the sidebar. Like maybe

    COPY CODE
    
    .sidebar .kleo-transform .animated {
    opacity: 1;
    }
    
    

    or maybe even isolate it to the addthis div/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: Facebook Login and Menu items #33878
     sharmstr
    Moderator

    I dont see a difference in your screenshots, but

    1 – You need to turn them on. Click on ‘screen options’ on the menu page. Its in the upper right.

    2 – You can add the modal trigger anywhere you want by adding the ‘kleo-show-login’ class to any link or button or shortcode.

    COPY CODE
    
    <a href="#">Login</a>
    
    COPY CODE
    
    [kleo_button title='Login' style='see-through' icon='star-empty' tooltip_position='left' tooltip_action='hover' size='lg' el_class='kleo-show-login']
    

    Both of these have been asked several times btw.

    Where’s my mars bar? 😀

    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: Addthis side bar is not visible .CSS Problem #33874
     sharmstr
    Moderator

    Wouldn’t it be

    COPY CODE
    
    
    .animated {
    opacity: 1;
    }
    

    or perhaps

    COPY CODE
    
    
    .kelo-transform .animated {
    opacity: 1;
    }
    

    If not, give me a link and I’ll take a look.

    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 style topbar with background color & font color? #33822
     sharmstr
    Moderator

    Add this css. Dont change the colors until you look at it and see what css you need to change to get the color you want in the place you want.

    COPY CODE
    
    
    .header-color {
    	background-color: yellow !important;
    }
    
    .top-bar {
    	background-color: green;
    }
    .header-color .top-menu li > a, .header-color #top-social li a {
    	color: red;
    }
    
    .header-color .top-menu li > a:hover, .header-color #top-social li a:hover {
    	color: blue;
    }
    

    Let me know if that works 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: Disable WP Dashboard Access For Users #33804
     sharmstr
    Moderator

    You’re sort of asking two things here.

    1 – Remove the link.

    2 – Block access to the backend.

    If someone is familiar with wordpress, they can still get to the backend even if you’ve removed the link to it.

    Those are both WP specific questions and there are plugins for both. With that said, here’s some code to get you started.

    1 – To remove the link you use $wp_admin_bar->remove_menu() in your functions.php file. Example

    COPY CODE
    
    function remove_admin_bar_links() {
    	global $wp_admin_bar;
    	$wp_admin_bar->remove_menu('wp-logo');
    	$wp_admin_bar->remove_menu('site-name');
    	$wp_admin_bar->remove_menu('new-content');
    }
    add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );
    

    2 – I personally use the adminimize plugin to control what is displayed based on user type. https://wordpress.org/plugins/adminimize/ Its granular which makes it a bit overwhelming and probably overkill for your requirement. Do a search for either a code snippet or a simple 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: Unable to center or justify left buttons in a column #33782
     sharmstr
    Moderator

    Instead of going into the row settings, go into the column setting (pencil above the 3 buttons you have). Then set an Extra class name. Lets say you called it center-this. Then in your child css put

    COPY CODE
    
    .center-this {
    text-align: center;
    }
    

    https://wordpress.org/plugins/bbpress-auto-suggest-topics-based-on-new-topic-title/
    https://archived.seventhqueen.com/forums/topic/bbpress-live-search

    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: Revolution Slider with Search Feature on Home Page #33767
     sharmstr
    Moderator

    You should be able to add the search from shortcode to a layer on the slide. It works for buttons so I think it should work for forms.

    Build the search from using VC, then switch to classic mode and copy the form shortcode. Should be similar to this

    COPY CODE
    
    
    [kleo_search_form form_style="transparent" type="both" context="post,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

     sharmstr
    Moderator
    COPY CODE
    
    a.dropdown-toggle:after {
    content: "more";
    }
    
    
    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 - 1,041 through 1,080 (of 1,218 total)

Log in with your credentials

Forgot your details?