Arkadaşlar WP sitemde bir ziyaretçi yorum yazdığında cevap vermemiz gerekiyor ama baktım bulamadım yardımcı olursanız sevinirim.
Kolay Gelsin.
WP Yorumlara CEVAP butonu koymak
7
●931
- 16-07-2014, 10:36:43Wp-admin kısımından yorumlar bölümünde cevap verebilirisniz.HatipEr adlı üyeden alıntı: mesajı görüntüle
- 16-07-2014, 10:47:52Hocam Sağolasın bilgi için.iozsaydi adlı üyeden alıntı: mesajı görüntüle
Cevapla ile hiyerarşi olarak cevap vermek istiyorum Hocam yoksa direk normal yorum olarak cevap atıyor. - 16-07-2014, 11:21:02hocam hiyerarşi olarak atar zaten.HatipEr adlı üyeden alıntı: mesajı görüntüle
- 16-07-2014, 11:25:53Yok atmıyor Hocam belkide temadan dolayıdır ama denedim şimdi atmıyor.iozsaydi adlı üyeden alıntı: mesajı görüntüle
Bana yorumun altında cevapla butonu halen lazım sadece bu site değil üyelerin kendi aralarında yorumlaşması içinde her zaman lazım oluyor. - 16-07-2014, 11:29:29comments.php ye sunu ekleyip denermisiniz?HatipEr adlı üyeden alıntı: mesajı görüntüle
<div class="cancel-comment-reply">
<small><?php cancel_comment_reply_link(); ?></small>
</div> - 16-07-2014, 12:09:02Yok Hocam hiçbir fayda etmedi.iozsaydi adlı üyeden alıntı: mesajı görüntüle
Arayışım devam ediyor.
Bu konu arayış içinde olan herkese faydalı olacaktır.
--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 12:09:02 -->-> Daha önceki mesaj 12:00:45 --
Şöyle bir eklenti buldum arkadaşlar.
Tek sayfa "admin_comment_reply.php" olan
ama eklentiyi aktif etmeme rağmen çalışmadı.
Kodcu arkadaşlar bakarlarsa belki birşey çıkartabiliriz.
<?php /* Plugin Name: Admin Panel Comment Reply Plugin URI: http://digitalramble.com/admin-panel-comment-reply-plugin/ Description: Modifies the comment page in the admin panel to include a direct "Reply to Comment" link among the options for each comment. This eliminates the need to page through the post, down the existing comments, to the end, in order to post a reply. Author: Cindy Moore Version: 0.1 beta Author URI: http://digitalramble.com/ */ /* Notes: Idea for plugin comes from Lorelle on Wordpress (http://lorelle.wordpress.com/2007/03/07/wanted-wordpress-plugins-for-me/). The plugin itself is a pretty straightfoward adaption of the Commenter Spy plugin by Daniel Gattermann at http://cinnamonthoughts.org/wordpress/commenter-spy/. Further development: create an inline textarea that grabs the contents and shoots into the reply db...need to really poke around to see how comments are handled first; this is quick and dirty, but leaves the problem of backing up to return to comment page for mgmt. (At the moment, use the reply link to open in new tab; which can be closed after reply is sent...) */ /* Change log: none yet */ /* Copyright 2007 Cindy Moore (http://digitalramble.com/contact-me/) Licensed under the terms of the GPL version 2, see: http://www.gnu.org/licenses/gpl.txt Provided without warranty, inluding any implied warrant of merchantability or fitness for purpose. */ /* Türkçe Çeviri : Gürkan OLUÇ URl : http://www.grkn.net */ /* first of all, we need to be certain of what exactly the name of the anchor we want is on the comment reply page. The actual name can change around at the whim of whoever designed the theme that's in use, so drop an invisible anchor with a known name next to any comment form */ function add_admin_comment_reply_anchor() { echo '<a name="admin_comment_reply_anchor"></a>'; } add_action('comment_form', 'add_admin_comment_reply_anchor'); /* Sets up the View Post URL search string */ function adminCommentReplyModifyViewPostURLs() { // _e writes to screen which is unsuitable here // reference: http://codex.wordpress.org/Translating_WordPress#Localization_Technology $admincommentreply = __('Yoruma Cevap Yaz'); $eadmincommentreply = str_replace('/', '\/', preg_quote($admincommentreply)); $admincommenttext = __('View Post'); $eadmincommenttext = str_replace('/', '\/', preg_quote($admincommenttext)); $ViewPostBaseURLEscaped = "(<a[ \\n\\r]*href=\"([^\"]*)\"([^>]*)>$eadmincommenttext<\/a>)"; ?> <script type="text/javascript"> //<![CDATA[ var links; links = document.getElementsByTagName('p'); for (var i = 0; i < links.length; i++) { var curr; curr = links[i]; curr.innerHTML = curr.innerHTML.replace(/<?php echo $ViewPostBaseURLEscaped; ?>/, "$1 | <a href=\"$2#admin_comment_reply_anchor\" $3><?php echo $eadmincommentreply; ?></a>"); } //]]> </script> <?php } /* activate only on correct page */ if (basename($_SERVER['SCRIPT_FILENAME']) === 'edit-comments.php') { add_action('admin_footer', 'adminCommentReplyModifyViewPostURLs'); } ?>