Hello,
sorry for my bad english, but i hope you understand.
Since a few days, the Plista will not shown on my page more.
On my second page it works.
I deactivated all plugins but don’t work more.
On Plista Website i can not show other scripts, or Public Key or Widget name why?
Hope you can help.
]]>We have Plista plugin installed for a long time and we noticed that our error log is bloated with the following error message:
json_encode(): Invalid UTF-8 sequence in argument in /var/www/html/wordpress/wp-content/plugins/plista/plista_integration.php on line 300
You have to replace this snippet of code on line 300
$plistapush = '"item": ' . ($plista_data ? json_encode($plista_data) : '{}');
with the following snippet:
if (is_array($plista_data) && !empty($plista_data)) {
array_walk_recursive($plista_data, function(&$item, $key) {
$item = mb_convert_encoding($item, 'UTF-8', 'UTF-8');
});
}
$plistapush = '"item": ' . ($plista_data ? json_encode($plista_data, JSON_UNESCAPED_UNICODE) : '{}');
The first part is needed to convert non-UTF-8 values to UTF-8 (! array keys are NOT ALTERED, but they might contain unescaped strings too, we could repeat array walk for after flipping the array + re-flip it back, but I don’t think it’s a good idea)
So the second change deals with unescaped strings left after the conversion thanks to JSON_UNESCAPED_UNICODE parameter on json_encode function call.
Where can we find the repository for this plugin? We would like to create a pull request?
]]>leider wird die von euch verwendete funktion “get_image_sizes” auch von einem anderen plugin verwendet (affiliatetheme.io) k?nnt ihr eure funktion bitte unique umbenennen?
das w?re ohnehin sauberer für den code!
]]>Hi
is your plugin php7 ready?
thanks
Monika
]]>Sorry to say but a blog like autoblog.NL uses this and it made it allmost unreadeble.
It simply starts up way to slow which makes de page drop down while reading.
Trow it in the bin and start again from the ground up.
How can I exclude Custom Post Types from Related Content? I have several post types for events, locations and ebooks. Even my pages are indexed and shown as recommandations. I don’t want my content to be mixed up in such a way. I only want posts to be shown as related content!
]]>Is it possible to change the title of the plista plugin (“Das k?nnte Sie auch interessieren”) ?
]]>Hello,
After activating plista, some categories in the sites shows 503 error.
If I deactivated it works fine again.
Any idea?
Regards,
]]>Forbidden
You don’t have permission to access /wp-admin/options-general.php on this server.
]]>I have this error when I want to edit widgets
Zeitstempel: 06.08.12 13:15:15
Fehler: TypeError: pmdesign is null
Quelldatei: https://*******.***/wp-content/plugins/plista/js/plista-admin.js?ver=1.3
Zeile: 15
When i activate the new version ist says:
Warning: Invalid argument supplied for foreach() in /xxx/xxx/wxxx/xxx/wp-content/plugins/plista/plista_integration.php on line 260
]]>