Антон @pfilan
Forum Replies Created
-
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] tagyes. Top Rated Posts by FeedbackWP. or where you can insert the code so that not only images but also tags are identified
Forum: Plugins
In reply to: [Posts Like Dislike] total number of likes and dislikes$post_id = get_the_ID(); $like_count = $wpdb->get_var("SELECT meta_value FROM {$wpdb->prefix}postmeta WHERE meta_key = 'pld_like_count' AND post_id = $post_id"); $dislike_count = $wpdb->get_var("SELECT meta_value FROM {$wpdb->prefix}postmeta WHERE meta_key = 'pld_dislike_count' AND post_id = $post_id"); $like_count = !empty($like_count) ? $like_count : 0; $dislike_count = !empty($dislike_count) ? $dislike_count : 0; echo ' <i class="fa fa-thumbs-up"></i> ' . $like_count; echo ' <i class="fa fa-thumbs-down"></i> ' . $dislike_count;
- This reply was modified 1 year, 3 months ago by Антон @pfilan.
Спасибо
Forum: Plugins
In reply to: [Plus WebP or AVIF] Не учитывает все ссылкиТакже не всегда преобразовывает файлы или преобразовывает, но добавляет изначальное расширение Изображение записи.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Не учитывает все ссылкиПомог плагин Regenerate Thumbnails, но не автор плагина, которые все миниатюры испортил.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Не учитывает все ссылкиВсе картинки, которые были загружены ранее, стали с width=”1″ height=”1″ или не показывают размер.
Я настроил по новому миниатюру, новые картинки грузятся нормально.
Помогите. Как решить вопрос с старыми картинками, чтобы они нормально показывались. Не с width=”1″ height=”1″ или безразмерными.
Также в медиофайлах пропал выбор размера.
Скреншот: https://clip2net.com/s/4hJpvjM
- This reply was modified 1 year, 10 months ago by Антон @pfilan.
Forum: Plugins
In reply to: [Plus WebP or AVIF] Не учитывает все ссылкиТвой плагин выставляет картинкам width=”1″ height=”1″
При условиях: set_post_thumbnail_size( 220, 126, true );
Forum: Plugins
In reply to: [Plus WebP or AVIF] Не учитывает все ссылкиУ меня теперь проблема с размерами. Не отображает width=”1″ и height=”1″ У вас какие настройки миниатюры?
add_theme_support( ‘post-thumbnails’ );
add_image_size(Forum: Plugins
In reply to: [Plus WebP or AVIF] Не учитывает все ссылкиКто запустил плагин и не отображаться картинки. Можете поправить базу.
UPDATE
wp_posts
SETpost_content
= REPLACE(post_content
, “.jpg”, “.webp”)
UPDATEwp_posts
SETguid
= REPLACE(guid
, “.jpg”, “.webp”)
UPDATEwp_postmeta
SETmeta_value
= REPLACE(meta_value
, “.jpg”, “.webp”)Для каждого расширения картинок: jpg, png, gif
- This reply was modified 1 year, 10 months ago by Антон @pfilan.
the problem is not in the plugin.
because of the file pluggable.php ??
- This reply was modified 1 year, 10 months ago by Антон @pfilan.
Forum: Developing with WordPress
In reply to: the number of comments a user hasyes
$author->ID
Forum: Developing with WordPress
In reply to: the number of comments a user has<?php $args = array( 'user_id' => 1, // use user id 'count' => true //return only the count ); $comments = get_comments($args); echo $comments ?>
if you’re talking about it, it doesn’t fit.
I calmly issue a logged in user, but I can’t separately for each<?php $args = array('user_id' => $us_id, 'count' => true, 'status' => 'approve',); $commratings = get_comments( $args ); ?>
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] show recaptcha v2thanks, sorry so sorry
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] show recaptcha v2hi function to output the form recaptcha anywhere on the site