Forum Replies Created
-
Author
-
Catalin
ModeratorHello,
Add this code in functions.php from your child theme folder:
COPY CODEfunction kleo_my_hearts_actions() { /* Replace the heart over images */ add_filter('kleo_img_rounded_icon', 'my_custom_icon'); /* Replace the heart from register modal */ add_filter('kleo_register_button_icon', 'my_custom_icon_register'); /* Replace the heart from About us widget */ add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget'); } /* Replace the heart with a camera icon function */ function my_custom_icon () { return 'camera'; } /* Replace the heart from register modal with a user icon function */ function my_custom_icon_register () { return 'user'; } /* Replace the heart from about us widget with a user icon function */ function my_custom_icon_about_widget () { return 'user'; }
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalin
ModeratorHello,
First you need to modify the option called: “Link color” -> see attachment. This will change color in all the pages except homepage.
For changing color in homepage you need to add this code:
COPY CODE.navbar-transparent #header .logo a, .navbar-transparent .navbar .navbar-nav > li > a, .navbar-transparent .navbar .navbar-nav .caret:after { color:#xxx; }
in style.css file from your child theme folder. The ‘#xxx’ is the color code you want to add.
Thank you,
CatalinHi 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.Catalin
ModeratorHello,
You need to access using a FTP client the functions.php file from the child theme folder and add this code:
COPY CODE<?php function ThumbModif() { set_post_thumbnail_size( 620, 300 ); } add_action( 'after_setup_theme', 'ThumbModif'); ?>
After this operation, regenerate thumbnails using Regenerate Thumbnails plugin.
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalin
Moderatoruse:
COPY CODE.widgets-container .widgets ul.fts-yt-videolist li:before { content:none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalin
ModeratorHello,
You need to go in the WordPress admin pannel at ( Sweetdate>Styling options ) and at the very bottom of the page you have “Quick css” field.
Add there the following code:
COPY CODE.widgets-container .widgets ul.polling_ul li:before { content:none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalin
ModeratorPlease try this:
COPY CODEbody.buddypress .profile .dl-horizontal dt { overflow: auto; white-space: normal; }
Thank you,
catalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalin
ModeratorHello Martin,
1. To hide the search bar you need to go in the WordPress admin panel to (Theme Options -> Styling options) and add this code:
COPY CODE.bbp-search-form { display:none; }
and then click “Save changes”
2. When you create a new forum you can select the sidebar from the dropdowm list.
See attachament for more details.
Thank you,
CatalinHi 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.Catalin
ModeratorThis seems to be related to CSS, so try to add this:
COPY CODE#buddypress div.profile .dl-horizontal dt { overflow: auto; white-space: normal; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionCatalin
ModeratorHi, yes you can achieve that. Sorry for the late reply. Just go and to Theme options and do the following:
– in Layout settings – set Page Title location to Main section
– Header options – Show breadcrumb – OFF
– Main menu info – empty’Then the title section should disappear. If you want to hide the title that shows in the main area now, hide it by adding this CSS
COPY CODEh1.page-title { display: none; }
Make sure to have the latest theme version 1.5 installed.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts