Viewing 2 replies - 1 through 2 (of 2 total)
  • Having exact same issue. Widget now just shows two bullet point items
    • Popular
    • Recent

    with list of posts below

    Also break entire page layout

    Same problem for me. I worked it out, the plugin enqueues the stylesheet and JS file but the plugin directory must have changed from before (this is the first time I’ve used the plugin).

    To fix it, open up tabs-popular-posts-and-latest-posts.php and change the following lines: (lines 78 & 79)

    wp_enqueue_style( 'tplp_style', get_option('siteurl').'/wp-content/plugins/tabs-popular-posts-and-latest-posts/inc/style.css');
    wp_enqueue_script( 'tplp_script', get_option('siteurl').'/wp-content/plugins/tabs-popular-posts-and-latest-posts/inc/script.js', '', '1.0', true);

    To:

    wp_enqueue_style( 'tplp_style', get_option('siteurl').'/wp-content/plugins/tabs-widget-popular-posts-and-latest-posts/inc/style.css');
    wp_enqueue_script( 'tplp_script', get_option('siteurl').'/wp-content/plugins/tabs-widget-popular-posts-and-latest-posts/inc/script.js', '', '1.0', true);

    Please note: this assumes the directory your plugin was installed to is the same as mine – if it’s different then change the plugin directory above accordingly.

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

The topic ‘Latest version 2.3 breaks the CSS’ is closed to new replies.