mosser
Forum Replies Created
-
Thanks Denzel, I will have a try.
Thanks for your reply.
the theme option I mentioned is 【Display posts metas】under Theme Menu->Content:Home,Posts->Post metas(category,tags,custom taxonomies)In order to narrow down the issue, I disalbe all of my wordpress plugins, but the warnnings still can be repro.
Please ref there 2 screenshots:
Also append the system info: # SITE_URL: https://www.pstips.net # HOME_URL: https://www.pstips.net # IS MULTISITE : No # THEME | VERSION : customizr | v3.5.9# WP VERSION : 4.7.3 # PERMALINK STRUCTURE : /%postname%.html # ACTIVE PLUGINS : PHP Version: 5.3.29 MySQL Version: Web Server Info: Apache WordPress Memory Limit: 40MB PHP Memory Limit: 256M PHP Upload Max Size: 2M PHP Post Max Size: 8M PHP Upload Max Filesize: 2M PHP Time Limit: 30 PHP Max Input Vars: 1000 PHP Arg Separator: & PHP Allow URL File Open: Yes WP_DEBUG: Disabled Show On Front: posts Page On Front: (#0) Page For Posts: (#0)
Thanks you reply,
the option I said is [Display posts metas],
The warning also can also ref there 2 images.I even have disable all my wordpress plugins.
https://cdn.pstips.net/wp-content/uploads/2017/03/home-page-warning.jpg
https://cdn.pstips.net/wp-content/uploads/2017/03/single-page-warning.jpgSystem info:
# SITE_URL: https://www.pstips.net
# HOME_URL: https://www.pstips.net
# IS MULTISITE : No# THEME | VERSION : customizr | v3.5.9# WP VERSION : 4.7.3
# PERMALINK STRUCTURE : /%postname%.html# ACTIVE PLUGINS :
PHP Version: 5.3.29
MySQL Version:
Web Server Info: ApacheWordPress Memory Limit: 40MB
PHP Memory Limit: 256M
PHP Upload Max Size: 2M
PHP Post Max Size: 8M
PHP Upload Max Filesize: 2M
PHP Time Limit: 30
PHP Max Input Vars: 1000
PHP Arg Separator: &
PHP Allow URL File Open: Yes
WP_DEBUG: DisabledShow On Front: posts
Page On Front: (#0)
Page For Posts: (#0)By the way, if I disable the post meta tag visibility,the warning will disappear.
@designwall
Thanks your reply, but I believe that I has enabled that settings.I did not go to further investigation, just comments few line code, the notification works back, please check whether there is a bug in free version 1.4.5.
Hi Nicolas,
I look forward to see the below changes about tc_has_update() function logic in next version Customizr。
- Only call tc_has_update() when “display update” option was enabled in theme option.
- Add try-catch in function tc_has_update(), take a default value if hit error.
Thanks!
Just a temporary work around for this issue:disable has_update function.
In file
wp-content\themes\customizr\inc\parts\class-content-post_metas.php
line: 89-90change :
$this -> tc_get_meta_date(‘update’),
$this -> tc_has_update()
to:
$this -> tc_get_meta_date(‘update’)
//$this -> tc_has_update()Forum: Themes and Templates
In reply to: [Customizr] plugin 'WP-PageNavi' do not works on CustomizrI found a way.
add a function:function enable_wp_pagenavi() { if ( function_exists( 'wp_pagenavi' ) ) { wp_pagenavi(); } }
then:
add_action ( '__after_loop' , 'enable_wp_pagenavi');