Forum Replies Created
-
Author
-
sharmstr
ModeratorRight. 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThere’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 CODEfunction 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHow 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDid 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
October 29, 2014 at 17:27 in reply to: Link to READ a notification marks it as READ, doesn't open it #33453sharmstr
Moderatorbtw – 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
October 29, 2014 at 17:23 in reply to: Link to READ a notification marks it as READ, doesn't open it #33452sharmstr
ModeratorIts 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorFirst 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
October 29, 2014 at 17:13 in reply to: message can't be sent from ''Friends / private message '' #33450sharmstr
ModeratorPlease 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorExcellent. Please mark resolved.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorSorry, 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIf 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
October 29, 2014 at 16:45 in reply to: posts grid – decide excerpt length based on number of characters #33442sharmstr
ModeratorI 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
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 CODEfunction 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNice 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
October 29, 2014 at 15:31 in reply to: posts grid – decide excerpt length based on number of characters #33430sharmstr
ModeratorHello,
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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorhttps://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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHmmm. 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorIf 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNo. 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorSorry, 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorRe: 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-31765Re: 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorTricky 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHave 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDo 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorOh 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorNo. 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatoredit: 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhen 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorExcellent. Please mark resolved.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorFor now do this
COPY CODEsection.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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWp 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorhey 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorhttps://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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThat 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 solutionThis 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
ModeratorA 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorClick 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 solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts