• 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:53

    public 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)
  • Hi to all! @fabline

    Hi I tried this solution but it still doesn’t convert by incorporating the Amazon links the products are not displayed, before it worked perfectly. Are there other solutions, could the creators of the plugin intervene? I use wordpress 6.8.1 with PHP 8.1.32

    my best regards

    • This reply was modified 8 months, 1 week ago by n3w0xyz. Reason: some typo error
    • This reply was modified 8 months, 1 week ago by n3w0xyz.
    Thread Starter fabline

    (@fabline)

    Yes, it used to work before, but it stops functioning after a certain period. I believe this is due to the limitations of the free version. I’ve tested it on several different WordPress sites, and in each case, it stops working after about 1–2 weeks. It seems that the free version of the plugin has a built-in time restriction.

    thank u very much for answering @fabline

    honestly it’s something with no-sense… if the plugin is declared free at least for the simple embedding of amazon links. I could understand for other deeper functions but for the simple links should continue to work…hopefully they can improve.

    • This reply was modified 8 months, 1 week ago by n3w0xyz.
    Moderator Support Moderator

    (@moderator)

    @fabline This topic is not a valid review; it’s support. I have moved it from reviews to support.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Content Not Displaying’ is closed to new replies.