Md. Asraful Islam
Forum Replies Created
-
Hi @neelsuys
First you should Enable debugging.
#Change “false to true” into wp-config.php file.
define( ‘WP_DEBUG’, true );Then check the website. Maybe you will get any fatal error or warning.
After that, you could find out the real problem.Thanks
Forum: Fixing WordPress
In reply to: My date_format, time_format, timezone_string kept deletingHi @bhekor
Interesting errors, should need to see the error.
If possible recreate it.What you did in database?
Thanks
Forum: Developing with WordPress
In reply to: Custom Dynamic Sidebar Not Displaying in Widget AreaThanks @bcworkz noted.
Forum: Developing with WordPress
In reply to: Custom Dynamic Sidebar Not Displaying in Widget AreaHi @rfdmwilliam
Could you share me your website access?
I hope, need debug to find out proper issue.Thanks
Forum: Developing with WordPress
In reply to: query_posts() Cannot find posts created by plugin.Hi @cchzhu,
You should pass accurate parameter for custom code.
Such as:
query_posts(‘post_type=product’);Please replace your post_type: product to ‘your post type‘
I hope it will work for you.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Single Product page not displayingHi @jocelyn0417
Do you have any fatal error logs under **WooCommerce > System Status > Logs**?
Or
You can Enable debugging from wp-config.php
define( ‘WP_DEBUG’, true );After that, you will get proper problem, i think.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Single Product page not displayingWhen i checked, I got this Js error.
May be, @jocelyn0417 has fixed the Js issue.
Yes, definitely we need to check logs.Thanks
Forum: Plugins
In reply to: [WooCommerce] Single Product page not displayingHi @jocelyn0417
I have seen there is a javaScript issue.
(Uncaught TypeError: Cannot read property ‘top’ of undefined)You should fix this one.
Thanks
Forum: Fixing WordPress
In reply to: Cannot Edit Blog Post Once PublishedYour Error was (jQuery “.live” is not a function.)?
“.live” should be changed to “.on”.I do that.
Now, your problem is resolved.
Thanks
- This reply was modified 4 years, 5 months ago by Md. Asraful Islam.
Forum: Fixing WordPress
In reply to: Cannot Edit Blog Post Once Publishedemail:[email protected]
Forum: Fixing WordPress
In reply to: Cannot Edit Blog Post Once PublishedHi @cheryljonesj,
It’s probably JavaScript issue. Please try to ‘inspect’ and check console. I hope you will get error list.
Or
You can share to me your website URL and access.
Thanks
Hi @arufasari,
For avoid php error message.
I have a solution. Before start foreach loop you can check. Is $array value exist or not. if $array value exist code will run foreach loop otherwise not run foreach loop.Code should be: //Some thing like
if(isset($array){
foreach ( $array as $key => $value ) {
$value = $value == ‘on’ && $site_added == 1 ? 1 : 0;if( strpos( $key, ‘-‘) ){
$new_key = explode( ‘-‘, $key );
$new_array[$new_key[0]] = $value;
}else{
$new_array[$key] = $value;
}
}
}Thanks