Content Not Displaying
-
Content Not Displaying
If you’re facing an issue with page content not showing, you might want to give this solution a try.
Solution:
I resolved the issue in the following way, and I’m sharing it here for your information.
/amazon-auto-links/include/library/apf/factory/_common/utility/base_utility/AdminPageFramework_Utility_ArrayGetter.php:53public static function getArrayValueByArrayKeys($aArray, $aKeys, $vDefault = null)
{
// WP_Error nesnesi olup olmadığını kontrol et
if (is_wp_error($aArray)) {
return $vDefault;
}
$_sKey = array_shift($aKeys);
if (isset($aArray[$_sKey])) {
if (empty($aKeys)) {
return $aArray[$_sKey];
}
if (is_array($aArray[$_sKey])) {
return self::getArrayValueByArrayKeys($aArray[$_sKey], $aKeys, $vDefault);
}
return $vDefault;
}
return $vDefault;
}Kind regards,
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Content Not Displaying’ is closed to new replies.