Forum Replies Created
-
Author
-
AndreiModerator
Hello, please find the “/lib/theme-functions.php” file, open it, and around line 1100, you will find the function which defines the excerpt. We did a few adjustments to this function to fix your issue, and we will include it in a future update. Until then, you will have to replace the function with the following one, which is updated.
Please let me know if this resolved your issue.
COPY CODE\[[^\]]*\]
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorUnfortunately, that kind of google font is a beta version, loaded in a different way from the ones from our list.
We will take into consideration of including compatibility with this kind of fonts in one of our future updates.Until then, you could try to add the following piece of code under “Theme Options>General>Quick Css”
COPY CODE@import url("http://fonts.googleapis.com/earlyaccess/nanumgothic.css" ) ; * { font-family: 'Nanum Gothic', serif; }
Please take care that this rule will change the font for all elements in page.
Also from “Theme Options>Fonts” you should select a “Standard” font for all sections, in this way you won’t load any additional google fonts which you won’t use.Let me know if this solution worked for you, for the moment it’s the only one.
Looking forward.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorIf you refer to “notification bubble” as how the “Careers” menu item from the top of this site has, then you can do this directly from your Menu Manager, the bubble itself is made of an “em” tag, added to the title of a menu item, example:
COPY CODECareers <em>2</em>
If you are referring to something else then please be more explicit.
Let me know which was the case and if I can help you with anything else.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHello,
You could use the following code snipped to achieve that:
COPY CODEadd_action('after_setup_theme', 'remove_revslider', 100); function remove_revslider() { if(is_user_logged_in()) { remove_action('kleo_after_header', 'kleo_page_revslider'); // for pages remove_action('kleo_after_header', 'kleo_home_revslider'); // for home page } }
Let me know if this resolves your problem.
Waiting feedback !Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAndreiModeratorHello Cenk,
I’m supposingly you work with a child theme ( that’s recommended ).
Copy “members-loop.php” and “members-loop-mini.php” from “sweetdate/members” to “sweetdate-child/members”
– edit “members-loop.php – around line 28” and “members-loop-mini.php – around line 31”
– search forCOPY CODE<?php bp_member_avatar('type=full&width=94&height=94&class='); ?>
– replace it with:
COPY CODE<a href="<?php bp_member_permalink(); ?>"><?php bp_member_avatar('type=full&width=94&height=94&class='); ?></a>
Hope this resolve your problem !
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts