• 06-03-2015, 21:21:18
    #1
    Arkadaşlar Yorumlar bölümündeki "Yorum Gönder" yazısını tam olarak nereden değiştiriyoruz ? Mesela butonu "Yolla Gelsin" şeklinde değiştirmek istiyorum. Hangi dosyadan yapıyoruz ?
  • 06-03-2015, 21:22:36
    #2
    Üyeliği durduruldu
    comment.php dosyasından yapabilirsin
  • 06-03-2015, 21:42:56
    #3
    Belirttiğiniz dosyada yok. wp-admin'deki comment.php ve tema içindeki comments.php dosyalarına da baktım bulamadım. Form butonunu bulmam lazım da bulamadım bir türlü.
  • 06-03-2015, 21:49:29
    #4
    Üyeliği durduruldu
    tema dosyaları içerisindeki comments.php dosyasından alt kısımlarda onun kodu var
  • 06-03-2015, 22:05:01
    #5
    Lynne adlı üyeden alıntı: mesajı görüntüle
    tema dosyaları içerisindeki comments.php dosyasından alt kısımlarda onun kodu var
    Belirttiğiniz yerde "yorum gönder" yazısı yok.

    <?php /* Comments Template */
    if (post_password_required()) {
    	return;
    }
    $comments_by_type = separate_comments($comments);
    if (have_comments()) {
    	if (!empty($comments_by_type['comment'])) {
    		$comment_count = count($comments_by_type['comment']);
    		($comment_count !== 1) ? $comment_text = __('Comments', 'mh-magazine-lite') : $comment_text = __('Comment', 'mh-magazine-lite'); ?>
    		<h4 class="section-title"><?php echo $comment_count . ' ' . $comment_text . __(' on ', 'mh-magazine-lite') . get_the_title(); ?></h4>
    		<ol class="commentlist">
    			<?php echo wp_list_comments('callback=mh_comments&type=comment'); ?>
    		</ol><?php
    	}
    	if (get_comments_number() > get_option('comments_per_page')) { ?>
    		<div class="comments-pagination">
    			<?php paginate_comments_links(array('prev_text' => __('&laquo;', 'mh-magazine-lite'), 'next_text' => __('&raquo;', 'mh-magazine-lite'))); ?>
    		</div><?php
    	}
    	if (!empty($comments_by_type['pings'])) {
    		$pings = $comments_by_type['pings'];
    		$ping_count = count($comments_by_type['pings']); ?>
    		<h4 class="section-title"><?php echo $ping_count . ' ' . __('Trackbacks & Pingbacks', 'mh-magazine-lite'); ?></h4>
    		<ol class="pinglist">
            <?php foreach ($pings as $ping) { ?>
    			<li class="pings"><?php echo get_comment_author_link($ping); ?></li>
            <?php } ?>
            </ol><?php
    	}
    	if (!comments_open()) { ?>
    		<p class="no-comments"><?php _e('Comments are closed.', 'mh-magazine-lite'); ?></p><?php
    	}
    }
    if (comments_open()) {
    	$custom_args = array(
        	'title_reply' => __('Dumanla Yorum Yap', 'mh-magazine-lite'),
            'comment_notes_before' => '<p class="comment-notes">' . __('Mail adresiniz görünmeyecek.', 'mh-magazine-lite') . '</p>',
            'comment_notes_after'  => '',
            'comment_field' => '<p class="comment-form-comment"><label for="comment">' . __('Dumanla Yorumunuz', 'mh-magazine-lite') . '</label><br/><textarea id="comment" name="comment" cols="45" rows="5" aria-required="true"></textarea></p>');
    	comment_form($custom_args);
    }
    ?>
    Dediğim yer form butonu. Dolayısı ile forma ulaşmam lazım ama nerden formu düzenleyeceğim bilmiyorum.