masjmh
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Form Version 5.4 – E-Mail donot send E-Mail – Error messageThanks a lot. I have solve this. I have configured wp smtp plugin and it is functioning.
- This reply was modified 3 years, 8 months ago by masjmh.
Forum: Plugins
In reply to: [Cool Tag Cloud] PaginationPlease give the possibility there to write anything More or other word also, so that everybody can choose the label of the Button to their needs.
ThanksForum: Plugins
In reply to: [User Role Editor] Extend role of EditorHi Vladimir,
Thanks. Do you have any idea how to change it for editor also. I mean I want to give access to editor and admin also.- This reply was modified 6 years, 6 months ago by masjmh.
Forum: Themes and Templates
In reply to: [Hitchcock] Create a footerHi Delpil,
creating child theme:
create a new directory in wp-content/themes/ and name it delphinepilcher-child
In this directory create two files functions.php and style.css.
In functions.php insert following code<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') ); }
In style.css:
Add this line as it is. Here Theme Name = delphinepilcher-child as I give this name. If you give another name to the child theme than write it here.
/*
Theme Name: delphinepilcher-child
Template: hitchkock
*/
Here you can write your css code.In this way you can change css and other file without touching the files of hitchkock theme.
After creating these two files go to wordpress – appearance – themes here you will see the created delphinepilcher-child theme.
Activate the child theme. Check the site after activating your childtheme. If everything is o.k. Then copy the footer.php file from hitchkock theme and paste it this file in child theme (here delphinepilcher-child). Now you can change footer as your need. I hope that will help you.Forum: Themes and Templates
In reply to: [Hitchcock] Create a footerHi Delpil,
you can change it in footer.php.
It is better to create child theme and than copy the footer.php file from hitchcock theme in your childtheme and than change the footer as your need.Forum: Plugins
In reply to: [WPS Hide Login] Ip restriction wp login urlYes my file is .htaccess and exist in wp-admin directory. I have to restart the server only. Many Thanks
Forum: Plugins
In reply to: [WPS Hide Login] Ip restriction wp login urlThanks a lot but it doesnot function.I have created the htaccess as described.
- This reply was modified 6 years, 9 months ago by masjmh.
Forum: Plugins
In reply to: [Simple Custom CSS and JS] After Activating the Images on Website disappearsForum: Plugins
In reply to: [Simple Custom CSS and JS] After Activating the Images on Website disappearsHi Diana,
Thanks a lot. I have only one custom code. I have tried another custom css and js plugin and have no Problem with images. Very strange for me.Forum: Themes and Templates
In reply to: [Hitchcock] How modify the search button ?Hi,
I can modify the search field. I have changed the search button property in style.css in child-theme.
I have written the class header-search and .search-button separately. In the stylesheet it is Like .header-search .search-button.
.search-button{here background:url(path of the magnifying glass) backgroundcolor of the navigation no-repeat center !important;
e.g..search-button{background:url(path of the magnifying glass) #ffffff no-repeat center !important;}
header-search class- here background: background color of the navigation;
I hope thats help.
Forum: Themes and Templates
In reply to: [Hitchcock] How modify the search button ?Hi,
I have the same Problem. I want to remove the black squares and put only white magnifying glass. I think the magnifying glass will be shown as background-image.
I am still trying.
ThanksI have Solved it.
I have to remove the css class in my style.css
.mce-statusbar {display: none !important;}/
In my other Post I donot want to display the p, div or other html element and somebody give me the solution to block the mce-statusbar but It will cause the above mentioned problem.
ThanksForum: Themes and Templates
In reply to: [Hitchcock] Problem with WP User Frontend Form and HitchcockSolved it.
I have to remove the css class in my style.css.mce-statusbar {display: none !important;}
Forum: Fixing WordPress
In reply to: Changing Url in Press This Button codeThanks a lot Poonam.
Forum: Plugins
In reply to: [Contact Form 7] Multilanguage contact form with different contact addressesThanks a lot