divjotsingh_440
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Klean] Theme changes helpNo, I just wanted to observe the problem on the site…
Forum: Themes and Templates
In reply to: [Klean] Theme changes helpHello falkhena,
can you please share the URL of your site….Forum: Themes and Templates
In reply to: [Klean] Where is VK.COM social icon?No problem !!!
The theme will be updated next week.Forum: Themes and Templates
In reply to: [Klean] Where is VK.COM social icon?Hello akitavnin,
Currently, vk social icon is not included in the theme, it will surely be added in the next update. The icon in screenshot is from a previous version.
Forum: Themes and Templates
In reply to: [Klean] Social IconsAfter changing the variable name in $s and $t, you also need to change the customizer settings in functions.php.
E.g. – If you want to add a camera icon instead of facebook icon, find out the following code in functions.php-$wp_customize-> add_setting( 'facebook', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize-> add_control( 'facebook', array( 'label' => __('Facebook URL','klean'), 'section' => 'klean_social', 'type' => 'text', ) );
Replace the “facebook” with the new icon’s name, in this case “camera”.
And obviously, replace the text “Facebook URL” with whatever you want.
Forum: Themes and Templates
In reply to: [Klean] Social IconsHello aelkoury and Maria,
The icons are actually displayed using font awesome.
The social icon folder is just redundant at the moment. It was used in the theme before but now it is completely done using font awesome.So, replacing an icon is a bit more complicated here….
You can use any of the icons in the following link-
https://fortawesome.github.io/Font-Awesome/icons/Forum: Themes and Templates
In reply to: [Klean] I have no idea what just happened!It might be a minor bug in the theme….
It will surely be fixed in the next update, thanks for the notification.
You just need to find the following code in functions.php and delete it.if ( ! function_exists( '_wp_render_title_tag' ) ) { function klean_render_title() { ?> <title><?php wp_title( '|', true, 'right' ); ?></title> <?php } add_action( 'wp_head', 'klean_render_title' ); }
Forum: Themes and Templates
In reply to: Title tag implementationThanks stephen…
It’s solved now !!Forum: Themes and Templates
In reply to: [Sixteen] Is this possible?I would suggest searching for a plugin to accomplish this….
There surely would be plugins out there for this purpose….Forum: Themes and Templates
In reply to: [Inkzine] can't get carousel to displayThe work-around method seems to be installing the Redux Framework plugin. It seems to be doing the job.
Hello,
there is a setting in the functions.php file….
it should be something like add_image_size(250,250)
Try changing it to add_image_size(250,750) and apply the “Regenerate Thumbnail” plugin…
See if it does the job…Forum: Themes and Templates
In reply to: [Inovate] Removing sidebarcurrently the theme does not have a custom css box… so you will have to put it manually in the css file of the theme.
I will be adding the custom css box in the next updates.Forum: Themes and Templates
In reply to: [Inovate] Removing sidebarAdd the following code in the css file of the theme-
#content {
width: 100%;
}But if you plan on enabling the sidebar again, remember to delete it…
Forum: Themes and Templates
In reply to: [Inkzine] How to make the Footer Navigation Menu horizontaltry the following code in custom css-
#footer-sidebar ul li {
float: left;
}Forum: Themes and Templates
In reply to: [Sixteen] Blog PostsThe number of posts can be changed in the dashboard in Settings > Reading.