Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi there,

    Thank you for writing in,

    The theme already has the predefined layouts and you can not apply the bootstrap by default. You need the proper knowledge of WordPress codes and theme formats then you need to add manually bootstrap classes every div structure and you need to replace the theme styles file so that it is not possible.

    Regards!!

    Thread Starter Dr.Hofmann

    (@drhofmann)

    This is answer:
    for function.php

    
    
    function bootstrap_scripts_enqueue() {
    	    // all styles
    	wp_enqueue_style('bootstrap-css',get_template_directory_uri().'/css/bootstrap.css');
    	wp_enqueue_style('custom-css',get_template_directory_uri().'/css/custom.css');
    	    // all scripts
    	wp_enqueue_script( 'jquery-3-js', get_template_directory_uri() . '/js/jquery-3.4.1.min.js');
    	wp_enqueue_script( 'bootstrap-js', get_template_directory_uri() . '/js/bootstrap.min.js');
    }
    add_action( 'wp_enqueue_scripts', 'bootstrap_scripts_enqueue',80 );
    
    • This reply was modified 5 years, 4 months ago by Dr.Hofmann.

    Hi there,

    Thank you for wiring in,

    This can not help you to replace the design with the bootstrap because you need to add a bootstrap class in every section or the available widgets to replace the design.

    Regards!!

    Thread Starter Dr.Hofmann

    (@drhofmann)

    Hi there,
    
    Thank you for wiring in,
    
    This can not help you to replace the design with the bootstrap because you need to add a bootstrap class in every section or the available widgets to replace the design.
    
    Regards!!

    I got the bootstrap component using, I didn’t try to custom inject bootstrap template from bones to wp engine. There are a lot of another oportunities.

    Hi there,

    Thank you for writing back,

    We suggest you create the child theme for the modification on the theme. If you update the theme in future updates then it will replace the codes that you have added.

    Regards!!

    Thread Starter Dr.Hofmann

    (@drhofmann)

    We suggest you create the child theme for the modification on the theme. If you update the theme in future updates then it will replace the codes that you have added.
    

    Everyone who want to add bootstrap design, ‘ll do it, as there are a lot courses. One of them “TutsPlus – Building WordPress Themes With Bootstrap”.

    But another way, seo mistakes in template – those require code directly editing. h1 – in head, h2 – in body title and etc. And every update ‘ll return code customization back by default. I suppose that is not flexible and fixible. Just do all customization lock it for update, and use it.

    Hi there,

    Thank you for writing in,

    Normally themes do not provide the feature to change the codes manually especially in the free version because it is non-profitable themes.

    Regards!!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Add bootstrap or use it’ is closed to new replies.