tarabusk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [TaraZa] Changing the number of posts to displayYes ok I got it, it appeared with the last version of WordPress. I’ll make a release as soon as possible.
Thanks for the feedback !Forum: Themes and Templates
In reply to: [TaraZa] Changing the number of posts to displayAmong the “standard” plugins Do You have TinyMCE or CKEditor related plugins installed ?
Which version of WordPress ?Forum: Themes and Templates
In reply to: [TaraZa] Changing the number of posts to displayI just received the same feedback from another user.
I’ll work on it, could you please give me the list of the plugins you are using ?
Forum: Themes and Templates
In reply to: [TaraZa] Changing the number of posts to displayDoes this happen only with the TaraZa theme, could you check with another theme please ?
Forum: Themes and Templates
In reply to: [TaraZa] Changing the number of posts to displayYou should be able to modify the number of posts displayed on the Front page by changing the parametre Settings > Reading > Blog pages show at most
GaëlleForum: Themes and Templates
In reply to: [Tarali] Layout of Archive PagesOk ! I’ll let you know for the 1st point !
Best Regards,
GaëlleForum: Themes and Templates
In reply to: [Tarali] Layout of Archive PagesHi Gaby,
I am working on the next release, I’ll try to include the first point you mentionned.
About the 2nd, what do you mean about hiding the header ? The title of the website ? The menu ? Or maybe the text that is displayed by default on top of the content of the Front Page. In the last case, you should go to the Option TaraLi Administration page and empty the field : ‘Text Home Page’Gaëlle
Forum: Themes and Templates
In reply to: [Tarali] Menu adjustmentHi Stylemonk,
In your very special case, I would suggest you to add the following code at the end of the : style.css file (better if you already created a child theme).
This would fix the problem, not in a elegant way though …@media (max-width:750px) { .main-navigation { margin-right: 15%; } }Forum: Themes and Templates
In reply to: [Tarali] Menu adjustmentHi Stylemonk,
I had a look at your websiste, are you talking about the green menu bar, which position itself in a wrong way while shrinking the width of the browser or is it another problem you’re talking about ?
If this is this green bar, i should have a look on it, I don’t have any answer right now, but I already noticed that it some resizing configurations, the position (calculated in js/tara.js file) was not correct …Forum: Themes and Templates
In reply to: [Tarali] Remove latest posts effectsHi Beth,
This easiest way for now (i’ll think about adding an option in the next release) will be modifying the content-home.php file in between the div element class=”view view-ninth” :<div class="view view-ninth" id="post-<?php the_ID(); ?>"> ..... </div>REPLACE THE content of class=”view view-ninth” BLOCK BY THIS CODE :
<div class="view view-ninth" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink() ?>" style=" display:inline-block; width:100%;height:100%;"> <?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } else { echo '<img src="' . get_stylesheet_directory_uri() . '/img/default.jpg" />'; echo '<div class="title-no-thumb">';the_title(); echo'</div>'; } ?> </a> </div>———————-
Keep always a copy of the original file, and don’t forget that if you don’t use a child theme, your modification will disapear at the next release.Gaëlle
Forum: Themes and Templates
In reply to: [Tarali] Blog won't appearAre you talking about the page you add on :
Settings » Reading >> Posts page ??
What plugin did you use ?
Forum: Themes and Templates
In reply to: [Tarali] Blog won't appearHi
Sorry, I would need some more information to help you. Could you contact me in private ?
GaëlleForum: Themes and Templates
In reply to: [Tarali] Mobile versionGreat !
Forum: Themes and Templates
In reply to: [Tarali] Mobile versionHi Stylemonk,
No problem, I do really appreciate feedbacks that helps me correcting bugs !
I had a look at your website, it looks like you’re using a theme child CSS : tatali_child/style.css which seems to contain old features of the tarali style.css
I had to modify that css file in the lasts releases, so maybe you should try to clean your tatali_child/style.css so that it does not interfer with the css theme file.If that does not help please come back to me.
GaëlleForum: Themes and Templates
In reply to: [Tarali] Problem concering mediaHi,
Perfect !
Ok i’ll take into account your comment and see if it’s possible.Gaëlle