Custom CSS is overwritten by WordPress?

I do assume you have functions.php file in your theme directory after that you can add following code : /*Section for enqueuing styles and scripts*/ function keyword_theme_styles_and_scripts(){ /* Styles Below */ wp_enqueue_style(‘bootstrap-min-css’, ‘https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css’); wp_enqueue_style(‘video-js-min-css’, get_template_directory_uri().’/assets/css/video-js.min.css’); wp_enqueue_style(‘google-fonts’, ‘https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800’); wp_enqueue_style(‘font-awesome-min-css’, get_template_directory_uri().’/assets/font-awesome/css/font-awesome.min.css’); wp_enqueue_style(‘magnific-popup-css’, get_template_directory_uri().’/assets/css/magnific-popup.css’); wp_enqueue_style(‘animate-min-css’, get_template_directory_uri().’/assets/css/animate.min.css’); wp_enqueue_style(‘device-mockups-min-css’, get_template_directory_uri().’/assets/device-mockups/device-mockups.min.css’); wp_enqueue_style(‘main-css’, get_template_directory_uri().’/style.css’); /* Scripts Below */ wp_enqueue_script(‘jquery-min-js’, get_template_directory_uri().’/assets/js/jquery.min.js’, array(), ”, … Read more

Remove Read More Buttons

This theme already have options for this in appearance menu Go to appearance -> theme options -> Styling Settings -> Posts on Homepage to full posts

how to costume title single page

You can use “the_title” filter for this. http://codex.wordpress.org/Function_Reference/the_title add_filter(‘the_title’,’callbackfunction’); function callbackfunction($data){ global $post; $new_title = “new page title”; //You can set dynamic title from $post return $new_title; } If you just want to change the site title you can do this in the backend itself “Settings->General->Site Title”

how make wp include urls as https?

It depends on how you included these scripts on your website. Did you include them directly on your theme files (i.e. footer.php, header.php) or did you use wp_enqueue_script on your functions.php? In the first case, you have to manually update these script URLs to https while please make sure you’ve updated your WordPress and Site … Read more

Simple filter to change label name of Email Adress to something else

add_action( ‘user_new_form’, ‘change_label_form’ ); function change_label_form() { echo ‘<script> jQuery(document).ready(function($) { $(“label[for=email]”).html(“Example”); } ); </script>’; } here is trick worked for me , you can change the label for any filed by using the for tag in the label and you can add action on any form you like, as add_action( ‘edit_user_profile_update’, ‘change_label_form’ ); Here … Read more