Dilip Gupta
Forum Replies Created
-
@johnny2tones23 were you able to get the workaround of this issue? how did you resolve it?
you don’t need to copy the functions.php from parent to child theme, you can simply create the functions.php in child theme directory/folder, and enqueue the bootstrap.css via a hook function, like this.
function wp_bootstrap_starter_child_scripts() {
// load parent style
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘boostrap’, get_stylesheet_directory_uri() . ‘/bootstrap.css’ ); //update the relative path of bootstrap.css file.
}
add_action( ‘wp_enqueue_scripts’, ‘wp_bootstrap_starter_child_scripts’ );@leslieannetd I think UM-switcher is kind of only available option as for the moment, I’m planning to use it too for my paid membership functionality. check for it.
Forum: Plugins
In reply to: [WP Customer Reviews] Enable WP Customer Reviews for custom post typesHey, I’m looking for the same. I’m trying it, if I get any success I will definitely share it with you. If you find a solution, then please share it with me.