tarabusk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tarali] Removing Featured Image from top of postHi rlhaberman,
You’ll want to edit the content.php file. You’ll find it in the TaraLi theme directory.On line 22, you’ll find
Current code :
<?php if ( has_post_thumbnail() ) { the_post_thumbnail('thumbnail'); } ?>Code to hide features image in the post :
<?php if ( has_post_thumbnail() ) { // the_post_thumbnail('thumbnail'); } ?>Forum: Themes and Templates
In reply to: [Tarali] TaraLi producing circles on Front PageHi everybody,
Slider : To modify the shape of the black content (square, circle, bar ..) you can go to the admin TaraLi Page Options.
To remove any shape, you just have to remove the content associated to this slider image, in the same Page Optionss.Posts : To change the default image, right now the solution would be to replace this default.png image that you can find in the taraLi theme directory, by a new one (300px * 200px)
tarali/img/default.png
If the post has a featured image, this image will be displayed instead of the default one.Forum: Themes and Templates
In reply to: [TaraZa] Titles on posts blocksModifying the file content-blog.php in the taraza theme directory.
New file should contain (1 line added):<?php /** * @package taraza */ ?> <div class="view view-taraza" id="post-<?php the_ID(); ?>"> <?php if ( has_post_thumbnail() ) { the_post_thumbnail(); echo '<div class="title-no-thumb">';the_title(); echo'</div>'; // Line added } else { echo '<img src="' . get_stylesheet_directory_uri() . '/img/default.png" />'; echo '<div class="title-no-thumb">';the_title(); echo'</div>'; } ?> <div class="mask"> <a href="<?php the_permalink() ?>"> <h2><?php the_title(); ?></h2> <p><?php echo(get_the_excerpt()); ?></p> </a> </div> </div>Forum: Themes and Templates
In reply to: [TaraZa] Posts displayHi Olivia,
If the post has a feature image, this image will be displayed, if you want to change the default image, you can replace the default image default.png (300px * 200px)in the directory of the taraza theme :
taraza/img/default.png
I’ll try to add the possibility to customize this feature image.Forum: Themes and Templates
In reply to: [TaraZa] Smart phone and computerA new release will be online soon, I improved somehow the display on small devices
Forum: Themes and Templates
In reply to: [TaraZa] Can't add slider to new postOk !
Forum: Themes and Templates
In reply to: [TaraZa] Smart phone and computerHi Jushilicious,
Could you send me the link of your website? The theme shouldn’t be so different on smartphone devices.Forum: Themes and Templates
In reply to: [TaraZa] Can't add slider to new postHi Jushilicious,
Can you be more explicite, I don’t really understand as there is no native feature on TaraZa Theme to add slider into a post.
Are you talking about the image you add on the Home Page Slider by the “Option TaraZa” admin page ?Forum: Themes and Templates
In reply to: [TaraZa] Changing the block headerHi,
It can not be done by the administration Option, I’ll think about it for the next release.
You can edit the style.css file (best practise is to create a child theme)
modifying the background property of the .header_logo {} element.To modify the font color, in the same file style.css, modify the color property (dont’t erase the !important notification)
.header_logo a { letter-spacing: 1px; color: #ffffff !important; }Forum: Themes and Templates
In reply to: [Tarali] Menu adjustmentI mark this topic as resolved as it was a special customizing case
Forum: Themes and Templates
In reply to: [TaraZa] HTML tagsHi Jushilicious,
I don’t understand what is it about, can you give me more precision ?
Using my private email if you prefere.Forum: Themes and Templates
In reply to: [TaraZa] Can't add slider to new postOk perfect. Thamks for the feedback.
Forum: Themes and Templates
In reply to: [TaraZa] Can't add slider to new postHi Jushilicious,
Are you still running into the same issue ?Forum: Themes and Templates
In reply to: [TaraZa] Changing the number of posts to display1.0.5 released 2014-05-20 resolved the issue
Forum: Themes and Templates
In reply to: [TaraZa] Changing the number of posts to displayThere seems to have a hidden pest caractere on the file functions.php of the TaraZa theme, between the lines 356 and 357
356-- ?> 357-- <?php wp_nonce_field( basename( __FILE__ ), 'taraza_nonce' );?>I don’t have time to figure out exactly how that could happen, but you can fix the bug by remplace these 2 lines by :
wp_nonce_field( basename( __FILE__ ), 'taraza_nonce' );?>I really mean just remove ?> and <?php , between those 2 balises, something is wrong …