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

Search results

  1. Kirill

    RESOLVED Fatal error: Cannot redeclare function

    Hi As indicated in the error, function cannot be redeclared with the same name. This can happen, for example, if you create a function in your snippete code and then insert this snippet several times on the page. You can avoid this error by wrapping function declaration in conditional block...
  2. Kirill

    RESOLVED No see the code field if activating SEOPress plugin

    Hi Thank you for contact us. Try to update SEOPress to latest version. It looks like problem have been solved. Best regards, Kirill Webcraftic team
  3. Kirill

    BUG Пишет Last-Modified не найден

    Добрый день Можете дать доступ к сайту (админка и фтп) чтобы мы могли определить причину проблемы и исправить ее? Обратите внимание, это публичный топик. Пожалуйста, ответьте мне в личные сообщения. (Кнопка "start conversation"). С уважением, Кирилл Команда Webcraftic
  4. Kirill

    BUG Since update to "woody" from php snippets, can no longer see code.

    Please send me access to the wp admin and ftp so i can help you. Note. This is public topic. Please reply in private messages - "start conversation" button Best regards, Kirill Webcraftic team
  5. Kirill

    QUESTION Woody snippet code not longer working

    I think it related by cache of nginx server, please contact your hosting provider. Best regards, Kirill Webcraftic team
  6. Kirill

    QUESTION can't load data from external mysql DB into page

    hi yes, the snippets were designed as isolated units. To avoid duplicate queries to the database, you can use the cache. If you not use cache plugins then cached data will be stored only during the current request to the site. This is enough to pass between snipples. If you use cache plugins...
  7. Kirill

    RESOLVED Problems between Yoast SEO 10.0 and Woody ad snippets

    Hi Olaf Try follow steps: open file wp-content/plugins/insert-php/includes/class.execute.snippet.php and find line below } else if ( isset( $winp_after_post_content[ $post->ID ] ) ) { and replace with } else if ( $post !== null and isset( $winp_after_post_content[ $post->ID ] ) ) { Thank you...
  8. Kirill

    RESOLVED Can't save/update snippets on WP 5.1

    Hi Can you tell us more about how you solved the problem? This can be useful for other users. Best regards, Kirill Webcraftic team
  9. Kirill

    BUG Menu disappeared for mobiles, ivory search does not work anymore

    Hi Are you talking about the front part or the administrative part of your site? Settings in section performance may occur this problem. Such as optimize html or optimize css, optimize js. Try to temporarily deactivate the Clearfy plugin to make sure that this plugin causes an error. Best...
  10. Kirill

    BUG Updating Failed on any pages with wp v5.1.1

    Hi I also use WP 5.1.1 and this should not be a problem. Please send me access to your site for i can fix it. Note. This is public topic. Please reply in private messages - "start conversation" button. Best regards, Kirill Webcraftic team
  11. Kirill

    BUG Since update to "woody" from php snippets, can no longer see code.

    Hi What is your version of WordPress and Woody? Try to reinstall Woody plugin. If that doesn't work let me know. Best regards, Kirill Webcraftic team
  12. Kirill

    QUESTION Woody snippet code not longer working

    Please write to me a list of plugins that you use. And a link to a page with a snipped. Best regards, Kirill Webcraftic team
  13. Kirill

    BUG Inside Shortcode not Working

    Hi Please copy here full Woody snippet code. Best regards, Kirill Webcraftic team
  14. Kirill

    QUESTION Woody snippet code not longer working

    Hi Do you have cache plugins in wordpress? Maybe you use CDN? Try clearing cache in these plugins /CDN account. Best regards, Kirill Webcraftic team
  15. Kirill

    QUESTION Wordpress Function

    Hi Create php snippet with code: echo site_url(); Go back to snippet list and copy shortcode for your snippet. Example: [wbcr_php_snippet id="xxx"] Insert snippet shortcode to your post. Best regards, Kirill Webcraftic team
  16. Kirill

    RESOLVED Compatability with themes

    Hi Jasmin Please try the code below [insert_php] if(ini_get('allow_url_fopen')){ echo file_get_contents('https://notdienste-app.herokuapp.com/'); }else{ echo 'Cannot connect: allow_url_fopen is false'; } [/insert_php] Best regards, Kirill Webcraftic team
  17. Kirill

    RESOLVED Compatability with themes

    Hi Jasmin Maybe you use the theme-specific functions in your php? Please copy your code here. Best regards, Kirill Webcraftic team
  18. Kirill

    RESOLVED Плагин режет комментарии в коде

    Посмотрите, пожалуйста, там должна быть вкладка "minify(html, js, css)". С уважением, Кирилл Команда Webcraftic
  19. Kirill

    RESOLVED Плагин режет комментарии в коде

    Здравствуйте Вкладка "Производительность" - "Minify" Если включено "Оптимизировать HTML код", попробуйте включить опцию "Оставлять HTML комментарии" С уважением, Кирилл Команда Webcraftic
  20. Kirill

    QUESTION How to Pass variables between Snippets

    Hi Sorry, the plugin does not have the feature to share variables between snippets. As a workaround, I can suggest using global variables, a session, or something like that. This is not a perfect solution, but it works. Best regards, Kirill Webcraftic team