Forum Replies Created
-
Author
-
RaduModerator
Hi,
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE#buddypress .activity li.updated_profile { display: none; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Please add this css to your wp-admin -> theme options -> styling options -> quick CSS
COPY CODEbody.home span.activity { display: none; } #groups-list .search-item p.date { display:none; } #profile span.activity { display: none; }
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You can change the background and border with this CSS
COPY CODE.reveal-modal { background: url(http://imgsv.imaging.nikon.com/lineup/lens/zoom/normalzoom/af-s_dx_18-140mmf_35-56g_ed_vr/img/sample/sample1_l.jpg); border: 10px solid #fafafa; }
Add this css to your wp-admin -> theme options -> styling options -> quick css
Replace image url with your desired image url, replace #fafafa with your desired color.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You should to add some empty lines to can fill the page with “content”
Add some BR’sCOPY CODE<br> <br> <br> <br> <br> <br>
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorIt’s done,
I’ve used this function
COPY CODEfunction KleoAddSlideUnderPosts( $content ) { if( is_single() ) { $revslidershortcode = do_shortcode('[rev_slider alias="acc3"]'); $content .= $revslidershortcode; } return $content; } add_filter('the_content', 'KleoAddSlideUnderPosts');
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
The code can be pasted in bp-custom.php from wp-content/plugins/
COPY CODEdefine ( 'BP_AVATAR_DEFAULT', 'http://www.petfinder.com/wp-content/uploads/2012/11/101418789-cat-panleukopenia-fact-sheet-632x475.jpg' );
Replace http://www.petfinder.com/wp-content/uploads/2012/11/101418789-cat-panleukopenia-fact-sheet-632×475.jpg with your desired default img.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Please add this css to your wp-admin -> theme options -> styling options -> quick css
COPY CODE.revslider-head.absolute-head .form-wrapper { margin-top: 50px !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You have added to head this ?
COPY CODE<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
The resource it seems to be loaded.
cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this snippet to your wp-content/theme/kleo-child/functions.php
COPY CODEfunction add_before_my_siderbar() { ?> < ?php if (is_archive()) { ?> <div class="sidebar sidebar-main col-sm-3 sidebar-3rr"> <div class="inner-content widgets-container"> < ?php dynamic_sidebar('for home'); ?> </div><!--end inner-content--> </div><!--end sidebar--> < ?php } ?> < ?php } add_action( 'get_sidebar', 'add_before_my_siderbar' ); function add_before_my_siderbar() { ?> < ?php if (is_archive()) { ?> <div class="sidebar sidebar-main col-sm-3 sidebar-right"> <div class="inner-content widgets-container"> < ?php dynamic_sidebar('For Custom Taxonomy'); ?> </div><!--end inner-content--> </div><!--end sidebar--> < ?php } ?> < ?php } add_action( 'get_sidebar', 'add_before_my_siderbar' );
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE#header .is-sticky .header-scrolled { background-color: #fff !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
If you are locally i cannot view the example running, try to set position relative for that button via CSS
COPY CODEposition:relative !important
Let me know
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
I’ve used this code instead
COPY CODEfunction add_before_my_siderbar() { ?> <?php if (is_archive()) { ?> <div class="sidebar sidebar-main col-sm-3 sidebar-3rr"> <div class="inner-content widgets-container"> <?php dynamic_sidebar('for home'); ?> </div><!--end inner-content--> </div><!--end sidebar--> <?php } ?> <?php } add_action( 'get_sidebar', 'add_before_my_siderbar' );
The problem was this class "sidebar-3rr"
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Done
I’ve added in child theme content-product.php to wp-content/themes/sweetdate-child/woocommerce/content-product.php
the content of the content-product.php is
COPY CODE<?php /** * The template for displaying product content within loops. * * Override this template by copying it to yourtheme/woocommerce/content-product.php * * @author WooThemes * @package WooCommerce/Templates * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product, $woocommerce_loop; // Store loop count we're currently on if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; } // Store column count for displaying the grid if ( empty( $woocommerce_loop['columns'] ) ) { $woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 ); } // Ensure visibility if ( ! $product || ! $product->is_visible() ) { return; } // Increase loop count $woocommerce_loop['loop']++; // Extra post classes $classes = array(); if ( 0 == ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 == $woocommerce_loop['columns'] ) { $classes[] = 'first'; } if ( 0 == $woocommerce_loop['loop'] % $woocommerce_loop['columns'] ) { $classes[] = 'last'; } ?>
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
I see this notice on your localization plugin dashboard on woocommerce section
COPY CODECompatibility: Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won't be executed anymore. Please contact the Author about that.
Use loco translate instead : https://docs.woothemes.com/document/woocommerce-localization/
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css to wp-admin -> theme options -> general settings ->quick css
COPY CODE#buddypress .message-search { width: 100% !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
I’ve tried again and it works, i received this email
COPY CODEThanks for registering! To complete the activation of your account please click the following link: http://earlyinterventionist.com/activation/c46b033cbce0e6e1524fa6828132e6b8/
I accessed the link and i receive success notification ( see attachment )
Regarding the whitepage, i not see something like that, the dashboard it works as you can see in second screenshot.
I don’t see any problem with the theme.
Make a test with a new email address that you have not using to signup on your website.
And if you still encounter problems please tell me exact steps to reproduce your described issues.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.RaduModeratorHi,
There is no option to change the order of those elements.
It can be done but i will require some custom modifications to the article template file.
Regarding the custom text after article please add this function to wp-content/themes/kleo-child/functions.php
COPY CODEfunction KleoAddSlideUnderPosts( $content ) { if( is_single() ) { $MyText = '<h3 style="text-align: center;">My Custom Text</h3>'; $content .= $MyText; } return $content; } add_filter('the_content', 'KleoAddSlideUnderPosts');
Replace My Custom Text with your desired text
NOTE : Child theme needs to be activated.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
TRy to add this in quick css from wp-admin -> theme options -> general settings -> quick css
COPY CODE@media (max-width:768) { div.w2dc-content .w2dc-fields-group .w2dc-field-content { display: block !important; } }
Let me know
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try with this css
COPY CODE#buddypress div.activity-meta { padding: 0 !important; margin: 0 !important; } #buddypress .activity-list .activity-content .activity-inner { margin: 0 !important; padding: 0 ; padding-bottom: 10px !important; } #buddypress ul.item-list li { padding-top: 0px !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorThis issue is happening because the iframe has width and height specified.
You can make this available only for tablets and desktops by using this
COPY CODE@media (min-width:750px) { .article-content iframe { max-height: 440px !important; } }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add the CSS’s to wp-admin -> theme options -> general settings -> quick CSS
Space reduced
COPY CODE#buddypress div.activity-meta {padding-bottom: 10px !important;}
Square button
COPY CODE.logged-in #buddypress div.activity-meta a.button { border-radius: 1px !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE.article-content p iframe { max-height: 440px !important; }
Let me know
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorPlease check now, it should work.
i’ve used this css
COPY CODE@media screen and (max-width: 768px) { .vc_navbar li, .navbar-header { display: block !important;} }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Sorry for the late reply,
Please add this css to wp-admin -> theme options -> general settings- > quick css
COPY CODE.article-content .page-links { display: inline-block; text-align: center; margin-top: 20px; width: 100%; font-size: 1.2em; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You can use breadcrumbs from yoast in kleo by copying this file : /wp-content/themes/kleo/page-parts/general-header-section.php
to : wp-content/themes/kleo-child/page-parts/Then open general-header-section.php from wp-content/themes/kleo-child/page-parts/ and before last div paste the code from above. ( see screenshot )
COPY CODE<?php if ( function_exists('yoast_breadcrumb') ) {yoast_breadcrumb('<div class="container"><p id="breadcrumbs">','</p></div>');} ?>
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.RaduModeratorHi,
Try like this
COPY CODEdiv#kleo-login-modal .row { background-image: url(http://www.keenthemes.com/preview/metronic/theme/assets/global/plugins/jcrop/demos/demo_files/image1.jpg); } div#kleo-login-modal .kleo-pop-title-wrap.main-color {background-color:transparent;color: #FFF !important;} div#kleo-login-modal .kleo-fb-wrapper { background:none !important; }
Add this css to wp admin -> theme options -> general settings -> quick css or in kleo-child/style.css
Replace http://www.keenthemes.com/preview/metronic/theme/assets/global/plugins/jcrop/demos/demo_files/image1.jpg with your image url.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Please provide an dummy account to can view your website, i receive this
COPY CODEOops! You’ve reached an area that isn’t associated with your purchase. If you think you reached this page and this is incorrect, please contact us at support@deeporigins.com. and we’ll make sure to take care of you! If you’re already a member or if you’ve been logged out on accident, please login below.
Our latest version of Kleo is 3.1.3
Make sure that this issue is not caused by some plugin by disabling all plugins that not comes once with kleo.
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css to wp-admin -> theme options -> general settings- > quick css or in kleo-child/style.css
COPY CODEul.dropdown-menu.sub-menu.pull-left li {background-color: darkblue;} ul.dropdown-menu.sub-menu.pull-left li a { color:#fff !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
template_notices is part of buddypress
read this : https://buddypress.org/support/topic/modifying-output-of-template_notices/
The action is present in many files of our theme
COPY CODETargets Occurrences of 'template_notices' in Directory \KLEO 3.1.1\kleo Found Occurrences (17 usages found) Usage in string constants (17 usages found) kleo (17 usages found) bbpress (4 usages found) content-single-user.php (1 usage found) (14: 24) <?php do_action( 'bbp_template_notices' ); ?> form-forum.php (1 usage found) (60: 27) <?php do_action( 'bbp_template_notices' ); ?> form-reply.php (1 usage found) (49: 27) <?php do_action( 'bbp_template_notices' ); ?> form-topic.php (1 usage found) (66: 27) <?php do_action( 'bbp_template_notices' ); ?> buddypress\activity (1 usage found) index.php (1 usage found) (13: 20) <?php do_action( 'template_notices' ); ?> buddypress\activity\single (1 usage found) home.php (1 usage found) (2: 20) <?php do_action( 'template_notices' ); ?> buddypress\blogs (1 usage found) create.php (1 usage found) (4: 19) <?php do_action( 'template_notices' ); ?> buddypress\forums (1 usage found) index.php (1 usage found) (84: 24) <?php do_action( 'template_notices' ); ?> buddypress\groups (2 usages found) create.php (1 usage found) (19: 21) <?php do_action( 'template_notices' ); ?> index.php (1 usage found) (15: 21) <?php do_action( 'template_notices' ); ?> buddypress\groups\single (1 usage found) group-header.php (1 usage found) (74: 13) do_action( 'template_notices' ); buddypress\members (4 usages found) activate.php (1 usage found) (7: 21) <?php do_action( 'template_notices' ); ?> register.php (3 usages found) (10: 22) <?php do_action( 'template_notices' ); ?> (20: 22) <?php do_action( 'template_notices' ); ?> (186: 22) <?php do_action( 'template_notices' ); ?> buddypress\members\single (1 usage found) member-header.php (1 usage found) (66: 19) <?php do_action( 'template_notices' ); ?> kleo-framework\lib (1 usage found) function-facebook-login.php (1 usage found) (353: 14) add_action( 'template_notices', 'kleo_fb_register_message' );
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
This issue will be fixed in next update of kleo until then i will provide you a temporary solution for these.
1. Comment submit button
COPY CODEbody.single input#submit { padding: 14px 20px; font-size: 16px; line-height: 1.33; border-radius: 4px; border-color: #e30613; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #e30613; cursor: pointer; border: 1px solid transparent; }
2.Empty category
COPY CODEbody.archive .page-content input#searchsubmit { padding: 3px 20px; font-size: 16px; line-height: 1.33; border-radius: 4px; border-color: #e30613; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #e30613; cursor: pointer; border: 1px solid transparent; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try whith css
COPY CODE.navbar-transparent.on-dark-bg .navbar .navbar-nav>li { margin-top:30px !important } .navbar-transparent.on-dark-bg .navbar .navbar-nav>li>a {line-height: 30px !important;}
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
It works try now.
COPY CODE<?php $user_id = bp_displayed_user_id(); $getusername = bp_get_displayed_user_username(); $args = array( 'type' => 'alphabetical', 'max' => 6, 'user_id' => $user_id ); if ( bp_has_groups ( $args )) { ?> <div class="inner-right"> <h3><?php echo $firstname; ?>'s <a href="http://www.cultexposure.com/members/<?php echo $getusername; ?>/groups/">groups</a></h3> <ul id="profile-group-list-wrap" class="my-groups-list item-list"> <?php while ( bp_groups() ) : bp_the_group(); ?> <?php $image_url = groups_get_groupmeta( bp_get_group_id(), 'bpcp_group_cover' ); ?> <?php print_r($image_url);?> <li class="profile-group-list" style="background-image:url('<?php echo $image_url; ?>')" > <div class="item-avatar"> <a href="<?php bp_group_permalink() ?>"><?php bp_group_avatar_thumb() ?></a> </div> <div class="item"> <div class="item-title"><a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>"><?php bp_group_name() ?></a></div> <div class="item-meta"><span class="activity"><?php bp_group_member_count() ?></span></div> </div> </li> <?php endwhile; ?> </ul> <div class="homepage-btn"> <a href="http://www.cultexposure.com/members/<?php echo $getusername; ?>/groups/"><span></span>Browse your groups</a> </div> </div> <?php } ?>
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try with this css
COPY CODE.social-header { position: fixed !important; width: 100% !important; display: block !important; margin-bottom: 10px !important; height:35px } .kleo-main-header.header-scrolled { margin-top: 33px !important; } div#undefined-sticky-wrapper { margin-top: 35px; }
Let me know
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this css to your wp-admin -> theme options -> general settings- > quick css
COPY CODEbody.home .vc_btn3-container.vc_btn3-inline { text-align: center !important; margin: 0 auto !important; display: table; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
You should put this shortcode into a text widget in sidebar under members widget.
COPY CODE[kleo_search_members before="Advanced Search" profiles=1]
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this shortcode to : wp-admin -> theme options -> side menu -> before menu text
COPY CODE[kleo_search_form context="members,groups,post,page,forum,product,portfolio" placeholder="Search..."]
Let me know if it works.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Add this function to kleo-child/functions.php
COPY CODEfunction MyRedirect() { if(is_page('register')) { wp_redirect( 'http://cpachess.com/register/', 301 ); exit; } } add_action('template_redirect','MyRedirect');
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try with this
COPY CODE$image_url = groups_get_groupmeta( bp_get_group_id(), 'bpcp_group_cover' );
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Sorry for misunderstanding,
Please replace this file /wp-content/themes/sweetdate/members/single/messages/messages-loop.php with the attached file.
Add also this CSS to wp-content/themes/sweetdate-child/style.css
COPY CODEtd.thread-star a span.bp-screen-reader-text { position: relative !important; }
This fix will be implemented in next sweetdate update.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.December 2, 2015 at 15:14 in reply to: Make Sidebar-Widget-Menu’s “not” collapsed at pageload. #90555RaduModeratorHi,
The css will be added to wp-admin -> theme options -> general settings -> quick css
COPY CODE.sidebar ul.menu li.parent ul.sub-menu { display: block !important; }
Let me know if it works.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts