• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.

Search results

  1. Temyk

    RESOLVED Display a picture together with SQL-query data

    if ($result->num_rows > 0) { // output data of each row while($row = $result->fetch_assoc()) { echo "<img src='whatever/path/".$row["Vorname"].".".$row["Nachname"].".png' />"; echo $row["Vorname"]." ". $row["Nachname"]. "<br>"; echo "Jahrgang ". $row["Jahrgang"]...
  2. Temyk

    RESOLVED Display a picture together with SQL-query data

    Hello. Maybe like this? <img src="whatever/path/".$row["Vorname"].".".$row["Nachname"].".png" />
  3. Temyk

    RESOLVED Pls Help

    Hello. Your problem is with the Wordfence plugin, not with Clearfy. Please contact to Wordfence technical support
  4. Temyk

    RESOLVED Plugin breaks 404page admin notice

    Hello. Thanks for the feedback. We will fix this in the next version
  5. Temyk

    BUG Some snippet not working anymore on my website.

    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...
  6. Temyk

    IDEA Совет для разработчиков.

    Плагин Robin сжимает изображения из медиабиблиотеки, и не знает о постах и категориях, в которых эти изображения размещены. Могу вам предложить упаковывать скины в ZIP архив, чтобы Робин их не оптимизировал
  7. Temyk

    IDEA Совет для разработчиков.

    Тогда прикрепите ещё скриншот лога оптимизации
  8. Temyk

    RESOLVED Error: For Robin image optimizer to work, you need to install php extension [php_fileinfo].

    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
  9. Temyk

    RESOLVED Error: For Robin image optimizer to work, you need to install php extension [php_fileinfo].

    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
  10. Temyk

    RESOLVED Error: For Robin image optimizer to work, you need to install php extension [php_fileinfo].

    Hello. Other images are compressed fine? Tried to change the server?
  11. Temyk

    IDEA Совет для разработчиков.

    Можете прислать нам те PNG картинки, которые увеличиваются после сжатия?
  12. Temyk

    IDEA Совет для разработчиков.

    Здравствуйте. Спасибо за ваши предложения по доработке плагина! Хотел бы уточнить, что значит "некоторых категорий"? Как это должно выглядеть на ваш взгляд?
  13. Temyk

    RESOLVED Unable to get woody snippets to work

    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
  14. Temyk

    RESOLVED Unable to get woody snippets to work

    What exactly isn't working? Is the shortcode displayed in the page text? Or the snippet code doesn't work?
  15. Temyk

    RESOLVED Unable to get woody snippets to work

    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"]
  16. Temyk

    QUESTION Объединение css файлов

    Здравствуйте. У вас установлен и работает wp fastest cache? Возможны конфликты с кэшированием. Попробуйте очистить кэш и отключить кэширование, после этого включить объединение CSS и после этого включить кэширование. Что найти css файлы для исключения вам нужно отключить кэширование и...
  17. Temyk

    RESOLVED Trouble converting [php_insert] into Snippet

    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;
  18. Temyk

    RESOLVED Insert PHP code appears in Description column

    Most likely it is a plugin that creates a custom post type
  19. Temyk

    RESOLVED Insert PHP code appears in Description column

    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.