WP Puzzle
Forum Replies Created
-
Forum: Plugins
In reply to: [Comment Images Reloaded] How to get comments that has images?Unfortunately, there is no such ability in plugin.
Forum: Reviews
In reply to: [Comment Images Reloaded] Great plugin!Thanks for review!
Forum: Plugins
In reply to: [Comment Images Reloaded] Inline block in mobile deviceHi!
Try this css:
@media screen and (max-width: 1024px) { .comment-image-reloaded{ max-width: 30% } }
Images will be dispaying in tree columns. You can change
30%
on45%
for two columnsForum: Reviews
In reply to: [Basic] Basic – лучшая бесплатная тема!Спасибо, что нашли время поставить оценку и оставить такой отзыв!
Будем продолжать развиваться дальше!Forum: Plugins
In reply to: [Comment Images Reloaded] Images aren't attached to commentsWe are making an attempt to resolve conflict.
Thanks for your feedback!Forum: Plugins
In reply to: [Comment Images Reloaded] Request – add comment into media files datavbaseThanks for your review!
We are working at plugin improvement. Follow the updates.Forum: Reviews
In reply to: [Basic] Замечательная темаСпасибо за развернутый отзыв и время, найденное для него ??
Forum: Themes and Templates
In reply to: [Basic] Remove date, author and comment ?philippe09270, glad I could help!
Thank you for your chioce, stay with us!
Team WP PuzzleForum: Plugins
In reply to: [Comment Images Reloaded] Request – add comment into media files datavbaseThank you for the suggested ideas to improve the plugin!
I think, we are ready to consider these enhancements and implement them in our plugin in future. Most likely, this feature will be implemented optionally.
We try to answer all emails, despite possible delays. If you haven’t received a reply from us, most likely, it went to spam, sometimes it happens.
We are grateful to everyone who wants to support our work, donations page is at this address – donate.Forum: Themes and Templates
In reply to: [Basic] Remove date, author and comment ?There are two variants to remove date output and number of comments.
1. If you use child theme (what is preferable). Copy file
content.php
and delete line 23 with code<span class="date"><?php the_time(get_option('date_format')); ?></span>
and line 25 with code
<span class="comments"><?php comments_popup_link( ('Comments', 'basic').': 0', ( "Comments", 'basic') .': 1', __("Comments", 'basic').': %', '', ''); ?></span>
2. This variant only hides date and number of comments, in html code they will remain. Add the following code in CSS:
.meta .comments, .meta .date { display: none; }
Forum: Plugins
In reply to: [Comment Images Reloaded] Put images aligned next to each otherjormarques, you’re welcome ??
Thank you for your chioce, stay with us!
Forum: Plugins
In reply to: [Comment Images Reloaded] Put images aligned next to each othertry this:
p.comment-image-reloaded { display: inline-block; } p.comment-image-reloaded img { border-radius: 20px; }
Each image in comment use this layout:
<p class="comment-image-reloaded"> <img src="..." > </p>
Forum: Plugins
In reply to: [Comment Images Reloaded] Put images aligned next to each otherThanks! Just add following CSS code to your
style.css
(or in special theme setting , if any) to display images in line:p.comment-image-reloaded { display: inline-block; }
Thanks for your idea of developing our plugin, we will think over possibility and implementing of suggested functionality.
Forum: Plugins
In reply to: [Comment Images Reloaded] Images aren't attached to commentsIf problem is not in theme and hosting settings, then it may be conflict with other plugin or other peculiarities about which we cann’t know without detailed study of configuration and testing
Forum: Plugins
In reply to: [Comment Images Reloaded] Choose Files button confusingYes, it can be done. You need to:
1) Activate option “Check it to disable automatic show file upload field” in plugin settings. (menu Settings -> Comment Images Reloaded).
2) Add in necessary place on of snippets:
– If there is function callcomment_form()
in comment.php of active theme, then it is necessary to pass parameter, like this$args = array(); //empty array or value of your theme if ( function_exists("get_cir_upload_field") ) { $args['comment_notes_after'] = get_cir_upload_field(); } comment_form( $args );
– If there is no call
comment_form()
, find closing tag</form>
and button of sending comment and add code before them:
<?php if (function_exists("the_cir_upload_field")) { the_cir_upload_field(); } ?>