Couple questions (Translation to Polish language and minor problems)

I almost translate all things to Polish language but i can’t find couple things in code…
Can some tell me where i can find these elements?

  1. Related Articles
    http://imageshack.com/a/img922/8428/TchDQT.png

  2. Comments
    http://imageshack.com/a/img923/3225/i7XeT0.png

  3. My searchbox has weird problem… the “search” word is not in box which should be as i seen in demo theme…
    http://imageshack.com/a/img923/4980/IfWs1g.png

  4. I would like to add third button on front page… How i can make it? and where exactly, cause i can’t find code of it to copy and paste or something…
    http://imageshack.com/a/img922/6968/IyhLzA.png

  5. How and where i cane erase empty space between sections in front page?
    http://imageshack.com/a/img922/5503/Vfmsu3.png

Thank You very much for that… i will be very grateful…

  1. Alright i manage to erase this empty space…
    with this css code
#about, #static-page-content {
     padding: 65px 0 0px 0;
}

Other topics still available…

Hi,

1) You could find here the soource code and queries for that word:
https://github.com/puikinsh/illdy/search?utf8=%E2%9C%93&q=related+articles

2) You could find here the soource code and queries for that word: https://github.com/puikinsh/illdy/search?utf8=%E2%9C%93&q=comments&type=Code

3-This is a bug, I posted on the developer team, I hope soon we will have an answer

Thanks,

Cristian

  1. I have to say i tried to find it but it isn’t there… this is code which is for comments in my illdy
<?php
/**
 *	The template for displaying comments.
 *
 *	This is the template that displays the area of the page that contains both the current comments
 *	and the comment form.
 *
 *	@link https://codex.wordpress.org/Template_Hierarchy
 *
 *	@package WordPress
 *	@subpackage illdy
 */
?>
<?php
if ( post_password_required() ) {
	return;
}
?>


	
			 1 && get_option( 'page_comments' ) ) : ?>
				
					
					
						
						
					</div><!-- .nav-links -->
				</nav><!-- #comment-nav-above -->
			<?php endif; ?>

			
				' . get_the_title() . '' ); ?>
				<ul>
					 'illdy_comment',
						'max_depth'	=> 5
					) );
					?>
				</ul><!--/.comments-->
			<!--/#comments-list-->

			<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
				<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
					<h2 class="screen-reader-text"><?php _e( 'Zarządzanie komentarzami', 'illdy' ); ?></h2>
					

						
						

					</div><!-- .nav-links -->
				</nav><!-- #comment-nav-below -->
			<?php endif; ?>
	<?php endif; ?>

	<?php
		// If comments are closed and there are comments, let's leave a little note, shall we?
		if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'Comments' ) ) :
	?>
		<p class="no-comments"><?php _e( 'Komentowanie tego posta jest wyłączone.', 'illdy' ); ?></p>
	<?php endif; ?>

	<?php
	$commenter = wp_get_current_commenter();
	$req = get_option( 'require_name_email' );
	$aria_req = ( $req ? " aria-required='true'" : '' );

	if($commenter['comment_author'] != '')
		$name = esc_attr($commenter['comment_author']);
	else
		$name = '';

	if($commenter['comment_author_email'] != '')
		$email = esc_attr($commenter['comment_author_email']);
	else
		$email = '';

	if($commenter['comment_author_url'] != '')
		$url = esc_attr($commenter['comment_author_url']);
	else
		$url = '';

	$fields =  array(
		'author'	=> '',
		'email'		=> '',
		'url'		=> ''
	);

	if( is_user_logged_in() ) {
		$comment_textarea = '<!--/.col-sm-12--></div><!--/.row-->';
	} else {
		$comment_textarea = '<!--/.col-sm-12--></div><!--/.row-->';
	}
	?>
	<?php comment_form( array( 'fields' => $fields, 'comment_field' => $comment_textarea, 'id_submit' => 'input-submit', 'label_submit' => esc_attr__( 'Wyślij', 'illdy' ), 'title_reply' => esc_attr__( 'Napisz komentarz do posta', 'illdy' ), 'title_reply_to' => esc_attr__( 'Napisz komentarz do %s', 'illdy' ) ) ); ?>
</div><!--/#comments-->

And there isn’t any “comments” word which will change “comments” word in theme on blog page…

and for 2) i even can’t find in which part of code there is words “related articles” how is it called? “blogbottomheader” or “frontpage” please help me with it…

also is there any possibility to do this with counter in counter section?

Hi @kubamotopasja,

Could you try here:

https://translate.wordpress.org/projects/wp-themes/illdy/pl/default

Your translation will help others as well.

Many thanks for your help.

Thanks,

Cristian