Home Forums Basel support forum Optimization

Optimization

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #250094

    cg
    Participant

    Hi,

    I’m trying to make my website faster (pagespeed insights) and I have some questions:

    1. If a delete completely (not deactivate) the Rev. Slider plugin, will I have any issues with the theme?

    2. Do I need to delete the Rev. Slider every time I update the theme?

    3. I don’t use the Google Maps and it seems like the js is slowing down my website. How can I delete everything about the the google maps (code, css, html, etc).

    4. I use WP Rocket and my home page scores only 18 in google page speed. Can you give me any suggestions to make it faster?

    Thank you.

    #250279

    Artem Temos
    Keymaster

    Hello,

    1. No, you can delete the plugin without any worries.

    2. Just uninstall it once and never install it again.

    3. Try to disable the Combine JS option in Theme Settings -> Performance.

    4. You need to try to disable all external plugins since they load a lot of JS and CSS files. Also, enable JS and CSS optimization in WP Rocket settings. And setup some CDN service like KeyCDN for example.

    Kind Regards

    #252846

    cg
    Participant

    Thank you so much for the feedback. Since Google is taking more and more into consideration the speed and performance, I would like to kindly ask your dev team to review your JS library. While checking the Pagespeed Insight, GT Metrix, etc, I noticed your theme have some deprecated JS that consume time. For ex:

    https://cgmodernart.com/wp-content/themes/basel/js/TweenMax.min.js?ver=5.4.2

    Check the developer update here:

    https://greensock.com/tweenmax/

    Thank you.

    #252962

    Artem Temos
    Keymaster

    Hello,

    We will fix this in our next theme update. You can remove this library from your website at all.

    1. Disable Minify and Combine JS in Theme Settings -> Performance.

    2. Remove the following code from the file js/functions.js http://prntscr.com/w7ltle

    3. Add the following snippet to the functions.php file in your child theme

    add_action(
    	'wp_enqueue_scripts',
    	function() {
    		wp_dequeue_script( 'basel-panr' );
    		wp_dequeue_script( 'basel-tween-max' );
    	},
    	10001
    );

    Regards

Viewing 4 posts - 1 through 4 (of 4 total)