jarektheme
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Elara] Multiple pictures in a postHi there,
Thank you for getting in touch with us.
Please follow this article about inserting images to posts and pages: https://codex.www.ads-software.com/Inserting_Images_into_Posts_and_Pages
Hope that helps.
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Remove bottom black line from front page onlyHi there,
Thank you for getting in touch with us.
Please go to Appearance → Customize → Additional CSS and add the following css:
.home .blog-feed > hr { display: none; }
Kind regards
- This reply was modified 5 years, 10 months ago by jarektheme.
Forum: Themes and Templates
In reply to: [Elara] Show ExcerptHi there,
Thank you for getting in touch with us.
1. Elara does support displaying excerpt but only on posts without featured image. You can easily modify this by replacing this function in wp-content/themes/elara/inc/template-tags.php:
if ( ! function_exists( 'elara_feed_entry_excerpt' ) ) : /** * Entry Excerpt * @return string Prints current post title, inside link for archives and without link for singles */ function elara_feed_entry_excerpt() { $elara_example_content = elara_get_option( 'elara_example_content' ); // if ( ! is_category() ) : if ( ! $elara_example_content && ! has_post_thumbnail() ) : ?> <div class="entry-summary"><?php the_excerpt(); ?></div> <?php endif; // endif; } endif;
with this:
if ( ! function_exists( 'elara_feed_entry_excerpt' ) ) : /** * Entry Excerpt * @return string Prints current post title, inside link for archives and without link for singles */ function elara_feed_entry_excerpt() { $elara_example_content = elara_get_option( 'elara_example_content' ); // if ( ! is_category() ) : add_filter( 'excerpt_more', 'elara_excerpt_more' ); ?> <div class="entry-summary"><?php the_excerpt(); ?></div> <?php remove_filter( 'excerpt_more', 'elara_excerpt_more' ); // endif; } endif;
Please note, that all changes will be lost after next theme update so you you’ll have to add them again or use Child theme
2. I had a look at posts on front page on mobile and desktop and couldn’t find that issue. Could you provide more details, perhaps send some screenshots of this?
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Featured Posts Kale 2018Hi @keepingitupbeet,
First of all you need to clear your browser cache to make sure the reason of this is the cache.
If that doesn’t help you should disable “Show Example Content” inside Appearance → Customize → General Settings section.
Hope that helps.
Best
Forum: Themes and Templates
In reply to: [Kale] Social icons menu not visible on mobileHi @mashupmom,
Please go to Appearance → Customize → Additional CSS and add the following css:
@media (max-width: 767px) { .header-row-1 { max-height: none !important; } .header-row-1-toggle { display: none; } .header-row-1-left .menu-social-container { border: none !important; } }
Hope that helps.
Best
Forum: Themes and Templates
In reply to: [Kale] Logo on Pages?Sorry for the delay on response. Insert this code to Appearance → Customize → Additional CSS field:
@media (max-width: 767px) { .logo .custom-logo-link { display: block; } .logo img.custom-logo { float: none; } .navbar.navbar-default { top: 0; } }
It should fix mobile menu.
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Bug in Javascript that causes images not to load.Hi there,
Thank you for pointing this out. We found this bug on some pages and we’ll fix it as soon as possible.
The other way to fix it is to use this:
if(jQuery(this)[0].hasAttribute("src") && jQuery(item).attr('src').match(/(https?:)?\/\/www\.youtube\.com/)) {
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Logo on Pages?Here is the code to hide main navigation:
.header-row-3 { display: none; }
or get rid of the background of active link:
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover { background-color: transparent; }
or finally remove borders:
.navbar-default { border: none; }
Insert the code you need to Appearance → Customize → Additional CSS field.
Best
Forum: Themes and Templates
In reply to: [Elara] Articles too wide on desktop/laptopHi there,
Thank you for getting in touch with us.
Here’s how the post without sidebar looks on wide screen: https://prntscr.com/m80tdl
As you can see the wrapper with image has maximum 1460px on large screen but the content with text has 75% of this width. If you want to decrease the size of single post content you can add this style to Appearance → Customize → Additional CSS field:@media (min-width: 992px) { .single-post .entry-singular-wrapper { width: 65%; } }
Kind regards
Forum: Themes and Templates
In reply to: [Kale] columns in static pageHave you tried to use this plugin on other theme before? I don’t think this issue is related to our theme. I would recommend to contact with plugin author because it seems to be related to plugin.
Best
Forum: Themes and Templates
In reply to: [Kale] columns in static pageHi there,
Thank you for getting in touch with us.
I’ve never used this plugin but you should be able to add shortcode to page or post content in Kale. If you want to change the layout of pages and add columns you can use one of the page builder plugins: https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Title and Subtitle Capital/Small LettersOnly a pleasure ??
Could you please mark the thread as resolved and perhaps leave us a review if you find some time?
Forum: Themes and Templates
In reply to: [Kale] Title and Subtitle Capital/Small LettersHi there,
Thank you for getting in touch with us.
To change lowercase in tagline and uppercase in logo title you need to go to Appearance → Customize → Additional CSS and add the following css for tagline:
.tagline p { text-transform: inherit; }
and this one for logo title:
.logo .header-logo-text { text-transform: inherit; }
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Customizer Changes dont workPlease make sure that your Customizer is not in Draft mode but in Publish mode. To check this open Appearance → Customize section and modify one settings. Then click cog icon and select “Publish” option. See this screenshot: https://prntscr.com/m76tgd
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Customizer Changes dont workHi there,
Thank you for getting in touch with us.
First, please check if you don’t have some caching plugin that is still displaying caching page version. If that’s not the case deactivate “Show Example Content” option under Appearance → Customize → General Settings section. Finally you can also clear your browser cache and refresh the page.
Hope that helps.
Kind regards