Hello, No notification option the user please tell me he to add this Thanks Priyanka saini
As I seen you are using AskBug. Copy answer.php from wp-content\plugins\anspress-question-answer\theme\default\ to AskBug/anspress/ Now edit answer.php and go to line 16 and remove: <div class="ap-single-vote"><?php ap_answer_the_vote_button(); ?></div> Done.
Open default .pot file in poeditor and save it for en_US and edit.
Yes sure, is the second word that says “answers” PS: i write in another answer for add this image ↑
Disable akismet in AnsPress moderation.
Hello, you can translate this word in the follow folder: wp-content\plugins\anspress-question-answer\theme\default\answers.php you have that open file answers.php and go to the line 18 and there are something like this: <?php echo ‘<span data-view=”answer_count”>’.ap_answer_get_the_count().'</span> ‘ .sprintf(_n(‘answer’, ‘answers‘, ap_answer_get_the_count(), ‘anspress-question-answer’)); ?> the word marked in bold,italic and with underline is the that you must change to your language. This is an example: <?php echo ‘<span data-view=”answer_count”>’.ap_answer_get_the_count().'</span> ‘ .sprintf(_n(‘answer’, ‘Réponse‘, ap_answer_get_the_count(), ‘anspress-question-answer’)); ?>
I had a similar problem. It is a CSS problem. Try something like this @media only screen and (max-width: 767px) #anspress .ap-questions .ap-questions-item.hentry .ap-list-counts { display: inline-block; } This show show the counts on the right. You can also show the avatar but honestly when the screen is really small it better to only show useful information – the avatar isnt that important.
Hello,I found a solution for your problem but you have that add lines of code to the stylesheet, I don’t know if will work for you, i hope so. adds to the “#top-header”: height: 53px; adds to the “#et-secondary-nav” or “.et-trending”: position: absolute; left: 0px; adds to the “#et-info”: position:absolute; right:0px; adds to the “.container” height:90px; adds to the “.logo”: position:absolute; left:0px; if you don”t know how this is done, this is an example: #top-header{ height:53px; } #et-secondary-nav{ position: absolute; left: 0px; } #et-info{ position:absolute; right:0px; } perhaps you have problems when you resize the window of browser the property position:absolute; in your “.logo” but you can modify this with : @media screen and (max-width:769px) and (min-width:50px){ .logo{ top:-10px; } }