Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dsthedev

    (@dsthedev)

    Also, it seems your js is also contributing to the issue. I have found a temporary fix, but you should really fix this as it would be easy to do.

    For anybody else with this issue, this is how I’m fixing it for now:

    function my_admin_enqueue($hook) {
        if ( 'post.php' != $hook ) {
            return;
        }
        wp_dequeue_style( 'wpl_backend_main_style' );
        wp_dequeue_script( 'wpl_backend_javascript' );
    }
    add_action( 'admin_enqueue_scripts', 'my_admin_enqueue' );

    This might be happening because there are some shorthand php tags that don’t work on some server configurations. Please try the following and see if it helps.

    Open name_price_wc_plugin.php and change line 1 from <? to <?php
    Also open templates/single-product/price.php and change line 52 from <? } ?> to <?php } ?>. If this doesn’t help simply change the version to something old (1.0) and update the plugin, it will revert it back to normal.

    It worked for me.

Viewing 2 replies - 1 through 2 (of 2 total)