Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Just using this css
COPY CODE#profile #item-header-avatar .avatar { border-radius: 50%; }
Add it in 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,
Just add this code
COPY CODEfunction my_cpt_sq_metabox_menu_options_post_layout($post_types) { $post_types[] = 'portfolio'; return $post_types; } add_filter('sq_metabox_page_menu', 'my_cpt_sq_metabox_menu_options_post_layout');
The function will have to be added 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,
1. There you should edit your image to have the black frame thiner there to can match with the top line
2.using this css
COPY CODE.kleo-tabs ul li a { background: white !important; } .kleo-tabs ul li { } .kleo-tabs ul { background:white; }
The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
3. Follow that https://seventhqueen.com/blog/promo/free-wordpress-theme-design-install.html this it’s install not customizing thing, so other things than install are not included.
4. Buddypress plugin will be activated from wp-admin -> appearance -> install plugins -> buddypress
Here’s a tutorial how you can install and setup the theme. https://archived.seventhqueen.com/video-tutorials/kleo-quick-install-and-setup.html
What do you mean by the customization of the forum what you need to change ? The forum it will be shown in kleo specific design.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
No, no need to debug and there is no issue with the menu items…
Use this css will make the caret (+ sign ) to appear on expendable tabs nto sure why not appears
COPY CODE#header .navbar-nav li .caret { width: 20px; height: 20px; background: #50485b !important; border-radius: 26px; } #header .navbar-nav li .caret:before { content:" + "; text-align:center; padding:3px; color:#fff; }
So it should be ok from my point of view, right ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
There was a misunderstanding.
those should be added in the functions.php : https://archived.seventhqueen.com/forums/topic/profile-menu-isnt-work/#post-195817 said here, then to can control the position of the media button following : https://archived.seventhqueen.com/forums/topic/profile-menu-isnt-work/#post-195912
I’ve do that for you and how they are ok, the exception it’s you will have to copy this file : wp-content/themes/sweetdate/page-parts/general-header.php to child theme wp-content/themes/sweetdate-child/page-parts/general-header.php
I’ve modified in parent at this moment, so just copy the file as how i said from the beginning.
Then paste this code in the child theme ( wp-content/thems/sweetdate-child/functions.php )
COPY CODE/* Check if the rtmedia plugin it's activated then hook */ if ( class_exists( 'RTMedia' ) ) { add_filter('header_profile_dropdown', 'my_profile_link', 1); } function my_profile_link($links) { $links[] = '<li><a href="' . bp_loggedin_user_domain().'media/" rel="nofollow">Media</a></li>'; return $links; }
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
ModeratorAdd this css
COPY CODE@media(min-width:991px) { #logo img { position: absolute; top: -10px !important; } }
The css will be added to 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,
use this CSS
COPY CODE.rtmedia-editor-description.rtm-field-wrap textarea { color: red !important; } .rtmedia-edit-title.rtm-field-wrap input { color: red !important; }
The css will be added to wp-admin -> theme options -> General settings -> 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,
Not sure if those can be like that without code alteration
There it’s a single UL generated there and it’s only one column if you want to you will need to make a php condition if there are more than 10 fields from example to generate another UL
here’s the file : wp-content/themes/sweetdate/custom_buddypress/class-bp-tabs.php
You can overwrite that by copying this function (it’s marked in screenshot in large rectangle)
COPY CODEif (!class_exists('BpMembersTab')): class BpMembersTab { /* tabs instance */ public $tabs_instance; public $args; public function __construct($args) { $this->tabs_instance = BpMembersTabs::get_instance(); $this->args = $args; } public function title() { $active = ''; if($this->tabs_instance->active_tab === FALSE || $this->tabs_instance->active_tab == $this->args["name"] ) { $active = 'active'; $this->tabs_instance->active_tab = esc_attr(str_replace("%", "",sanitize_title_with_dashes($this->args["name"]))); } return '<dd class="'.$active.'"><a href="#'.esc_attr(str_replace("%", "",sanitize_title_with_dashes($this->args["name"]))).'">'.$this->args["name"].'</a></dd>'; } public function has_profile_data($name) { $this->tabs_instance->has_data[$name] = false; $this->tabs_instance->fields_data[$name] = ''; if ( bp_is_active( 'xprofile' ) && get_group_id_by_name($name) ) : if ( bp_has_profile( 'profile_group_id='.get_group_id_by_name($name ) ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); if ( bp_profile_group_has_fields() ) : $this->tabs_instance->fields_data[$name] .= '<dl class="dl-horizontal">'; while ( bp_profile_fields() ) : bp_the_profile_field(); if ( bp_field_has_data() ) : $this->tabs_instance->has_data[$name] = true; $this->tabs_instance->fields_data[$name] .= '<dt class="bp-field-name bp-field-id-' . __(bp_get_the_profile_field_id(), 'kleo_framework') . '">'. __(bp_get_the_profile_field_name(), 'kleo_framework') .'</dt>'; $this->tabs_instance->fields_data[$name] .= '<dd class="bp-field-value bp-field-id-' . __(bp_get_the_profile_field_id(), 'kleo_framework') . '">'. __(bp_get_the_profile_field_value(), 'kleo_framework') .'</dd>'; endif; endwhile; $this->tabs_instance->fields_data[$name] .= '</dl>'; endif; endwhile; endif; endif; if ($this->tabs_instance->has_data[$name] == true) return true; } } endif;
Into functions.php from child theme and to make your desired changes for that.
I don’t have a pre-maded solution for that.
Cheers
RHi 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 CODEli#change-avatar-personal-li { display: none !important; }
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This it’s the only available wayCOPY CODE@media(min-width:768px) { ul#activity-stream { height: 600px; overflow-y: scroll; } }
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Found a easy way just copy this file : wp-content/themes/kleo/page-parts/general-title-section.php to your child theme in wp-content/themes/kleo-child/page-parts/
Create the missing folders in child theme.
Then open from child theme wp-content/themes/kleo-child/page-parts/general-title-section.php and add the next code in the marked area starting from line 23-24
COPY CODE/*Hide the tittle on events pages*/ if(is_singular('post')){ $title_arr['show_title'] = false; //$title_arr['show_breadcrumb'] = false; //$title_arr['extra'] = ''; } /*END Hide the tittle on events pages*/
Replace post from the code with your post type slug.
It should be ok.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorNo problem.
Looking at they shortcode options and cannot see any option to add custom html in that shortcode.
https://getshortcodes.com/shortcodes/spoiler/As a workaround you can use this css
COPY CODEp.bps_filters { background: #0095c2; width: 200px; position: fixed; color: #fff; right: 0; top: auto; } p.bps_filters a { background: red !important; color:#fff !important; padding: 0 10px; margin: 10px !important; display: block; }
Will do this, there the div showing the selected criteria remains fixed when you scroll.
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,
You will have to ask the plugin author for a conditional tag like this if_plugin_page() and if they have one you will have to use a code like this
COPY CODEadd_action( 'after_setup_theme', 'hide_the_tile_certain_places', 10 ); function hide_the_tile_certain_places() { //title section $title_arr['show_title'] = true; //hide breadcrumb? $title_arr['show_breadcrumb'] = false; }
wrap the add action in the plugin condition
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 matching circle can be hidden easily using this css.
COPY CODEdiv.circular-item[title="Compatibility match"] { display: none !important; }
Add this selector to wp-admin -> theme options -> styling options -> quick css
PS: Salutari din Bucuresti!
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Add this selector to wp-admin -> theme options -> styling options -> quick css
COPY CODE.elementor-1013 .elementor-element.elementor-element-f67f082 .elementor-posts-container .elementor-post__thumbnail { padding:initial !important; }
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Go via FTP to wp-content/themes/sweetdate-child/ and create a file named footer.php
in that you will paste : https://pastebin.com/raw/Yzz9aWKC
Then paste this code in child theme functions.php
COPY CODEfunction register_sidebar_col5() { register_sidebar(array( 'name' => 'Footer Widget 5', 'id' => 'footer-5', 'before_widget' => '<div id="%1$s" class="widgets clearfix %2$s">', 'after_widget' => '</div>', 'before_title' => '<h5>', 'after_title' => '</h5>', )); } add_action('widgets_init', 'register_sidebar_col5');
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,
Check in wp-admin -> pmpro -> advanced setttings -> Message for Logged-out Users:
add it like this
COPY CODEThis content is for !!levels!! members only.<br /> <a class="kleo-show-login" title="Login" href="http://rdu.local/kleo/wp-login.php">Login</a><a href="http://localhost/kleo/wp-login.php?action=register">Register</a>
The idea it’s to have class kleo-show-login on the a element or li or any element.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionRadu
ModeratorHi,
Your ad code not displays nothing for me
And it not makes any difference if i de-activate it, the white space remains, and if i replace the adsense code with this one it works even if i de-activate or not the buddypress.
COPY CODE<img src="http://google.com/image.png" />
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 add this code to your functions.php
COPY CODE/* Check if the rtmedia plugin it's activated then hook */ if ( class_exists( 'RTMedia' ) ) { add_filter('header_profile_dropdown', 'my_profile_link', 1); } function my_profile_link($links) { $links[] = '<li><a href="' . bp_loggedin_user_domain().'media/" rel="nofollow">Media</a></li>'; return $links; }
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
1. try to add an empty space there instead of any word.
2. try this css
COPY CODE.su-spoiler-content.su-clearfix .editfield { margin-top: initial !important; float: initial !important; width: initial !important; } .su-spoiler-style-fancy > .su-spoiler-content label {display: inline-block;width: auto !important;}
I saw that you had styled in a way in style.css the first rule from css will overwrite that selector.
.su-spoiler-content.su-clearfix .editfield{}
3. IT add’s this parameter to the URL ?bp_profile_search=clear and all criteria will be cleaned
https://cristea.ch/members/?bp_profile_search=clear
4. If you are referring to the default wp search use this plugin : https://wordpress.org/plugins/disable-search/
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
That code not generates adds, but anyway if i use a regular banner code , and i deactivate the buddypress plugin it will works as normal.
like
COPY CODE<img src="http://google.com/image.png">
Anyway i’ve tried on your site live but cannot see any issue.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
To can hide or change that icon use this css
COPY CODE.circular-item .hearts { /* background: url(../images/hearts_bg.png) no-repeat; */ background:none; }
Hide friendship heart icon
COPY CODE#friends-my-friends:before { content:""; }
Can you show the page where this button it’s ? https://archived.seventhqueen.com/wp-content/uploads/2018/04/heart1-128×65.jpg
The css will be added to 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,
Use this css
COPY CODE.widgets h5 { background-color: red !important; color:#fff !important; }
Add it in 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. Ticket solutionRadu
ModeratorHi,
For the footer color
COPY CODEdiv#socket { background: red !important; color: #fff !important; }
Topbar
It works tested
COPY CODE#top-social li i:before {color:red !important;} .header-color .top-menu li > a:hover, .header-color #top-social li a:hover {color:red !important;}
What are the credentials ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionApril 18, 2018 at 18:14 in reply to: Notification icon and Wishlist button for variable products #195266Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
Figured out why it links to the image url instead of the post url
edit the post grid then follow the screenshots
then
For the color of the socket text use this css
COPY CODEdiv#socket div p { color: #ccc; }
I need an account to can see how the colors at hoverboxes changes when you login/logout
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 add this css
COPY CODE@media(max-width:768px) { .search .posts-listing .post-item { width: 50% !important; } }
The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts