Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Use this CSS to increase the dropdown width
COPY CODEform.custom div.custom.dropdown.open.expand ul { min-width:305px !important; }
This will be applied for all dropdowns cuz there is no way to select only that.
The universities field cannot be turned into autocomplete cuz the autocomplete it’s specific for city/location.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just tested and it works,
If you will add a form to a new page or existing one the alert it’s shown
Inside the theme options JS I have this
COPY CODE<script> jQuery(document).ready(function() { document.addEventListener( 'wpcf7submit', function( event ) { if ( '10032' == event.detail.contactFormId ) { alert( "The contact form ID is 10032." ); // do something productive } }, false ); }); </script>
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try to add this CSS to quick CSS area
COPY CODE#undefined-sticky-wrapper { max-height: 110px; }
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
For the scroll issue and sticky footer, try to update the theme to latest version we have updated the scrolling logic and sticky footer.
For the BuddyPress iccons use this css
COPY CODE#buddypress div#item-nav ul li a { font-size:20px !important; }
The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try to use this instead
For mobile
COPY CODE@media(max-width:600px) { .mejs-container embed,iframe,object,video {max-width: 100%;max-height: 350px;} }
For desktop
COPY CODE@media(min-width:600px) { .mejs-container embed,iframe,object,video {max-width: 100%;max-height: 550px;} }
Adjust the 300 and 550 values for your needs
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI see there it’s an IF condition,
Try to put the snippet as authr has provided as example
COPY CODE<script> document.addEventListener( 'wpcf7mailsent', function( event ) { location = 'http://example.com/'; }, false ); </script>
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorUse this CSS
COPY CODEul.pricing-table li.price { position:relative; } ul.pricing-table li.price:before {border-bottom:2px solid red !important;content:" ";width: 60%;display:inline-block;top:40px;position:absolute !important;}
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi
Just add this CSS
COPY CODE.home .five.mobile-four.columns { float: left !important; } .home .seven.mobile-four.columns.kleo-selectbox { float: right !important; } .home .twelve.columns .row > .five.columns {float:right;} .home .mobile-one.columns { float: left !important; } .home .mobile-one.columns label.right { text-align: left; }
Wp-admin -> theme options -> Styling Options -> Quick css
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI see,
Just use this css
COPY CODE.kleo-main-header li.open ul.dropdown-menu { opacity: 1 !important; visibility:visible; } .kleo-main-header li ul.dropdown-menu { opacity: 0 !important; display:block; visibility:hidden; transition: opacity 0.3s ease-in, visibility 0.3s ease-in; }
The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
Moderatorhi,
I cannot login usiing those credentials, please try this css
COPY CODE#buddypress #whats-new-options { height: auto !important; overflow: hidden; display:block !important; visibility:visible !important; }
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
In the first instance try to increase the filter priority and check again.
from
COPY CODEadd_filter('woocommerce_login_redirect', 'login_redirect', 10, 2);
to
COPY CODEadd_filter('woocommerce_login_redirect', 'login_redirect', 99, 2);
Let me know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Use this css
COPY CODE.form-search.custom label { text-align: left; }
Wp-admin -> theme options -> Styling Options -> Quick css
NOTE : Child theme needs to be installed and activated.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Thank you and you’re welcome
Add also this code
COPY CODE.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments textarea { border: 1px solid #ccc !important; background-color: #ffffff !important; color: #333333 !important; }
Please rate us on ThemeForest with 5 stars if you are happy with us.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorIf you will add a class to the row that contains that or if you add a specific class to the accordion you will have to modify the CSS selector by adding as prefix the class name.
Example
COPY CODE.firstcolored .panel-kleo .panel:nth-of-type(1) { background-color: red; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 19, 2017 at 17:10 in reply to: Theme Option Changes Not Sticking & Overriding Previously Set Settings #164633Radu
ModeratorHi,
Sorry for the late reply, I’ve tried to log in to you dashboard to check that, but the credentials are incorrect.
Meanwhile, try to add this line of code to your child theme functions.php and try to save again the theme options.
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );
The function needs to be pasted in wp-content/themes/kleo-child/functions.php
NOTE: Child theme needs to be installed and activated.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Use this CSS
COPY CODE.pmpro_strike_through { text-decoration: line-through; }
Wp-admin -> theme options -> Styling Options -> Quick css
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I see there seems to be encoded, try to add the next filters in functions.php in child theme
add_filter( 'bp_get_the_profile_field_value', 'convert_chars' );
OR
add_filter( 'bp_get_the_profile_field_value', 'bp_xprofile_escape_field_data', 8, 3 );
OR bothCOPY CODEadd_filter( 'bp_get_the_profile_field_value', 'convert_chars' ); add_filter( 'bp_get_the_profile_field_value', 'bp_xprofile_escape_field_data', 8, 3 );
OR
COPY CODEfunction sq7_fix_16072917(){ add_filter( 'bp_get_the_profile_field_value', 'convert_chars' ); add_filter( 'bp_get_the_profile_field_value', 'bp_xprofile_escape_field_data', 8, 3 ); } add_action('init', 'sq7_fix_16072917');
So if you remove from the profile My height is: field the encoding will stop ?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Wired I’ve tested before providing this.
COPY CODE.header-centered .dropdown > .dropdown-menu.sub-menu { border:0 !improtant; box-shadow:none !important; }
Try with important declaration
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This should fix also tthe view in masonry listing
COPY CODE.kleo-masonry article iframe[src*="dailymotion"] { width: 100%; max-height: 187px !important; }
Add also this CSS to quick CSS area.
This will be fixed in next theme update
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just use this CSS
COPY CODE.panel-kleo .panel:nth-of-type(1) { background-color: red; }
The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorEmpty the cache if you have it if still not works provide admin credentials and url in a private reply.
Add this css
COPY CODE#whats-new-options { opacity: 1 !important; display: block !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorTo be clear!
The “home register” can be the register page only if you don’t have required profile fields in BuddyPress ( Users -> Profile Fields ).
Then you should redirect users from original register BuddyPress page to the “home-register” page using this codeCOPY CODE/* Redirect to Profile if Loggedin */ add_action( 'template_redirect', 'redirect_to_specific_page2' ); function redirect_to_specific_page2() { if ( bp_is_register_page() && !is_user_logged_in () ) { $current_user = wp_get_current_user(); $profileurl = $current_user->user_login; wp_redirect( home_url().'/home-register/', 301 ); exit; } }
Then replace home-register with your desired from wp_redirect( home_url().’/home-register/’, 301 ); line
NOTE : Child theme needs to be installed and activated.
The function needs to be pasted in wp-content/themes/kleo-child/functions.php
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The css to makes that white isntead of black it’s next
COPY CODE.rtmedia-container .mfp-content .rtm-lightbox-container { background: #ffffff !important; } .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta { background-color: #fff !important; } #buddypress .rtmedia-like-info {background:#fff !important;} #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons { color: #000 !important; } .rtmedia-container ul#rtmedia_comment_ul li, .rtmedia-activity-container ul#rtmedia_comment_ul li { background-color: #fff !important; } .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments { background-color: #fff !important; } #buddypress #rt_media_comment_form {background:#fff !important;} div#rtmedia-single-media-container { background: #fff !important; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Add this css
COPY CODE#whats-new-options { display: block !important; height: auto; visibility: visible; }
Wp-admin -> theme options -> Styling Options -> Quick css
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Technically each user should log in at least one time to become “active users” then BuddyPress will show the profiles in search results.\
Try to add this functionYou can try to activate manually accounts with this kind of function that updates the user status in database
COPY CODE<?php $user_id = get_current_user_id(); add_user_meta( $user_id, 'user_status', '0' ); ?>
The function needs to be pasted in wp-content/themes/kleo-child/functions.php
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
For making more spacing available on the sidebars use that CSSCOPY CODE.template-page { padding: 0 !important; } .sidebar { padding: 0 !important; }
The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
For the headers, I need to see live example, cuz I’m “blind” in this way
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Use this CSS
COPY CODE.header-centered .dropdown > .dropdown-menu.sub-menu { border:0; box-shadow:none; }
The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
That CSS it’s applied only for mobile. And it not affects the position of the image on desktop just under 991px, under this resolution the image position it’s controlled by
COPY CODEbackground-position: center center !important;
You can set top,right,bottom,left
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The email messages cases can be found/edited in wp-admin -> emails ->
If the debugger says the same
COPY CODE2016-01-07 06:07:51 SMTP ERROR: Failed to connect to server: Connection refused (111) 2016-01-07 06:07:51 SMTP connect() failed.
Ask the hosting support about that
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts