Hello.
We are aware of this issue and will fix it in the next update.
As long as I can offer you to check the category in the snippet code, it's not difficult
<?php
global $post;
if(has_category( 'tests', $post )) //The first parameter instead of 'tests' can be the category name or category ID...
Плагин Robin сжимает изображения из медиабиблиотеки, и не знает о постах и категориях, в которых эти изображения размещены. Могу вам предложить упаковывать скины в ZIP архив, чтобы Робин их не оптимизировал
Probably what you're hosting is not installed an extension php_fileinfo. Write to the technical support of your hosting and ask to install this extension
You need to enable error Log in Robin settings. After that, try to optimize large files that give an error.
Then on the "error Log" tab click Export Debug Information and send the log file to me
Здравствуйте.
Спасибо за ваши предложения по доработке плагина! Хотел бы уточнить, что значит "некоторых категорий"? Как это должно выглядеть на ваш взгляд?
In woody, you can create a snippet with a form and a submit button. But to place it in the footer your template must have footer widgets. Alternatively, select Auto-placement in the snippet settings and select Footer. Then the snippet will appear before the closing </body>tag
Hello.
No need to write code inside the shortcode.
It must be:
1) Snippet:
function print2($str){
$str = str_replace(",","<br>",$str);
print $str . "<br>";
}
$test="yes,no,maybe";
print2($test);
2) Shortcode in post:
[wbcr_php_snippet id="96"]
Здравствуйте.
У вас установлен и работает wp fastest cache? Возможны конфликты с кэшированием. Попробуйте очистить кэш и отключить кэширование, после этого включить объединение CSS и после этого включить кэширование.
Что найти css файлы для исключения вам нужно отключить кэширование и...
Hello.
Different snippets inserted in the same place do not see each other's variables. All variables that you use between snippets must be declared as global in both snippets.
Add this line to the beginning of both snippets:
global $myDB;
global $start;
global $end;
This is a conflict with some other plugin. Try disabling all plugins one by one to find this plugin. Let me know its name, I will try to help fix the problem.