keri23
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Homepage content width not same after update?Hi aweyon,
The 2.2 update did this- it totally messed up my child theme, so I understand what you are going through. I got the homepage back to previous width by adding the following to my child theme CSS (if you aren’t using a child theme, then put it where you have your custom CSS):
.page-template-template-homepage .entry-content,.page-template-template-homepage .entry-header { max-width: 100%; text-align: left; } .col-full { padding: 0 0; }
I hope that helps you,
KeriForum: Fixing WordPress
In reply to: GTMetrix issuesTry putting this in your .htaccess file- it should increase your score for browser caching
## EXPIRES CACHING ## <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 1 month" </IfModule> ## EXPIRES CACHING ##
Forum: Plugins
In reply to: [Custom Menu Wizard Widget] Conditional Menu DisplayHi,
This still gives me the same issue with the menu being correct on the subpages, but not being able to display the children on the main pages.
I really appreciate all of your help and quick responses.
I think I’ll just the regular Custom Menu plugin for this.
Forum: Plugins
In reply to: [Custom Menu Wizard Widget] Conditional Menu DisplayUsing that I got a shortcode output that looks like this:
[cmwizard menu=329 branch=current start_at=”-1″ depth=2/]This is giving me the menu I want on the subpages (showing only their siblings and parent). But on the main pages, the only thing in the menu is the current page. What do I need to add to also display the children menu items (but nothing else) on those main pages?
Thank you very much for your help.
Forum: Fixing WordPress
In reply to: Need to hide a POST but make it accessable by a link.I agree with the suggestion above of using post type switcher, but if that is not possible because of styling or another issue, is it possible for you to put this post in its own category, and then exclude it that way? You can do this either by editing your functions.php file or using a plugin if you aren’t comfortable with that. This is a good tutorial that will help you if you’d like to try it this way.
Forum: Fixing WordPress
In reply to: Mobile Text Color of the Navigation MenuThis is the location of the file:
https://www.salvagechicks.com/wp-content/themes/swell-lite/css/style-mobile.css
Like zota mentioned above, editing this file directly will cause changes to be lost if you update the theme. If your theme has an option for custom CSS in the appearance menu or theme options, that would override the stylesheet.
Forum: Fixing WordPress
In reply to: Mobile Text Color of the Navigation MenuHi,
The styling for that color in the mobile menu is coming from this css:
.mobile-menu a { display: block; color: rgba(0, 0, 0, 0.4) ! important; font-size: 1.2em; text-decoration: none; text-transform: uppercase; padding: 6px 0px; border-top: 1px solid rgba(0, 0, 0, 0.12); }
in the style-mobile.css file, around line 175. If your theme offers a place to add custom css, try adding this:
.mobile-menu a { color: #ffffff; }
Otherwise, you can edit the style sheet mentioned above by replacing the color: rgba(0, 0, 0, 0.4) ! important; with color: #ffffff;
and that should work.
Forum: Fixing WordPress
In reply to: titleYou’re welcome, glad you got fixed ??
Forum: Fixing WordPress
In reply to: titleIf you go to the General Settings page under the all-in-one menu in the wp-admin, what do you have for ‘Home Title’ under the homepage settings?
Also, in that same section for the question ‘Use Static Front Page Instead’ what do you have checked?
Forum: Fixing WordPress
In reply to: titleHi Ajarn,
When you say ‘on top of the browser’, I assume you mean a title tag, right?
One simple way to do this would be to use an SEO plugin. I personally like all-in-one, but many others like Yoast. This will override the page title in wordpress for SEO purposes, and the SEO title will show as the title tag in the browser tab (where it just says ‘Home’ now on your site.
Is that what you are trying to achieve?
Forum: Fixing WordPress
In reply to: Unauthorized login attemptsHi sXeCore,
You’re right, blocking IPs isn’t the best way to resolve this type of issue. You might try the plugin Limit Login Attempts, which is old, but still works with new WP versions, and is really light.
If you have cPanel hosting, you can also password protect the entire wp-admin folder (just make sure you don’t have any plugins or anything calling anything from it).
You can also hide your login page, or only allow certain IPs, but the two methods above are quicker and (in my opinion, anyway) cause less issues for real users of the site.
Keri