Forum Replies Created
-
Author
-
Radu
ModeratorYou can edit the login page with visual composer but it’s not what are you looking for, with the next css forms will be hidden and there will be only login with facebook button
Add this css to wp-admin -> theme options -> quick css
COPY CODE.page-id-261 .login-form-wrapper { display: none; }
page id 261 represents the id of the current register page.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHm… unable to reproduce that on my locall install
Maybe you need this, you can control the width of that tables
COPY CODE#buddypress div.profile .dl-horizontal dt { width: 35%; } #buddypress div.profile .dl-horizontal dd { width: 64%; margin-left:38%; }
If you have possibility to put your website somewhere to can take a look at it will be nice and faster problem resolution
cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorTry solution two please : https://www.tipsandtricks-hq.com/apache-mod-security-update-how-to-fix-error-406-or-not-acceptable-issue-259
You run on localhost ? if yes create on your webserver a file named from example phpinfo.php and inside it add this
COPY CODE<?php phpinfo(); ?>
and provide to me the source of that file to can take a look at the settings
Also you can try to de-activate all plugins and test again
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,
Using this kind of CSS code
COPY CODE.woocommerce #main, .woocommerce #main section.container-wrap.main-color { background: red; }
Adding .woocommerce class before any css declaration will by applied only to woocommerce pages
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHmm
That can be a server setting like you have provided
You can try to add this to .htaccess file / reference : http://wordpress.stackexchange.com/questions/99602/cant-access-admin-not-acceptable
COPY CODE<IfModule mod_security.c> SecFilterEngine Off </IfModule>
Also you can try the solutions from there : http://stackoverflow.com/questions/12928360/how-can-i-disable-mod-security-in-htaccess-file
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorAdd this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE#header #ajax_search_container a.ajax_view_all, #header #ajax_search_container .ajax_search_content a { font-size: 12px; }
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,
Take it !
COPY CODE.sa-field-front .select2-container--default .select2-selection--single, .sa-field-front .select2-container--default .select2-selection--multiple, .sa-field-front .select2-container--default.select2-container--focus .select2-selection--multiple { background:#333;} .sa-field-content input { background: #333 !important; } .sa-field-content .sa-field-front .wp-editor-container { background:#333 !important;} div.mce-panel iframe { background:#333 !important; } body#tinymce { background: #333; } .qq-uploader { background: #333; } .article-content #post-maker-container .options-content { background: #333; } div.mce-toolbar-grp { background: #d8d8d8 !important; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
I found this http://docs.wp-rocket.me/article/16-disabling-lazyload-on-specific-posts
And you can try with this function
COPY CODEadd_filter( 'wp', '__deactivate_rocket_lazyload_if_page' ); function __deactivate_rocket_lazyload_if_page() { if( bp_current_component() ) { add_filter( 'do_rocket_lazyload', '__return_false' ); } }
Let me know
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
Add this function to wp-content/thems/kleo-child/function.php
COPY CODE// Add Theme Settings to CPT // // Replace yourCPTslug with your CPT slug // function my_cpt_sq_metabox_general_settings($post_types) { $post_types[] = 'yourCPTslug'; return $post_types; } add_filter('sq_metabox_general_settings', 'my_cpt_sq_metabox_general_settings');
Replace yourCPTslug with your cpt slug
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorOk try to run the function from bp-custom file
So go to /wp-content/plugins/ look for bp-custom.php and paste in it, if there is no file create it
COPY CODEFirst, bp-custom.php runs from the /wp-content/plugins/ folder and is therefore independent from your theme. This is useful for adding code snippets that are BuddyPress-specific. Also, this code will always load regardless of what theme you are using.
https://codex.buddypress.org/themes/bp-custom-php/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorAdd this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE#top-social li a,#top-social li {width: 33px !important;}
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorThis is the selector to removing post titles, it works i’ve tested on your website
COPY CODE.single-post h1.page-title { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorTry with thsese,
COPY CODE@media(min-width:991px){ #buddypress ul.item-list li .activity-inner .fluid-width-video-wrapper iframe {max-height:200px;max-width:400px} .fluid-width-video-wrapper {padding:10% !important;} }
If it’s not ok play with the values until you match your wished values
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
Add this function to wp-content/themes/kleo-child/functions.php
COPY CODE/*************************************************** :: Get social profiles ***************************************************/ if (!function_exists('kleo_get_social_profiles')): function kleo_get_social_profiles($args=false) { $output = ''; $icons = ''; $all_options = get_option("kleo_".KLEO_DOMAIN); $defaults = array( 'container' => 'ul', 'item_tag' => 'li', 'target' => '_blank' ); // Parse incomming $args into an array and merge it with $defaults $args = wp_parse_args( $args, $defaults ); $args = apply_filters('kleo_get_social_profiles_args', $args); //get social data from theme options if (!empty($all_options)) { foreach ($all_options as $k => $opt) { if (substr( $k, 0, 7 ) === 'social_' && !empty($opt) ) { $k = str_replace('social_','',$k); $title = str_replace( array('gplus', 'vimeo-squared', 'pinterest-circled', 'instagramm'), array('Google+', 'Vimeo','Pinterest', 'Instagram'), $k ); $icons .= '<' . $args['item_tag'] . '>'; $icons .= '<a rel="nofollow" target="'.$args['target'].'" href="'.$opt.'"><i class="icon-'.$k.'"></i><div class="ts-text">'.ucfirst($title).'</div></a>'; $icons .= '</' . $args['item_tag'] . '>'; } } } $icons = apply_filters('kleo_get_social_profiles', $icons); if ($icons != '') { $output .= '<' . $args['container'] . ' class="kleo-social-icons">'; $output .= $icons; $output .= '</' . $args['container'] . '>'; } return $output; } add_shortcode( 'kleo_social_icons', 'kleo_get_social_profiles' ); endif;
Will add no follow for all social icons
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorUse this instead
COPY CODE.kleo-search-form #searchform .input-lg { border-radius: 0; margin: 0 !important; height: 45px !important; } .kleo-search-form #searchform .input-group-btn { top:10px !important;}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorTry this instead
COPY CODE@media(min-width:991px){ #buddypress ul.item-list li .activity-inner .fluid-width-video-wrapper iframe {max-height:480px} .fluid-width-video-wrapper {padding:20% !important;} }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorAdd this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE@media(min-width:991px){ #buddypress ul.item-list li .activity-inner .fluid-width-video-wrapper iframe {max-height:300px} }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorCOPY CODE.kleo-search-form #searchform .input-lg { border-radius: 0; margin: 0 !important; height: 45px !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
ModeratorAdd also this css
COPY CODE#socket form#searchform, #socket .kleo-search-form #searchform .input-lg { opacity: 1 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorReplace with this
COPY CODE.header-color .top-menu li > a, .header-color #top-social li a { line-height: 100px; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorIn wp-admin -> theme options -> general settings -> quick css
Let me know
try also with this
COPY CODEh1.product_title {font-size: 3em !important;line-height: 2em !important;}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorThe debug.log contains nothing regarding to the import problem.
You have added those to .php.ini on your root installation ?
COPY CODEmax_execution_time = 60 memory_limit = 256M post_max_size = 65M upload_max_filesize = 64M
Those have been loaded ? you can verify by creating a file named phpinfo.php and inside it put this
COPY CODE<?php phpinfo(); ?>
Then open that page http://yourdomain.com/phpinfo.php and check for the values that you have added in php.ini are the same.
If yes, copy the php.ini file to wp-admin folder
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
That cannot be aligned because it’s wrapped in a container that generates a padding and margins and use this instead
COPY CODE.checkbox legend {font-size: 2em;color : black;font-weight: bold;margin-left: 10px;padding: 20px 0;list-style-type: circle;display: list-item;}
It will differentiates for the values
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 selector
COPY CODEul#menu-megaprimarymenu .caret:after{ color:red !important;}
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorUse this CSS, it’s applied only to that page if you want to have that style site-wide remove .page-id-8803 from the CSS
COPY CODE.page-id-8803 .kleo-search-form #searchform .input-lg { border-radius: 0; } .page-id-8803 .kleo-search-form { max-width: 500px; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try with this CSS
COPY CODE.social-header.header-color { min-height: 100px; }
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 solutionOctober 11, 2016 at 18:22 in reply to: Disable entry animation on kleo News highlight and news focus VC elements #139094Radu
ModeratorHi,
Use those CSS’s
COPY CODE.news-focus.kleo-transform .one-by-one-animated .start-animation .el-appear, .news-focus.kleo-transform .kleo-thumbs-animated.th-appear img.start-animation, .kleo-transform .start-animation.el-appear { -webkit-animation: none; -o-animation: none; animation: none; opacity: 1; -moz-transform: none; -webkit-transform: none; -o-transform: none; transform: none; } .news-ticker.kleo-transform .one-by-one-animated .start-animation .el-appear, .news-ticker.kleo-transform .kleo-thumbs-animated.th-appear img.start-animation, .kleo-transform .start-animation.el-appear { -webkit-animation: none; -o-animation: none; animation: none; opacity: 1; -moz-transform: none; -webkit-transform: none; -o-transform: none; transform: none; }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorReplace the code that i have provided to you with this
COPY CODE#socket form#searchform, #socket .kleo-search-form #searchform .input-lg { height: 40px !important; max-width: 350px; margin: 0 auto; } #socket .kleo-search-form #searchform .input-group-btn { top:8px; }
Replace max-width: 350px; with your desired max width value
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 11, 2016 at 17:49 in reply to: Show featured video full width before title and content #139075Radu
ModeratorHi,
Try with this function and add video to media tab oembed
COPY CODEadd_action('kleo_before_main', 'sq7rdu_show_video_featured_before_content'); function sq7rdu_show_video_featured_before_content() { $video_embed_url = get_post_meta(get_the_ID(), '_kleo_embed', true ) ; if (is_single()) { if ( ! empty( $video_embed_url ) ) { echo apply_filters('kleo_oembed_video', $video_embed_url); } } }
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 CODEdiv#footer .template-page { padding: 0 !important; }
R
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
Try with this css
COPY CODE#buddypress div.profile .dl-horizontal dt { width: 35%; } #buddypress div.profile .dl-horizontal dd { width: 64%; margin-left:38%; }
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 hide that with this CSS
COPY CODE.field-visibility-settings, .field-visibility-settings-toggle, .field-visibility-settings-notoggle { display: none !important; }
If you want to modify this directly to the php files just copy this file wp-content/themes/kleo/buddypress/members/single/profile/edit.php to /wp-content/themes/kleo-child/buddypress/members/single/profile/edit.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,
So practically you want to have more button before the icon ? If yes use the next php function that you will have to add wp-content/themes/kleo-child/functions.php
COPY CODEif( ! function_exists( 'kleo_side_menu_button' ) ) { /** * Add side button to menu * @param string $items * @param object $args * @return string */ function kleo_side_menu_button ( $items, $args ) { if ($args->theme_location == 'primary') { $items .= '<li id="nav-menu-item-side" class="menu-item">' . '<a href="#" class="open-sidebar" onclick="javascript:return false;">' . 'MORE <i class="icon-menu"></i>' . '</a>' . '</li>'; } return $items; } }
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