Forum Replies Created

Viewing 40 posts - 10,281 through 10,320 (of 11,328 total)
  • Author
  • in reply to: Main portfolio page #33460
     sharmstr
    Moderator

    Right. That’s what I want. Its your own fault. You give us this amazing example of how to stylize your portfolio list http://seventhqueen.com/themes/kleo/portfolio-full-width/ but then the breadcrumb and ‘back to portfolio’ links take you to the less impressive (but still very nice looking) archive page http://seventhqueen.com/themes/kleo/portfolio/

    I’m guessing I can just add all the shortcodes from the full width overlay to the portfolio-archive.php 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: Remove meta info #33457
     sharmstr
    Moderator

    There’s a few ways you can do it, but maybe the easiest is to just add a conditional statement in the kleo_entry_meta function that will check to see if its on a post page. If so, then display it.

    I havent tested this, but try it in your functions.php file.

    COPY CODE
    
    
    function kleo_entry_meta($echo=true, $att=array()) {
    		if (is_single()) :
    		$meta_list = array();
    		
    		// Translators: used between list items, there is a space after the comma.
    		$categories_list = get_the_category_list( __( ', ', 'kleo_framework' ) );
    
    		// Translators: used between list items, there is a space after the comma.
    		$tag_list = get_the_tag_list( '', __( ', ', 'kleo_framework' ) );
    
    		$date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
    			esc_url( get_permalink() ),
    			esc_attr( get_the_time() ),
    			esc_attr( get_the_date( 'c' ) ),
    			esc_html( get_the_date() )
    		);
    
    		$author = sprintf( '<a href="%1$s" title="%2$s" rel="author">%3$s</a>',
    			esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    			esc_attr( sprintf( __( 'View all posts by %s', 'kleo_framework' ), get_the_author() ) ),
    			get_the_author()
    		);
    
    		$meta_list[] = '<small class="meta-author">'.$author.'</small>';
    		$meta_list[] = '<small>'.$date.'</small>';
    		
    		$cat_tag = array();
    		
    		if ( $categories_list ) {
    			$cat_tag[] = $categories_list;
    		}
    		
    		if ($tag_list) {
    			$cat_tag[] = $tag_list;
    		}
    		if (!empty($cat_tag)) {
    			$meta_list[] = '<small class="meta-category">'.implode(", ",$cat_tag).'</small>';
    		}
    		
    		//comments
    		if (!isset($att['comments']) || (isset($att['comments']) && $att['comments'] !== false)) {
    		$meta_list[] = '<small class="meta-comment-count"><a href="'. get_permalink().'#comments">'.get_comments_number().' <i class="icon-chat-1 hover-tip" 
    			data-original-title="'.sprintf( _n( 'This article has one comment', 'This article has %1$s comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) ).'" 
    			data-toggle="tooltip" 
    			data-placement="top"></i></a></small>';
    		}
    		
    		if ($echo) {
    			echo implode(", ", $meta_list);
    		}
    		else {
    			return implode(", ", $meta_list);
    		}
    		
    	endif;
    }
    
    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 No borders #33455
     sharmstr
    Moderator

    How did you add the background?

    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: Columns not being display correctly #33454
     sharmstr
    Moderator

    Did you install the latest version of k-elements from the link I gave you? That fixes the 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

     sharmstr
    Moderator

    btw – the bp function is bp_get_the_notification_mark_read_link()

    COPY CODE
    
    /**
    	 * Return the mark read link for the current notification.
    	 *
    	 * @since BuddyPress (1.9.0)
    	 */
    	function bp_get_the_notification_mark_read_link() {
    
    		// Start the output buffer
    		ob_start(); ?>
    
    		<a>" class="mark-read primary"><?php _e( 'Read', 'buddypress' ); ?></a>
    
    		<?php $retval = ob_get_clean();
    
    		return apply_filters( 'bp_get_the_notification_mark_read_link', $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

     sharmstr
    Moderator

    Its a buddypress thing, but I like your idea. I’m working on something for abe that will allow you to bulk manage notifications (read, unread and delete) and also filter them by component (friend request, messages, forums, activity) . I’ll add something like that. Hey, do you want to text out my plugin before I hand it over?

    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: Post Update button missing from groups #33451
     sharmstr
    Moderator

    First link to pop up when searching this forum for your issue: https://archived.seventhqueen.com/forums/topic/attachment-and-post-buttons-for-whats-new-posts-on-groups-were-hidden

    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: message can't be sent from ''Friends / private message '' #33450
     sharmstr
    Moderator

    Please mark resolved and also take a look at the latest info on this: https://archived.seventhqueen.com/forums/topic/private-message-button

    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 new sidebar for Forum only #33449
     sharmstr
    Moderator

    Excellent. Please mark resolved.

    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 and PDFs #33448
     sharmstr
    Moderator

    Sorry, I dont understand why that’s a problem. Add the icon you want and type the link to your pdf file in the “add a link” box.

    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 and PDFs #33445
     sharmstr
    Moderator

    If you’re talking about links to them, then you can add the link using text box or perhaps a button or even an icon.

    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 thought explained that. Kleo is not responsible for the grid post shortcode or the excerpt. The shortcode is created and displayed by visual composer. The excerpt is handled by wordpress. If you go to the bottom of the link I sent you, it shows you how to get the excerpt based on number of characters instead of number of words.

    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: Private message button #33438
     sharmstr
    Moderator

    +1 Its because he’s using bp_get_member_user_id() which only works in the members loop.

    Try changing the the filter_message_button_link function (around like 1800) to this.

    COPY CODE
    
    function filter_message_button_link( $link = '' ) {
    	$bp_user_id = (bp_get_member_user_id() == '' ? bp_displayed_user_id() : bp_get_member_user_id() );
    	$link = wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( $bp_user_id ) );
    	return $link;
    }
    

    Basically it determines if a value is returned from bp_get_member_user_id(). If so, then it will assume that its in the members loop (friends tab in profile or directory listing) and will use that value. If not, then it assumes that your on a profile page and will use bp_displayed_user_id().

    I think that covers all the of the places a message button is displayed. Let me know if that works.

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

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

    in reply to: Change Buddypress "Change Profile Photo" URL #33431
     sharmstr
    Moderator

    Nice job chazzzzy. I was going to ask about mobile. 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

     sharmstr
    Moderator

    Hello,

    The post grid is a visual composer shortcode that comes standard with VC. If you look through their code, you’ll see that they call a function called getPostExcerpt(). Within that function, they are calling the standard get_the_excerpt wordpress function which is based on word count. http://codex.wordpress.org/Function_Reference/get_the_excerpt

    Near the bottom of that page you’ll see “Use get_the_excerpt() to print an excerpt by specifying a maximum number of characters.”

    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 items not getting displayed as grid #33428
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/fatal-error-message#post-32651

    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: Back End Log In #33352
     sharmstr
    Moderator

    Hmmm. I just tested mine by putting it in maintenance mode (I’d never tried it before). I was able to get to both

    http://www.mysite.com/wp-login.php
    and
    http://www.mysite.com/wp-admin/

    What happens when you go to /wp-login.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: want page code #33351
     sharmstr
    Moderator

    You seem to be asking a lot of basic questions. You should read the documentation. To answer your question, you can get it here… in the documentation. https://archived.seventhqueen.com/documentation/kleo#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: Columns not being display correctly #33344
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/fatal-error-message#post-32651

    – Profile image. The more you add the smaller they will get. It was never intended to display only one avatar.

    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: Uploaded video via activity stream not displaying #33343
     sharmstr
    Moderator

    I had/have a similar issue with a plugin that screws up the /upload end-point that rtMedia needs. Have you tried disabling plugins?

    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 CSS #33341
     sharmstr
    Moderator

    If I’m understanding, you have at least two slides. The first is an image and the second is a video?

    Go into you second slide and click on the video layer. Make sure the align, poistion & styling is set to upper left and x=0 and y=0.

    Then click on “edit video” and try enabling cover.

    Let me know if that works. If not, export your slider and attach it here. I’ll take a look at 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: Memberhips #33339
     sharmstr
    Moderator

    No. Not really. Everyone will be an author. A few select will be editors.

    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 and Registration Problems #33336
     sharmstr
    Moderator

    Sorry, I didnt mean to put the link twice. This is the second link https://archived.seventhqueen.com/forums/topic/register-modal-pop-up

    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 and Registration Problems #33335
     sharmstr
    Moderator

    Re: Registration in modal
    https://archived.seventhqueen.com/forums/topic/kleo-features-requests/page/3/#post-31765
    https://archived.seventhqueen.com/forums/topic/kleo-features-requests/page/3/#post-31765

    Re: Facebook login. The only thing I see that might be wrong is its missing the trailing slash http://mytalent.la/

    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 Buddypress "Change Profile Photo" URL #33333
     sharmstr
    Moderator

    Tricky 🙂

    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 menu not same #33332
     sharmstr
    Moderator

    Have you set up your menu? wp admin -> appearance -> menus. After that, if you want it to have a transparent background you have to enable that option on 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: Memberhips #33330
     sharmstr
    Moderator

    Do you really think I use any ‘standard’ anything? LOL. I’m using buddypress with a highly customized registration process.

    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: Designed Clients page is showing blog layout instead #33320
     sharmstr
    Moderator

    Oh sorry. Either in your childs style.css file or in Theme Options -> General Settings -> Quick 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

    in reply to: How can i create facebook login for my user #33319
     sharmstr
    Moderator

    No. Read the facebook documentation. Everything you need is right there. https://developers.facebook.com/docs/web/tutorials/scrumptious/register-facebook-application/

    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 can i create facebook login for my user #33316
     sharmstr
    Moderator

    edit: forgot the link again https://developers.facebook.com/apps

    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 can i create facebook login for my user #33315
     sharmstr
    Moderator

    When you go to this link, is your application listed? If not, click “add new app” and create it.

    If it is listed and you’ve put the correct id in theme options then it should work. If it doesn’t then tell us whats happening? Give us a link. Tells us what error messages you’re getting.

    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: Post Excerpt field missing? #33314
     sharmstr
    Moderator

    Excellent. Please mark resolved.

    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: Designed Clients page is showing blog layout instead #33313
     sharmstr
    Moderator

    For now do this

    COPY CODE
    
    section.footer-color.text-center.portfolio-back {
    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: Designed Clients page is showing blog layout instead #33312
     sharmstr
    Moderator

    @abe

    I came across this the other day. I used the full width overlay to design my portfolio listing page. No issue there. But when you drill down into a single portfolio, the ‘portfolio’ link in the breadcrumb takes you to the portfolio archive page. For me, this is a non-issue because I can easily modify the archive-portfolio.php template, but for your basic users…. lets just say we’ll be seeing a lot of topics 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: How can i create facebook login for my user #33307
     sharmstr
    Moderator

    Wp Admin -> Theme Options -> Misc -> Facebook integration: Turn it on. You also need to set up your facebook app id https://developers.facebook.com/apps

    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: Memberhips #33305
     sharmstr
    Moderator

    hey splendor, I feel bad that I never answer your questions anymore, but they have all been about memberships/pmpro and I dont use that :/ (at least I’m bumping this for you. shhhhh)

    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 new sidebar for Forum only #33304
     sharmstr
    Moderator

    https://archived.seventhqueen.com/forums/topic/problem-with-bb-press

    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: Sending messages #33301
     sharmstr
    Moderator

    That code didn’t print out correctly, so see attached for what you should change in messages-loop.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

    Attachments:
    You must be logged in to view attached files.
    in reply to: Sending messages #33300
     sharmstr
    Moderator

    A few changes.

    1 – You should remove the word ‘fool’ on line 48. That’s left over from my testing 🙂

    2 – You should add a default subject. It can be anything. If you leave it as a space, there’s nothing to link the open message to and your users wont be able to read the message. I’m using “No subject”.

    COPY CODE
    
    // If subject is empty, set it to something.
    if ( empty( $_POST['subject'] ) ) {
         $_POST['subject'] = "No subject";
    }
    

    Alternatively, you could modify the displayed subject in the messages loop to add some text for the view message link to attach to. copy kleo/buddypress/members/single/messages-loop.php to your child theme and replace

    COPY CODE
    
    <p><a>" title="<?php _e( "View Message", "buddypress" ); ?>"><?php _e( "View Message", "buddypress" ); ?><?php bp_message_thread_subject(); ?></a></p>
    

    with

    COPY CODE
    
    <p><a>" title="<?php _e( "View Message", "buddypress" ); ?>"><?php _e( "View Message", "buddypress" ); ?>: <?php bp_message_thread_subject(); ?></a></p>
    

    You can change the second ‘View Message’ with anything you like.

    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: Post Excerpt field missing? #33297
     sharmstr
    Moderator

    Click on screen options in the upper right and enable it. (note: do this while on the post edit screen.)

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

Log in with your credentials

Forgot your details?