Search results

  1. Temyk

    RESOLVED Wordpress Banner not showing for pages with PHP code snippets

    Your snippets have PHP errors in their code. To solve them, enable debugging mode in Wordpress, then you can see error messages. Debugging in WordPress
  2. Temyk

    RESOLVED Wordpress Banner not showing for pages with PHP code snippets

    Does removing the shortcode from the text solve the problem?
  3. Temyk

    BUG WP-CLI Command Line

    Hello. There are no WP-CLI commands for image optimization in the plugin.
  4. Temyk

    RESOLVED Перестала работать настройка in-editor behavior в Oxygen builder

    Выясните какой именно файл стилей вызывает проблему и добавьте его в исключения минификации
  5. Temyk

    RESOLVED Перестала работать настройка in-editor behavior в Oxygen builder

    Здравствуйте. Если деактивировать Clearfy, проблема решается? Если да, то нужно отключать опции и проверять какая из них вызвала проблему. Начните с минификации
  6. Temyk

    RESOLVED Redeclare Eval PHP

    You can grant me access to the admin panel of your site in private messages on the forum. Then I was able to look
  7. Temyk

    RESOLVED How to use custom shortcode name?

    Hello. A custom shortcode should work like any other shortcode in WordPress - [shortcodename] Just paste it into the text of a post or page.
  8. Temyk

    RESOLVED Redeclare Eval PHP

    In this code, the function is declared once. But it is also declared in a different place. Just change the name of the montaTexto() function in your snippet.
  9. Temyk

    RESOLVED Redeclare Eval PHP

    If you made a snippet backup, this snippet may also be running. You need to search in one of your snippets, but not in the plugin code.
  10. Temyk

    RESOLVED Redeclare Eval PHP

    BUG - If you see this error in the logs: "E_COMPILE_ERROR ... eval()'d code" This means that you have already declared (montaTexto) such a function already exists in WordPress or in one of the plugins or in one of your snippets.
  11. Temyk

    If you see this error in the logs: "E_COMPILE_ERROR ... eval()'d code"

    If you see this error in the logs, it means that you made an error in YOUR snippet code. Not in plugin! You can find information about this error in the Google and fix it. The plugin's technical support does not solve your problems in the code.
  12. Temyk

    RESOLVED 3rd Part Shortcodes stopped working

    The woody plugin only creates shortcodes. But WordPress executes the shortcodes itself. You may have problems with HTML markup. It doesn't depend on woody.
  13. Temyk

    RESOLVED 3rd Part Shortcodes stopped working

    Well of course. You closed the PHP code execution with this line
  14. Temyk

    RESOLVED 3rd Part Shortcodes stopped working

    You're doing something wrong. Send a screenshot of your snippet.
  15. Temyk

    RESOLVED 3rd Part Shortcodes stopped working

    PHP code is not executed. Make sure that you write the code correctly in the snippet.
  16. Temyk

    RESOLVED 3rd Part Shortcodes stopped working

    Then the only way: echo "<p>"; echo do_shortcode("[fvplayer src='https://mystreaming.serversurl.com:443/live/new/playlist.m3u8?token={$token}']");
  17. Temyk

    RESOLVED 3rd Part Shortcodes stopped working

    Before the woody update, shortcodes were not executed in the snippet text. In your case, you need to disable the execution of shortcodes in snippets, then the token should be added to the shortcode and executed
  18. Temyk

    RESOLVED 3rd Part Shortcodes stopped working

    I understand what the problem is. First, woody executes the snippet's shortcodes, and then executes the snippet's code. Therefore, the entire HTML code of the audio player is enclosed in quotation marks. From this and errors. You can write your code like this: echo "<p>"; ?> [fvplayer...