Takimi Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [CarZine] Header DateDear ericinvalpo, we have updated our theme.
Hopefully in the next 2-3 days it will be live.Forum: Themes and Templates
In reply to: [CarZine] Header DateDear ericinvalpo
we will update the theme so it trye to comply with the set time in the backend. The update will be out very soon.Forum: Themes and Templates
In reply to: [CarZine] DO NOT USE THIS TEMPLATEDear @travbacon we have never stated that we provide 24/7 support. We do know that sometimes the support has great delays however this theme, is a free theme.
We are sorry for any incovenienced caused.
We have solved many issues using this forum.Forum: Themes and Templates
In reply to: [CarZine] tag doesn’t work on pagesThanks for the support Stephen!
Forum: Themes and Templates
In reply to: [CarZine] removing side widgets when in forum pageDear @travbacon, this is the design of the theme.
Thanks for your message, we will consider that.This is a bit advanced and requires a lot of code editing..
However you could use the http://wpadvancedsearch.com/ WordPress search framework.Forum: Themes and Templates
In reply to: [CarZine] Full PageDear unpicked,
you can have a full width container in the frontpage .You could open index.php and you can change this
<div class="col-md-8"> <div id="carzine_main_content_container"> <?php get_template_part('theme_includes/featured_post_area');?> <?php get_template_part('theme_includes/latest_post_area');?> </div> </div>to this:
<div class="col-md-12"> <div id="carzine_main_content_container"> <?php get_template_part('theme_includes/featured_post_area');?> <?php get_template_part('theme_includes/latest_post_area');?> </div> </div>Also you should remove this:
<div class="col-md-4"> <div id="carzine_sidebar_container"> <?php get_sidebar();?> </div> </div>This way the first page will be fullwidth.
Forum: Themes and Templates
In reply to: [CarZine] Problem with textDear niclubev,
please do the following.Find the folder “theme_includes” and inside it find the “latest_post_area.php” file. at the line 13 you will see something:
<div class="carzine_latest_post same-height">. Remove the “same-height” string and append it the col-md-6 class right above it.Find the line 11:
<div class="col-md-6">and change it to
<div class="col-md-6 same-height">
Save the file and refresh the website 2-3 times .Forum: Themes and Templates
In reply to: [CarZine] Remove hover effect in featured imageDear Gruss.
this is not an issue ,this is an effect that the theme has built in.If you want to remove it you can go to the theme_init.js file, it is located in the js folder, and remove the following block of code :
$('.carzine_latest_post').mouseover(function(){ $(this).find("img").removeClass('grayscale'); $(this).find("img").addClass('grayscale_disabled'); }).mouseout(function(){ $(this).find("img").addClass('grayscale'); $(this).find("img").removeClass('grayscale_disabled'); });These are the lines 5-11.
Regards.
Forum: Themes and Templates
In reply to: [CarZine] Header ImageDear LeeDavies,
you can try to remove the code however if you have removed the
<?php if(is_home() && get_header_image() != ''):?>you should also remove the
endif;that accompanies the if above.Forum: Themes and Templates
In reply to: [CarZine] SlickNav not working/appearingDear Daniel,
we will check this out and respond tomommow! Thanks for spotting it.Hello again.
The codes I have suggested there are in some of the template files.For example find the folder “theme_includes” and open the file “latest_post_area.php” . If you see the lines :27-33 you will find the next lines of code:
<div class="post-meta"> <i class="fi-calendar"> </i> <span class="date_text"><?php echo __('Date:','carzine');?> </span> <span class="post_date"><?php echo get_the_date('d / M / Y');?> </span> <span class="comment_number margin10"> <i class="fi-comments"> </i><?php echo get_comments_number();?> </span> </div>.
This way you should search and remove these lines wherever you find them.
Dear Unpicked,
you should completely remove the chunks of the code we mentioned before.
You have not removed them,You should completely removed these chunks where you find them :
<div class="post-meta"> <i class="fi-calendar"> </i> <span class="date_text"><?php echo __('Date:','carzine');?> </span> <span class="post_date"><?php echo get_the_date('d / M / Y');?> </span> <span class="comment_number margin10"> <i class="fi-comments"> </i><?php echo get_comments_number();?> </span> </div>and:
<div class="carzine_featured_post_categories"> <i class="fi-bookmark"> </i> <?php echo get_the_category_list(' , ', _e(' ', 'carzine' )); ?> </div>As we see from the URL, you have not remove them from the template files. You should search them in the following files :
Category.php, tag.php ,archive.php ,search.php, theme_includes folder > featured_post_area.php , theme_includes > latest_post_area.php.
Forum: Themes and Templates
In reply to: [CarZine] Alignment of posts on front pageDear Vicky it took long to update the theme,however at the moment we are at the update queue.
Oh so you have to removed them from the single.php as well. So find the folder “theme_includes” and then search for the code chunks above in the single_post_area.php and removed them as well.