Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Use this
COPY CODE#main-container .wrap-content h1.page-title { padding: 0 !important; margin: 0 !important; }
Add the css 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 solutionRadu
ModeratorHi,
Add this css to wp-admin -> general settings -> quick css
COPY CODEspan.posted_in { display: none !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,
Use this css
This css will be applied only to that page
COPY CODE.page-id-5679 .main-color select { padding: 0px 15px !important; width: 100%; margin-right: 20px; line-height: 1.2em; }
If you want to style in that way dropdown sitewide use this css
COPY CODE.main-color select { padding: 0px 15px !important; width: 100%; margin-right: 20px; line-height: 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 solutionRadu
ModeratorThe font family can be changed with this css rule
COPY CODEul#menu-sweetdate li a { font-family: serif; }
Replace serif with your font family name.
If you want to add a custom font to the theme please follow this : https://archived.seventhqueen.com/forums/topic/how-can-register-japanese-font
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,
The eye can be hided with this css
COPY CODEul.products li .quick-view.hover-tip { display: none; }
You can add a background image with this css
COPY CODE.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { background: url(http://www.exiv2.org/include/img_2158.jpg); background-repeat: no-repeat; background-position: center top; }
Add the css 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 solutionRadu
ModeratorHi,
The counter for what you need is something custom and you will have to develop some functions that count what you need.
And the function should look like this
COPY CODEadd_filter('header_profile_dropdown', 'my_profile_link'); function my_profile_link($links) { $links[] = '<li><a href="' . bp_loggedin_user_domain().'egifts/" rel="nofollow"><small class="label">your_custom_fuction_to_count()</small>eGifts</a></li>'; $links[] = '<li><a href="' . bp_loggedin_user_domain().'following/" rel="nofollow">My Favorite<small class="label">your_custom_fuction_to_count()</small></a></li>'; return $links; }
You should build your functions to count what you need.
Cheers
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 to wp-admin -> theme options -> styling options -> quick css
COPY CODEtable#message-threads li span.unread-count, tr.unread span.unread-count { background: yellowgreen; }
REplace yellowgreen with your color
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Are you referring to that carousel ? “Related posts ?”
If yes use this css
COPY CODE.kleo-carousel li .entry-summary, .kleo-carousel li hr { display: none; }
The css will be added from 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 solutionRadu
ModeratorHi,
Just use this :
COPY CODE.offcanvas-left.offcanvas-type-default .offcanvas-sidebar.is-open, .offcanvas-left.offcanvas-type-overlay .offcanvas-sidebar.is-open { background: brown; }
Replace brown with your desired color
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Apply these styles
COPY CODE.header-color .top-menu li > a, .header-color #top-social li a { color: #fff !important; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou will have to upload the attached file after you unzip it to wp-content/themes/sweetdate-child/members/members-loop.php
Then you will have to paste your adsense code between
COPY CODE<div style="width:728px;height:90px;background-color:red;display:inline-block;"> //ad-here </div>
You can remove width:728px;height:90px;background-color:red; the display:inline-block; is required.
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.Radu
ModeratorHi,
I think the bug is related to the transparent menu, i’ve added this on buglist and this will be fixed on next update, until then please use this css
COPY CODE.pmpro-body-level-required #main-container .article-content { background-color:red; text-align:center; padding:15% 0; color:#FFF; font-size:2em; } .pmpro-body-level-required #main-container .article-content .pmpro_content_message a { margin-top:20px !important; }
Replace background-color:red; with your desired color and also color:#fff with your desired font 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,
I understand,
I will add this to buglist untill we patch this pluase replace the code form above with this
COPY CODE/* Query args */ $args=array( 'post__not_in' => array($post->ID), 'showposts'=> 8, 'orderby' => 'rand', //random posts 'order' => 'ASC' //most recent first );
Also let me know if that works ok.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionApril 4, 2016 at 16:14 in reply to: how to change the background and text color on rtMedia image comments popup box? #114418Radu
ModeratorHi,
Your photos are not displayed because of this css rule from Quick CSS Section
COPY CODEul#activity-stream a { text-indent: -9999px; width: 60px; }
You can apply that rule only to buttons with thiss selector
COPY CODE#buddypress ul#activity-stream.activity-list > li .activity-content .activity-meta .button { }
Cheers
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 function to your child theme functions.php file (wp-content/themes/sweetdate-child/functions.php)
COPY CODEfunction sq_add_adsense_to_member_directory() { echo ' <div style="width:728px;height:90px;background-color:red;"></div> '; } add_action('bp_before_directory_members_content','sq_add_adsense_to_member_directory');
Replace
<div style="width:728px;height:90px;background-color:red;"></div>
with your adsense code.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,
When i try to connect with fb to your site it says
COPY CODEApp Not Set Up: This app is still in development mode, and you don't have access to it. Switch to a registered test user or ask an app admin for permissions.
Please check your app settings, go to review tab in facebook app dashboard and make sure that the app is public
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,
This is the css
COPY CODE.header-color .top-menu li > a, .header-color #top-social li a { color: #ddd !important; }
You can add this 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 solutionRadu
ModeratorTry with important declaration
COPY CODE#form-allowed-tags { display:none !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 solutionRadu
ModeratorHi,
Just use the testimonial visual element and add this function to wp-content/themes/kleo-child/functions.php it will show random your testimonials
COPY CODEadd_action( 'pre_get_posts', 'kleo_random_order_testimonials' ); function kleo_random_order_testimonials( $query ) { if(isset($query->query['post_type'])) { if($query->query['post_type'] == 'kleo-testimonials') { $query->set('orderby', 'rand'); } } }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
USe these and play and adapt for your needs
COPY CODE.s2member-pro-paypal-form-div input[type="text"]::-webkit-input-placeholder {color:red;} .s2member-pro-paypal-form-div input[type="email"]::-webkit-input-placeholder {color:red;} div.s2member-pro-paypal-form-section>div.s2member-pro-paypal-form-div input::-webkit-input-placeholder { /* Safari, Chrome and Opera */ color: orange !important; } div.s2member-pro-paypal-form-section>div.s2member-pro-paypal-form-div input:-moz-placeholder { /* Firefox 18- */ color: orange !important; } div.s2member-pro-paypal-form-section>div.s2member-pro-paypal-form-div input::-moz-placeholder { /* Firefox 19+ */ color: orange !important; } div.s2member-pro-paypal-form-section>div.s2member-pro-paypal-form-div input:-ms-input-placeholder { /* IE 10+ */ color: orange !important; } div.s2member-pro-paypal-form-section>div.s2member-pro-paypal-form-div input::-ms-input-placeholder { /* Edge */ color: orange !important; } div.s2member-pro-paypal-form-section>div.s2member-pro-paypal-form-div input:placeholder-shown { /* Standard one last! */ color: orange !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,
There are no option for what you need but you can try with this function
Add this code to your child theme ( wp-content/themes/kleo-child/functions.php )
COPY CODEfunction custom_excerpt_length( $length ) { return 0; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Cheers
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 snippet to your child theme functions.php
COPY CODEadd_action('bp_core_activated_user', 'kleo_add_member_activity'); function kleo_add_member_activity($user_id) { add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s")); } function make_user_active( $user_id ) { bp_update_user_last_activity( $user_id ); } add_action ('user_register', 'make_user_active', 1, 11);
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,
Add this snippet to your child theme ( wp-content/themes/kleo-child/functions.php )
COPY CODEadd_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }
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
ModeratorHi,
Add this code to your child theme ( wp-content/themes/kleo-child/functions.php )
COPY CODEfunction custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Replace 20 with your desired number.
Note : child theme needs to be active
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,
That is not possible in Sweetdate theme, anyway you can use this css tweak to can be able to complete the login form.
COPY CODE.reveal-modal-bg { z-index: 9 !important; }
Add this css to wp-admin -> theme options -> styling options -> quick css
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi
The css rule it applies on both cases mobile and desktop,
Add the css with !important declaration
COPY CODE#buddypress div.activity-comments ul li .acomment-content { margin-top: 25px !important; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 30, 2016 at 16:13 in reply to: How to change white background color on Advanced Event Search, and topbar color #113521Radu
ModeratorHi,
Add this css
COPY CODE#em-wrapper .em-search-wrapper .em-search-main input { color: white !important; }
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 29, 2016 at 18:27 in reply to: How to change white background color on Advanced Event Search, and topbar color #113324Radu
ModeratorHi,
Use this cssCOPY CODEinput.em-search-text::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color:red !important; } input.em-search-text::-moz-placeholder { /* FF 4-18 */ color: red; } input.em-search-text::-moz-placeholder { /* FF 19+ */ color:: red; } input.em-search-text:-ms-input-placeholder { /* IE 10+ */ color: red; }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The css for the messages and for the friend request counters
COPY CODE.kleo-friends-req { background: green; } .kleo-message-count { background: orange; } button#signup { background: red !important; }
Replace green,orange and red with your desired colors.
The css can be added to wp-admin -> theme options -> styling options -> 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 solutionRadu
ModeratorHi,
Please use this css
COPY CODE#buddypress div.activity-comments ul li .acomment-content { margin-top: 25px; }
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,
Try to re-save permalinks from wp-admin -> settings -> permalinks -> save changes if it doesn’t work make sure you have an .htaccess file in your root installation
in that it should be
COPY CODE<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
If you don’t have the .htaccess file create it and paste the code from above.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorThe easiest way is to hide it via CSS, please paste the css that Laura has provided in wp-admin -> theme options -> general settings -> quick css
COPY CODE.role-moderator.bbp-author-role { 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 solutionRadu
ModeratorHi,
Try with this instead of old css
COPY CODE.field-visibility-settings, .field-visibility-settings-toggle, .field-visibility-settings-notoggle { display: none !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 solutionRadu
ModeratorHi,
Please replace that css with this one
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 solutionRadu
ModeratorHi,
Go to wp-admin -> theme options -> general settings -> quick css and add this css
COPY CODE.social-header.header-color { position: fixed; width: 100%; }
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
ModeratorHi,
The theme was designed to use only 3 levels of menu,
You will have to implement a logic that allows you to have 4 menu levels,
By adding this css :
COPY CODEul.dropdown-menu.sub-menu ul li ul { display: block; }
It will shows a 4th level menu, but you will have to check if the parent that contains the 4th level ul is hovered via css pseudo selector :hover, you can do it via jquery or to modify core theme files but this is not recommended because on next update the changes will be overwrited
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,
Add this lines to your htaccess
COPY CODESecFilterEngine Off SecFilterScanPOST Off
Then try again to save from loco and let me know if after you do savings from loco translate if it works or not
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,
Add this css to wp-admin -> theme options -> quick css
COPY CODEul.entry-meta.clearfix { display: none !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,
You can try this css
COPY CODE.profile .field-visibility-settings legend, .profile .field-visibility-settings-toggle { display: none; }
The css can be added into wp-admin -> theme options -> styling options -> 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 solutionRadu
ModeratorHi,
Try to use this css and let me know if is ok
COPY CODE.profile #item-body ul.accordion { display: none !important; }
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