• Resolved Lea

    (@leac)


    Hi,

    After updating to Version 2.8.2, the Settings screen has links instead of tabs, and nothing appears when clicking them

    I deactivated all other plugins and activated one of the default themes, but that didn’t solve the problem.

Viewing 13 replies - 1 through 13 (of 13 total)
  • Hi @leac,

    Thanks for using our plugin.

    Could you please share a screenshot of your browser console? This will help us identify and understand the issue more effectively.

    Thanks & Regards.

    Thread Starter Lea

    (@leac)

    Hi,

    Sure, here it is (I don’t see any errors in it)

    Plugin Support aniketji

    (@aniketji)

    Hi @leac,

    Can you please share a screenshot of your plugin dashboard so that we can check it from our side?

    Thanks & Regards.

    Thread Starter Lea

    (@leac)

    Hi,

    Do you mean this dashboard?

    Plugin Support aniketji

    (@aniketji)

    Hi @leac,

    Not this dashboard, WordPress default plugin dashboard.

    Thanks & Regards.

    Thread Starter Lea

    (@leac)

    OK. There is only this plugin:

    Plugin Support aniketji

    (@aniketji)

    Hi @leac,

    I have check the same scenario with default themes but I am not facing this issue at my end please try the below shared solution to fix this issue.

    Please Open the file located at: cool-timeline\admin\codestar-framework\classes\setup.class.php.

    To fix file loading issue replace your existing code with the corresponding code shared below with line numbers, click here for more details.
    Locate the following lines:

    line no. 587:
    wp_enqueue_style( ‘csf’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/css/style’. $min .’.css’, array(), self::$version, ‘all’ );

    line no. 591:
    wp_enqueue_style( ‘csf-rtl’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/css/style-rtl’. $min .’.css’, array(), self::$version, ‘all’ );

    line no. 595:
    wp_enqueue_script( ‘csf-plugins’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/js/plugins’. $min .’.js’, array(), self::$version, true );

    line no. 596:
    wp_enqueue_script( ‘csf’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/js/main’. $min .’.js’, array( ‘csf-plugins’ ), self::$version, true );

    Let me know If you are still facing the same issue after trying these.

    Thanks & Regards.

    • This reply was modified 11 months ago by aniketji.
    Thread Starter Lea

    (@leac)

    OK, that was the problem – the css and js weren’t loading.
    I fixed it with the main part of the code you sent (I had to change the apostrophes because they weren’t recognized by my IDE, and the , ‘all’ parameter in the 587 caused an error).
    So it turns out that CTL_PLUGIN_URL was the wrong path. Can this be fixed in a future version?

    Plugin Support aniketji

    (@aniketji)

    Hi @leac

    Please let us know the above shared code is working at your end or not.

    If it is working and fixed your issue we will add it in our next update.

    Thanks & Regards.

    Thread Starter Lea

    (@leac)

    Here is the code that worked at my end:

    ine no. 587:
    wp_enqueue_style( ‘csf’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/css/style’. $min .’.css’, array(), self::$version);

    line no. 591:
    wp_enqueue_style( ‘csf-rtl’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/css/style-rtl’. $min .’.css’, array(), self::$version, ‘all’ );

    line no. 595:
    wp_enqueue_script( ‘csf-plugins’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/js/plugins’. $min .’.js’, array(), self::$version, true );

    line no. 596:
    wp_enqueue_script( ‘csf’, CTL_PLUGIN_URL. ‘admin/codestar-framework/assets/js/main’. $min .’.js’, array( ‘csf-plugins’ ), self::$version, true );

    Thank you

    Thread Starter Lea

    (@leac)

    Hi

    Will you be adding this code in the next update?

    Plugin Support aniketji

    (@aniketji)

    Hi @leac

    Yes, we will added this code in our next update.
    If you have any further questions or requests, feel free to let me know.

    Thanks & Regards.

    • This reply was modified 10 months, 3 weeks ago by aniketji.
    Thread Starter Lea

    (@leac)

    Hi,

    I don’t see that you added this code to the next version. could you please add it?

    Thanks

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Settings page distorted after update to Version 2.8.2’ is closed to new replies.