i have tried these steps and the issue still persists.
i did not update to 12.6 but i have this problem too on 12.5
Same qn
it’s still not fixed as of today.
i have the same issue as well, started happening after update to 12.2.
instagram feed was not showing, so i disconnected in the theme panel. when i tried to reconnect, I got this error.
{“error_type”: “OAuthException”, “code”: 400, “error_message”: “Insufficient developer role”}.
this has been a problem for all my posts, yes. has been happening for a few months already.
every time google shows my results under Discover, it will always pull my author photo instead of the article’s cover photo.
i just copy and paste the post url into the editor (classic editor)
I am not talking about featured image. I am talking about embedded previews. Please refer to this for an example
here is the article in question: https://milelion.com/2021/10/15/complete-guide-singapore-vaccinated-travel-lane-vtl-scheme/
Hi,
I can confirm that after changing the post template to the default one (non cloud library template), the auto-linker worked according to the limit (only 3 instances of the keyword is converted into a link).
Thanks!
is any action needed from our side to fix it? will there be issues with the theme from 25 may?
no, not changed. this has been set since end june, google still showing the wrong one.
not working for me, email sent to support
Hi,
I would appreciate a reply soon.
I will need the comment count to appear on Big Grid Flex 2. I believe that most themes allow for the comment counter option on all listing elements. Do let me know where I can implement the code since there is no way that I can do it via a setting.
Thank you.
Hi any updates?
Hi Vlad,
We don’t want to use the TD editor though, Can I save it as an element, then append it to the sidebar widget?
Hi, I want to maintain the blocks that I am using, but would still want the comment counter box. Are there any ways that I can custom code that in? I think the comment count box is a very common feature that many blogs have, and we most definitely would need it.
I realised that it is getting the Post template’s Modified date instead, and not the post’s.
Any methods I can use to get the post’s Modified date?
Hi, I’ve added a custom code to functions.php to get the Last modified date if there is any. But it doesn’t seem to be working. The Updated date still shows if there isn’t any revisions. And even if there are revisions, the Last modified date does not update.
Using a plugin produces the same problem too.
It seems that it only happens to this theme. Can you please assist me with this, as I believe that this is a very basic/simple function which should have already been included in this theme.
My code:
function display_last_updated_date( $content ) {
$original_time = get_the_time(‘U’);
$modified_time = get_the_modified_time(‘U’);
if ($modified_time >= $original_time + 86400) {
$updated_time = get_the_modified_time(‘h:i a’);
$updated_day = get_the_modified_time(‘F jS, Y’);
$modified_content .= ‘<time class=”entry-date updated td-module-date”>’. $updated_day . ‘, ‘. $updated_time .'</time>’;
$modified_content .= $content;
return $modified_content;
}
return ”;
}
add_shortcode( ‘modified_date’, ‘display_last_updated_date’ );
Hi, thanks for the reply.
Can you advise the PHP file in which Block 2 is rendered/stored? Can we implement this ourselves?
If not, any news on future updates that implements this? As this is quite crucial.