• i am using stackable and graphql both plugin in my last version 3.12.15 of stackable when i used to run graphql query frontend_block.css and frontend_block_responsive.css used to show but after updating it is missing when I roll back to old version then it appears

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Benjamin Intal

    (@bfintal)

    What version were you updating from? I believe there weren’t any changes from just the previous version on loading stylesheets.

    Thread Starter rohan7506

    (@rohan7506)

    I was upgrading from 3.12.15 to 3.13.6 below is graphql output

    Before the update: plugin version 3.12.15
    ?
    "enqueuedStylesheets": {
    ? ? ? ? "nodes": [
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/image/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/paragraph/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-content/plugins/stackable-ultimate-gutenberg-blocks/dist/frontend_blocks.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-content/plugins/stackable-ultimate-gutenberg-blocks/dist/frontend_blocks_responsive.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": null
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/heading/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": null
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/list/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/cover/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/group/style.min.css"
    ? ? ? ? ? }
    ? ? ? ? ]
    ? ? ? }
    ?
    After the update: plugin version ?3.13.6
    ?
    "enqueuedStylesheets": {
    ? ? ? ? "nodes": [
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/image/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/paragraph/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/heading/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": null
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/list/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/cover/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "https://localhost/xyz/wp-includes/blocks/group/style.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": null
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": "/wp-includes/css/dist/block-library/common.min.css"
    ? ? ? ? ? },
    ? ? ? ? ? {
    ? ? ? ? ? ? "src": null
    ? ? ? ? ? }
    ? ? ? ? ]
    ? ? ? }

    Thread Starter rohan7506

    (@rohan7506)

    Also using this function

    function xyz_print_scripts_styles() {
    ?
    ??? $result = [];
    ??? $result['scripts'] = [];
    ??? $result['styles'] = [];
    ?
    ??? // Print all loaded Scripts
    ??? global $wp_scripts;
    ??? foreach( $wp_scripts->queue as $script ) :
    ?????? $result['scripts'][] =? $wp_scripts->registered[$script]->src . ";";
    ??? endforeach;
    ?
    ??? // Print all loaded Styles (CSS)
    ??? global $wp_styles;
    ??? foreach( $wp_styles->queue as $style ) :
    ?????? $result['styles'][] =? $wp_styles->registered[$style]->src . ";";
    ??? endforeach;
    ?
    ??? return $result;
    }
    ?
    function xyz_wp_head_action_list_enqueued() {
    ?
    ??? $all_the_scripts_and_styles = xyz_print_scripts_styles();
    ??? print_r($all_the_scripts_and_styles);
    ?
    }
    add_action( 'wp_head', 'xyz_wp_head_action_list_enqueued');
    • This reply was modified 1 month, 3 weeks ago by rohan7506.
    Plugin Author Benjamin Intal

    (@bfintal)

    Thanks for the update, we have gotten another similar report that we currently testing a possible fix for, and I believe that might fix also the issue you are encountering. If all is okay we will release a fix for it in a day or two. Kindly wait for that update.

    Thread Starter rohan7506

    (@rohan7506)

    Hey thanks for the update keep posted once this release is out waitng for this as due to this we were not able to update plugins and wordpress

    Plugin Author Benjamin Intal

    (@bfintal)

    Hey @rohan7506 v3.13.7 should have addressed this issue. Please let us know if it fixes things.

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.