ghap
Forum Replies Created
-
Forum: Plugins
In reply to: [reGenerate Thumbnails Advanced] UTC+ is not being applied?? ???? 2020-07-09 11:02:50 ???. ?? ??? 2020-07-09 20:02:50???.
There’s no problem…Forum: Plugins
In reply to: [reGenerate Thumbnails Advanced] UTC+ is not being appliedI don’t know why, from some point on this plugin can’t recognize new posts until few hours pass. (Roughly 9 hours)
Forum: Fixing WordPress
In reply to: Auto image scales after update wordpress 5.3Wordpress added big image scale on 5.3 update.
As I replied, add
add_filter( ‘big_image_size_threshold’, ‘__return_false’ );
in funtions.php file of theme folder.
Thank you very much!
Forum: Fixing WordPress
In reply to: Auto image scales after update wordpress 5.3Ah, I found solution…Sorry for writing!
Added this code in wp_option.
add_filter( ‘big_image_size_threshold’, ‘__return_false’ );
Forum: Themes and Templates
In reply to: [Hueman] Problem with related post list sortingAh, thank you very much.
Forum: Themes and Templates
In reply to: [Hueman] Problem with related post list sortingI’m using hueman pro. Is there another forum for hueman pro?
Forum: Plugins
In reply to: [Comments - wpDiscuz] Adblocker block commentsYes. Me, too. That’s why I can’t reproduce that state.
[Deprecation] Element.createShadowRoot is deprecated and will be removed in M73, around March 2019. Please use Element.attachShadow instead.
Comments blocked user found this one on chrome f12 console.
May it occur problems?Forum: Developing with WordPress
In reply to: Is it possible to move ‘inherit’ posts to another db table?hmmmmmm. Ok…thank you.
Forum: Developing with WordPress
In reply to: Is it possible to move ‘inherit’ posts to another db table?I know, but it looks so bad.
Is there any way to make database table which for only real post data?
For example, wp_post_revisions or inherit…
Forum: Developing with WordPress
In reply to: I want to get posts count on tags.Wow. It work!
But ;( I have no idea how to add $tag_ID automatically…Because I didn’t learn programming until nowdays…Would you please teach me much detailed code?Ok! I discovered!
global $wp_query;
$tag_ID = get_query_var(‘tag_id’);
$term = get_tag( $tag_ID );
$count = $term->count;It really works! Thank you!
Forum: Plugins
In reply to: [Comments - wpDiscuz] Is it possible to show clones of most voted commnets?Hmmm… Ok. Thank you very much.