Nuno Sarmento
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [NS Minimal] Header is not responsive on other devicesHi @sarahdenhof
Your image looks higher than 118px, try to change it accordingly to the instructions and see how does it look. Anyway I will try to make that function bulletproof on the next update.
Best,
NunoForum: Themes and Templates
In reply to: [NS Minimal] Header is not responsive on other devicesForum: Themes and Templates
In reply to: [NS Minimal] Read More linkClosed now
Forum: Themes and Templates
In reply to: [NS Minimal] Read More linkI am closing this ticket for now but if you need any more help please let me know.
Forum: Themes and Templates
In reply to: [NS Minimal] Change font for Category page titlesI am closing this ticket for now but if you need any more help please let me know.
I am closing this ticket for now but if you need any more help please let me know.
Hi @metusalem,
This plugin was a specific build for “wp-admin” login URL/Page – any custom page such the ones you mention on message this plugin won’t be suitable. I can easily develop a new plugin for what you need if you interested please contact me on https://www.nuno-sarmento.com/contact.
I’m closing this topic now.
Thank youHi @sasikumar3g
Thank you for using my plugin.
You don’t want to redirect wp-admin to 404 otherwise how would you log in or user wp-admin backend?
What is 404 page:
“The HTTP 404, 404 Not Found, 404, Page Not Found, or Server Not Found error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the browser was able to communicate with a given server, but the server could not find what was requested.”First, you need to check if the user is logged in and if not redirect the user to a different page.
Code starting point (not tested):
add_action( 'admin_init', 'redirect_non_logged_users_to_specific_page' ); function redirect_non_logged_users_to_specific_page() { if ( !is_user_logged_in() && is_page('add page slug or ID here') && $_SERVER['PHP_SELF'] != '/wp-admin/admin-ajax.php' ) { wp_redirect( 'https://www.example.dev/page/' ); exit; } }
- This reply was modified 4 years, 10 months ago by Nuno Sarmento.
Forum: Themes and Templates
In reply to: [NS Minimal] Read More linkHi there,
Same as the request before:
Yes, it is possible you need to apply the relevant CSS to what you want. You may need to contact your web developer to do it.
Thanks
Forum: Themes and Templates
In reply to: [NS Minimal] Change font for Category page titlesHi there,
Yes, it is possible you need to apply the relevant CSS to what you want. You may need to contact your web developer to do it.
Thanks
- This reply was modified 4 years, 10 months ago by Nuno Sarmento.
Forum: Themes and Templates
In reply to: [NS Minimal] How to change font size for Site Title & MenuHi Bob,
Try the below.
Site Title:
.site-title a {
font-size: 10px !important;
}Forum: Themes and Templates
In reply to: [NS Minimal] Header is not responsive on other devicesDue to the lack of response, I will close now this topic although you can always contact me back by open a new request.
Forum: Themes and Templates
In reply to: [NS Minimal] How to change font size for Site Title & MenuHi there,
Please add the below code to your custom CSS theme function Appearance -> customize -> additional CSS
Change 10px to whatever you want.
Site Title:
.site-title { font-size: 10px !important; }
Menu Items:
#site-navigation a, #site-navigation .menu-toggle { font-size: 10px !important; }
I am closing this ticket for now but if you need any more help please let me know.
It seems that is a problem on your hosting PHP path. The plugin has more than 10.000 active installs and never had such an issue before.
Your website is full of errors if you open your browser inspector you will see them.- This reply was modified 4 years, 11 months ago by Nuno Sarmento.