• 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 Insert PHP code appears in Description column

    Hello. Can you send a screenshot?
  2. Temyk

    RESOLVED php snippets not working in sidebars/header bars

    By default in Wordpress, shortcodes are not allowed to be executed in a custom HTML widget. To change this, create a php snippet with execution everywhere: add_filter( 'widget_text', 'do_shortcode' );
  3. Temyk

    BUG Latest version, with latest version of wordpress causes extreme slowness

    When you disable woocommerce, are pages also slow to open?
  4. Temyk

    BUG Latest version, with latest version of wordpress causes extreme slowness

    Hello. We and other users do not have this problem. Perhaps the plugin conflicts with another plugin on your site? How did you determine the speed of the site?
  5. Temyk

    RESOLVED Woocommerce Products Add-ons - Options Thumbnails Label

    Save the Clearfy settings to your computer so that you can restore them. After that, reset the settings and check if it is displayed correctly with the default settings
  6. Temyk

    RESOLVED Woocommerce Products Add-ons - Options Thumbnails Label

    I meant the settings in the PERFORMANCE section, and you disabled the entire components. So, too, can be, but this more radically.
  7. Temyk

    RESOLVED Woocommerce Products Add-ons - Options Thumbnails Label

    Try disabling HTML/CSS and JS compression
  8. Temyk

    RESOLVED Woocommerce Products Add-ons - Options Thumbnails Label

    Hello. What plugin settings do you have enabled?
  9. Temyk

    RESOLVED php snippets not working in sidebars/header bars

    Are we talking about HTML and text widgets or snippets?
  10. Temyk

    RESOLVED Как прописать вывод снипета на конкретной странице.

    Давайте разберемся, какой из советов у вас не работает? PHP сниппет или Дополнительная логика в сниппете?
  11. Temyk

    RESOLVED Как прописать вывод снипета на конкретной странице.

    Не совсем понятно, мы ответили на ваш вопрос или требуется ещё помощь?
  12. Temyk

    BUG Compatibility with Older Insert PHP

    You can't track where the code was executed. Your code is called somewhere else, you need to find exactly where. Can be in another code connects the text from your page.
  13. Temyk

    BUG Compatibility with Older Insert PHP

    So you have this code somewhere else. Try changing the data in the query in the last test code. All three records will be with new data?
  14. Temyk

    QUESTION Snippet library Custom api endpoint

    Hi, Yes, if you have problems with the plugin, we return the money within 14 days from the date of purchase. There are no snippets for wordpress' custom api endpoint in the library. But your link are all painted in detail and you can write the snippet myself
  15. Temyk

    BUG Не могу мигрировать на новую версию базы данных плагина

    Здравствуйте. Из-за такого огромного количества изображений, скрипту миграции не удаётся её закончить. Единственный способ решить проблему - это удалить плагин Робин и установить его заново, после чего заново запустить оптимизацию всех изображений.
  16. Temyk

    RESOLVED Как прописать вывод снипета на конкретной странице.

    Вам нужно использовать PHP сниппет с примерно таким кодом: if(is_category()) { echo "Category!"; } if(is_tag()) { echo "Tag!"; } В параметрах функций можно указать конкретную рубрику или тэг, на странице которого будет отображаться. Документация по этим функциям: is_category() —...
  17. Temyk

    RESOLVED Как прописать вывод снипета на конкретной странице.

    Здравствуйте. Какой именно сниппет вы хотите вывести?
  18. Temyk

    BUG Compatibility with Older Insert PHP

    It's not about other plugins or Woody plugin. I think it's your code that's the problem. If you add output to this code, but it is displayed only once, then the problem is not in this code. Try creating a new page and adding only the code to write to the database
  19. Temyk

    BUG Compatibility with Older Insert PHP

    There's nothing in your code about downloading a file. But you write about it.
  20. Temyk

    BUG Compatibility with Older Insert PHP

    Everything you've described means that the problem is in your code. I can't help you without seeing the whole code and knowing how it works. Try to display the path to the file you are accessing and verify it.