Forum Replies Created
-
Author
-
Radu
ModeratorThe css should be added in wp-admin -> theme options -> general settings -> quick css
By this selector body.archive.post-type-archive.post-type-archive-product.woocommerce.woocommerce-page #main section.container-wrap.main-color the css should apply only to the shop page, but also you can add the css here : https://cdn.seventhqueen.com/sq-support/wp-content/uploads/2016/04/VC_custom-CSS.png and it will applies only to that page.The sidebar bg can be changed like this if you will paste this in quick css it will apply site-wide
COPY CODE.sidebar.sidebar-main { background: red !important; }
Instead red you can add color code or another name of color.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi jokerete,
Let’s try again, use this code it should work
COPY CODEfunction custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
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 solutionApril 18, 2016 at 17:41 in reply to: how to change border color on top where email and social icons are #117308Radu
ModeratorNot marked as solutionApril 18, 2016 at 16:11 in reply to: placeholder text color in quick contact form is too light #117233Radu
ModeratorNot marked as solutionApril 15, 2016 at 20:53 in reply to: placeholder text color in quick contact form is too light #116925Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
Thank you for the nice words !!
Here is your function that will hide the current logged in user in member directory
COPY CODEadd_action('bp_ajax_querystring','sq7_radu_exclude_users',20,2); function sq7_radu_exclude_users($qs=false,$object=false){ //list of users to exclude $excluded_user = bbp_get_current_user_id();//comma separated ids of users whom you want to exclude if($object!='members')//hide for members only return $qs; $args=wp_parse_args($qs); //check if we are searching for friends list etc?, do not exclude in this case if(!empty($args['user_id'])||!empty($args['search_terms'])) return $qs; if(!empty($args['exclude'])) $args['exclude']=$args['exclude'].','.$excluded_user; else $args['exclude']=$excluded_user; $qs=build_query($args); return $qs; }
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 solutionRadu
ModeratorTry with important declaration
COPY CODEspan.second-menu-icon span {display: none;} span.second-menu-icon:before {content: "\f040"; font:normal normal normal 14px/1 FontAwesome !important;}
I’ve loaded the css into your site and it works
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 solutionRadu
Moderator1. The ad code means a image or a code that render a image or text from your ad network, from example you can put this example code to a text block in sidebar
COPY CODE<img src="http://www.linkorangutan.com/wp-content/themes/thesis_16/custom-sample/rotator/sample-4.jpg">
2. If you says your theme is different from ours means that you have modified the theme
Cheers
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 -> styling options -> quick css
COPY CODE@media(max-width:700px){ .forcefullwidth_wrapper_tp_banner { display: none !important; } }
Cheers
RaduHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorAdd both functions this to functions.php child theme
COPY CODEfunction remove_menu_links() { remove_menu_page( 'edit.php?post_type=kleo_clients' ); remove_menu_page( 'edit.php?post_type=kleo-testimonials' ); remove_menu_page( 'edit.php?post_type=portfolio' ); } add_action( 'admin_init', 'remove_menu_links', 9999 ); function remove_admin_bar_links() { echo "<style>\n"; echo '#wp-admin-bar-new-kleo-testimonials,#wp-admin-bar-new-kleo_clients,#wp-admin-bar-new-portfolio { display: none !important;}'; echo "\n</style>"; } add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI cannot find the path to your wordpress install, ask the person that installed the wordpress where are the plugins and theme path.
After you will find out the paths please open this file : “wp-content/plugins/bp-custom.php”
To increase the avatar size make sure that you have next lines added to the file.
COPY CODEif ( !defined( 'BP_AVATAR_THUMB_WIDTH' ) ) define( 'BP_AVATAR_THUMB_WIDTH', 120 ); //change this with your desired thumb width if ( !defined( 'BP_AVATAR_THUMB_HEIGHT' ) ) define( 'BP_AVATAR_THUMB_HEIGHT', 120 ); //change this with your desired thumb height if ( !defined( 'BP_AVATAR_FULL_WIDTH' ) ) define( 'BP_AVATAR_FULL_WIDTH', 580 ); //change this with your desired full size,weel I changed it to 260 <img src="http://buddydev.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"> if ( !defined( 'BP_AVATAR_FULL_HEIGHT' ) ) define( 'BP_AVATAR_FULL_HEIGHT', 580 ); //change this to default height for full avatar
Replace 580 with your desired values
Related to the cover there is nothing wrong with the size, your uploaded image has a very bad quality please upload a image that has a good quality
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorPlease add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE.profile dl dt, .profile dl dd { padding: 0 !important; margin:0 10px !important; }
Have a nice week
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 to add this to wp-admin -> theme options -> general options -> quick css
COPY CODE.wpb_wrapper, .wpb_wrapper p { text-rendering: optimizeLegibility !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 solutionApril 14, 2016 at 16:44 in reply to: How to change TabsContents background color from grey to white? #116597Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
4. Use this css by adding it to wp-admin -> theme options -> general settings -> quick css
COPY CODE.kleo-main-header .nav > li.active > a { background: #00b9f7; }
5. This is only quick solution that i can provide to you , if you will have more than two articles related change from 33 to 50 and if you have more than one remove the snippet.
COPY CODEul.kleo-carousel article { width: 33%; }
6. Strange, other users has replaced that files without any problems, try to re-download archive and try again.
7. You should backup the child theme and if you have modified some of parent theme files backup it to.. also you can backup the theme settings from wp-admin -> theme options then go to -> import/export -> download data file
8. If some users has that filed completed it should work… if no user has completed that filed you will not find any users.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYes, the snippet is for uber menu.
Try this css for the default kleo default menu
COPY CODE.navbar .dropdown-menu li a { font-size: 14px !important; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk,
PLease try this to
COPY CODE.kleo-navbar-fixed.navbar-transparent.pmpro-body-level-required #main-container .article-content { background-color:red; text-align:center; padding:15% 0; color:#FFF; } .kleo-navbar-fixed.navbar-transparent.pmpro-body-level-required #main-container .article-content .pmpro_content_message a { margin-top:20px !important; }
Until we patch this you will have to use these temporary solutions
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 solutionApril 13, 2016 at 20:15 in reply to: How to change TabsContents background color from grey to white? #116379Radu
ModeratorNot marked as solutionRadu
ModeratorHi
COPY CODE.main-color .sidebar-right, .main-color .sidebar-left { background: red !important; }
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 to use this css
COPY CODE.btn.btn-default { background: red; }
The css can be added to wp-admin -> theme options -> general settings -> quick css
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionApril 13, 2016 at 16:57 in reply to: Main Revolution Slider Navigation & Content Not Working #116285Radu
ModeratorOk,
According the console because of these the slider doens’t work
COPY CODEUncaught TypeError: jQuery(...).catcomplete is not a function load-scripts.php?c=1&load[]=jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-posi…:302 Uncaught TypeError: Cannot read property 'hasClass' of undefined
I don’t have ftp so please paste this in wp-config.php from root website folder
define('CONCATENATE_SCRIPTS', false);
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 solutionRadu
ModeratorHi,
Please use this css it should be ok
COPY CODE.home ul.portfolio-items .media { padding: 0 !important; margin: 0 !important; }
Cheers
Radu
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 for single line and for the aligning menu text to right when you are on mobile
COPY CODE@media (max-width:700px) { div#top-social { padding: 10px; } .top-bar > div, .top-menu {width:49%;display:inline-block;border:0 !important; margin:0 !important;padding:0 important;} #header .navbar-nav>li>a { text-align: right; } }
REgarding to this i cannot reprudce : https://archived.seventhqueen.com/wp-content/uploads/2016/03/Products_%E2%80%93_Part_Time_Golf_Co_.png
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