JoomUnited support
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Latest Posts] News block showing English title in other languagesHi, thanks for your feedback. You can add below line to fix this issue:
$title = apply_filters(“the_title”, $title, $post->ID);
under the line 893 $title = $post->post_title; in the file: wp-latest-posts/inc/wp-fpn-front.inc.phpRegards.
Forum: Plugins
In reply to: [WP Latest Posts] Added latest post to a page but it stays blank.Hi, could you send me some screenshots of your WPLP block which you added to the page?
Thanks.Forum: Plugins
In reply to: [WP Latest Posts] Default Object ConflictHi, could you send me a link to the page where this problem can be seen?
Thanks.
Forum: Plugins
In reply to: [WP Meta SEO] Plugin Alters Main QueryHi, I’m developer of this plugin.
Thanks for your feedback. But I can’t re-procedure this problem at my site. Could you provide more info.
is there other plugin installed on your site?
Why do you think WP Meta Seo cause this problem?Thanks.
Forum: Plugins
In reply to: [WP Meta SEO] Setting image resizing size/compressionHi, thanks for interested in our plugin. There isn’t option to control size of images resized it. The plugin have got a tool to auto detect images in your posts which are not in good size (For example the image’s size is 600px x 500px, but in the post it display in 300px x 250px), then it report wrong image size and ask do optimize them.
About image resized quality, we used php function imagejpeg with default quality 75%, you can increase it by modify the line 505 in the file inc\class.image-helper.php
case ‘jpg’: imagejpeg($new, $destination);
to
case ‘jpg’: imagejpeg($new, $destination,99);Regards