Forum Replies Created
-
Author
-
sharmstr
ModeratorYou’re welcome. It would be easier to exclude. Hopefully they’ll add that in the future.
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
ModeratorCouple of things to check.
Add the video to a post using the WP add media button. Can you see the video on the front end?
Have you tried different browsers?
Just trying to isolate where the issue is?
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
ModeratorSince you’re using HTML5 video, you needed to specify all video formats to work on all browsers. See if the test video works on ipad now (I dont have one). The hide controls is only for the bottom controls, not for the play and pause. I put this in the VC style settings for the page to hide the play and pause
COPY CODE.tp-video-play-button { display: none !important; }
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 missunderstood
You can use the WP functions is_front_page or is_page(‘ID’).
COPY CODEif (!is_front_page() && !is_page('8175') ){ putRevSlider('headerbanner'); }
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
ModeratorRespond privately with admin credentials so I can have a look. Your video isnt showing up on windows 7 / chrome.
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 look in rev slider, they tell you how to specify the page to put it on. Go to the slider settings and click on Embed Slider, then expand Advanced Embedding.
COPY CODEputRevSlider('headerbanner', '8175');
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
ModeratorRead this: https://archived.seventhqueen.com/documentation/kleo#shortcodes
You need to edit the page using Visual Composer. To add a shortcode, click on the + icon where you want to add it. To edit an existing one, hover your mouse over it and click the pencil 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
sharmstr
ModeratorTry this
COPY CODE$categories_list = get_the_term_list( $post->ID, 'portfolio-country', '', ', ' ); $categories_list .= ' ,'; $categories_list .= get_the_term_list( $post->ID, 'portfolio-city', '', ', ' ); $categories_list .= ' ,'; $categories_list .= get_the_term_list( $post->ID, 'portfolio-state', '', ', ' );
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’re welcome.
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 get this sorted?
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 get this sorted?
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’s not the correct style.css file. You either need to add it to /kleo-child/style.css or to Theme Options > General > 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
ModeratorThough if you have a post tagged with one of the categories you have selected and also tagged with one you want to exclude, I’m guessing it will show up. Havent tested 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
ModeratorIts tied to whatever you have set for your blog in Theme Options > Blog > Display Type
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
ModeratorSelect all the categories except for the one you dont want shown.
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 cant put parameters at the end of the url. I believe the only way to do that is to build a slider, then you can set loop video to disable.
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
ModeratorSites is added if you have a multisite installation
Put this in your child theme’s functions.php file and edit as you wish
COPY CODEfunction rename_bp_tabs() { global $bp; $bp->bp_nav['friends']['name'] = 'Colleagues'; } add_action( 'bp_init', 'rename_bp_tabs');
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’re welcome.
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
ModeratorMoving because this isnt a bug
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
ModeratorOnly forum mods and admins can see 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
ModeratorI suggest you read the documentation on shortcodes in VC: https://archived.seventhqueen.com/documentation/kleo#shortcodes
You should also watch some of the videos on the VC site that show the basics of using it.
Your form id must match the id in the shortcode. See attached. If they match, then make sure you have fields in your form.
For the button, change # to whatever link you want to go to when the button is clicked.
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
ModeratorThe inject code does work. So perhaps you are not inputting your adsense code correctly. See if I change the code I gave you to inject a “Hello, World” message, it does display on the site.
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
ModeratorGreat.
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
ModeratorIt doesnt automatically set it has your home page. All it does is import the page. Have you looked in WP Admin > Pages for it? If you want it to be your home page, you need to set that up in Wp Admin > Settings > Reading.
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
ModeratorGo to WP Admin > Appearance > Kleo Demo Data. In your case, scroll down the the product landing page demo and click on import.
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
ModeratorGo to Pages and click on your connected page to edit it. Hover your mouse over the bps form shortcode and click on the pencil icon. Change the form ID to the ID of the form you created. Click save.
Hover over the Kleo Button shortcode and click the pencil icon to edit 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
ModeratorKleo Post Grid will never work since it only works on conventional post types. rtMedia images are attachment post types. They dont have featured images or content. I’ll talk to the developers about removing that from the list. A long time ago, you couldnt even select a post type, but there were many people who wanted to use it with their custom post types so they added that. They didnt do any filtering and really there hasnt been any issue until yours.
The standard way of changing the media sizes for rtMedia galleries is to change your thumbnail sizes in the plugin settings. As for displaying authors names, you might find a solution to this on the rtMedia forums.
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
ModeratorIn your child theme’s functions.php file, use this code
COPY CODEadd_action('kleo_before_main_content', 'inject_adsense', 10); function inject_adsense() { //your adsense code here }
Here is a list of hooks: https://archived.seventhqueen.com/documentation/kleo#hooks
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
March 14, 2016 at 18:17 in reply to: Another un-updateable update for WPBakery Visual Composer #110409sharmstr
ModeratorThanks Abe 🙂
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
ModeratorIt doesnt work that way. You need to do separate functions for each taxonomy
COPY CODE$categories_list = get_the_term_list( $post->ID, 'portfolio-country', '', ', ' ); $categories_list .= get_the_term_list( $post->ID, 'portfolio-city', '', ', ' ); $categories_list .= get_the_term_list( $post->ID, 'portfolio-state', '', ', ' );
Again, it doesnt work that way…
COPY CODEif (get_post_type() == 'portfolio-audition' || get_post_type() == 'portfolio-job') {
Here is the WP codex on those functions
https://codex.wordpress.org/Function_Reference/get_the_term_list
https://developer.wordpress.org/reference/functions/get_post_type/Hope that helps
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 didnt follow my instructions. I’ve explained that you needed to copy the kleo_entry_meta function located in /kleo/functions.php to your child theme FIRST. Then you need to change the code to suit your needs given the examples I’ve supplied. Here’s the function
COPY CODEfunction kleo_entry_meta( $echo = true, $att = array() ) { global $kleo_config; $meta_list = array(); $author_links = ''; $meta_elements = sq_option( 'blog_meta_elements', $kleo_config['blog_meta_defaults'] ); // Translators: used between list items, there is a space after the comma. if ( in_array( 'categories', $meta_elements ) ) { $categories_list = get_the_category_list(__(', ', 'kleo_framework')); } if (get_post_type() == 'portfolio-audition') { $categories_list = get_the_term_list( $post->ID, 'portfolio-country', '', ', ' ); } else { // Translators: used between list items, there is a space after the comma. if ( in_array( 'categories', $meta_elements ) ) { $categories_list = get_the_category_list(__(', ', 'kleo_framework')); } } $date = sprintf( '<a href="%1$s" rel="bookmark">' . '<time class="entry-date" datetime="%2$s">%3$s</time>' . '<time class="modify-date hide hidden updated" datetime="%4$s">%5$s</time>' . '</a>', esc_url( get_permalink() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_html( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); if ( is_array( $meta_elements ) && !empty( $meta_elements ) ) { if ( in_array( 'author_link', $meta_elements ) || in_array( 'avatar', $meta_elements ) ) { /* If buddypress is active then create a link to Buddypress profile instead */ if (function_exists( 'bp_is_active' ) ) { $author_link = esc_url( bp_core_get_userlink( get_the_author_meta( 'ID' ), $no_anchor = false, $just_link = true ) ); $author_title = esc_attr( sprintf( __( 'View %s\'s profile', 'kleo_framework' ), get_the_author() ) ); } else { $author_link = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); $author_title = esc_attr( sprintf( __( 'View all POSTS by %s', 'kleo_framework' ), get_the_author() ) ); } $author = sprintf( '<a href="%1$s" title="%2$s" rel="author">%3$s %4$s</a>', $author_link, $author_title, in_array( 'avatar', $meta_elements ) ? get_avatar( get_the_author_meta( 'ID' ), 50) : '', in_array( 'author_link', $meta_elements ) ? '<span class="author-name">' . get_the_author() . '</span>' : '' ); $meta_list[] = '<small class="meta-author author vcard">' . $author . '</small>'; } if ( function_exists( 'bp_is_active' ) ) { if ( in_array( 'profile', $meta_elements ) ) { $author_links .= '<a href="' . bp_core_get_userlink( get_the_author_meta( 'ID' ), $no_anchor = false, $just_link = true ) . '">' . '<i class="icon-user-1 hover-tip" ' . 'data-original-title="' . esc_attr(sprintf(__('View profile', 'kleo_framework'), get_the_author())) . '"' . 'data-toggle="tooltip"' . 'data-placement="top"></i>' . '</a>'; } if ( bp_is_active( 'messages' ) ) { if ( in_array( 'message', $meta_elements ) ) { $author_links .= '<a href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( get_the_author_meta( 'ID' ) ) ) . '">' . '<i class="icon-mail hover-tip" ' . 'data-original-title="' . esc_attr(sprintf(__('Contact %s', 'kleo_framework'), get_the_author())) . '" ' . 'data-toggle="tooltip" ' . 'data-placement="top"></i>' . '</a>'; } } } if ( in_array( 'archive', $meta_elements ) ) { $author_links .= '<a href="' . esc_url(get_author_posts_url(get_the_author_meta('ID'))) . '">' . '<i class="icon-docs hover-tip" ' . 'data-original-title="' . esc_attr(sprintf(__('View all posts by %s', 'kleo_framework'), get_the_author())) . '" ' . 'data-toggle="tooltip" ' . 'data-placement="top"></i>' . '</a>'; } } if ( $author_links != '' ) { $meta_list[] = '<small class="meta-links">' . $author_links . '</small>'; } if (in_array( 'date', $meta_elements ) ) { $meta_list[] = '<small>' . $date . '</small>'; } $cat_tag = array(); if ( isset( $categories_list ) && $categories_list ) { $cat_tag[] = $categories_list; } if ( isset( $tag_list ) && $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)) && in_array( 'comments', $meta_elements )) { $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>'; } $meta_separator = isset( $att['separator'] ) ? $att['separator'] : sq_option( 'blog_meta_sep', ', ') ; if ( $echo ) { echo implode( $meta_separator, $meta_list ); } else { return implode( $meta_separator, $meta_list ); } }
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’s not available.
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
ModeratorIts located in /page-parts/general-before-wrap.php. There is a hook that will allow you to inject content there called kleo_before_main_content. What are you looking to do?
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
ModeratorPlease refer to this topic. Developers already notified: https://archived.seventhqueen.com/forums/topic/another-un-updateable-update-for-wpbakery-visual-composer
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
ModeratorPlease refer to this topic. Developers already notified: https://archived.seventhqueen.com/forums/topic/another-un-updateable-update-for-wpbakery-visual-composer
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
ModeratorPlease refer to this topic. Developers already notified: https://archived.seventhqueen.com/forums/topic/another-un-updateable-update-for-wpbakery-visual-composer
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
March 14, 2016 at 16:09 in reply to: Another un-updateable update for WPBakery Visual Composer #110359sharmstr
Moderator@abe – to be clear
VC is asking to be updated
RevSlider is asking for an update AND a license key. They have moved the license key notice to the plugin list just under revslider and you cant click anything to hide it.Kleo users – You must run the bundled versions (vc 4.10 / revslider 5.2.1). Do not try to update. Ignore the update messages.
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
ModeratorYes, underneath the existing code.
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
ModeratorWhat’s on line 30?
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
ModeratorTry this in your quick css
COPY CODE.activity-inner img { display: block; }
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