Sean Mahoney
Forum Replies Created
-
Hello Animesh,
Thank you for the assistance on this matter. After you fixed the issue on your end I was able to uninstall and reinstall Jetpack and the connection is working perfectly now.
This ticket is resolved.
Thank you for your help!
Forum: Fixing WordPress
In reply to: Problem with PermalinksTry the solutions in this related thread.
https://ww.wp.xz.cn/support/topic/permalink-change-leads-to-404-error/
I think we’ve been through a couple of them, but perhaps the part related to the .conf file and restarting Apache may help
Forum: Fixing WordPress
In reply to: Problem with Permalinks.htaccess is an Apache configuration file (on your server). You can create rules to govern your site on it, and sometimes over time things can get screwy. If you change the name of it to .htaccessold or something and then create a new blank file name .htaccess it can sometimes clear up certain issues.
Forum: Fixing WordPress
In reply to: Problem with PermalinksIf you’ve tried that, or it doesn’t work, check out this link and see if resetting straight from the database works
https://help.hostica.net/en-us/article/571-reset-wordpress-permalinks-in-the-database
Forum: Fixing WordPress
In reply to: Problem with PermalinksHave you tried a fresh .htaccess file?
Forum: Fixing WordPress
In reply to: Problem with PermalinksFrom your dashboard navigate to Settings->Permalinks. From that screen change your selection from “Plain” to “Post Name”. That should fix you right up!
Forum: Fixing WordPress
In reply to: How to move footer widget to be lined up?Can you share the link to the page you’re having trouble with please
Forum: Fixing WordPress
In reply to: Nothing works in post.php – WordPressThose type errors are stopping the rest of your JavaScript from loading. Is this code you wrote and can edit or is it coming from a theme or plugins?
Forum: Fixing WordPress
In reply to: How to get all my images secured with ssl…Install the Really Simple SSL plugin and run it. This plugin will cruise through your site and update all the images etc. to use HTTPS. If you have urls hardcoded into your theme you may need to go into those files and do a search and replace manually.
Forum: Fixing WordPress
In reply to: Customizer Problem – Blank browser screen with small scroll windowHave you tried reinstalling your current version of WordPress?
Forum: Fixing WordPress
In reply to: WordPress Admin SlowI’ve used that Query Monitor plugin @negarehgfx recommended as well. It’s helped me identify errors caused by plugins in the past as well. Good tool for when you need some direction
Forum: Fixing WordPress
In reply to: How reduce height footerCSS is an incredibly powerful tool in web development and I agree 100% you should study it. I’ll give you a couple of tools to help get started.
https://www.w3schools.com/css/ is sort of the go to resource for CSS topics. It’s generally what I look to when I need a refreshed.
Another important thing to understand is the box model. In the case of your header and footer problem, the part I would look at is actually the padding on the footer. If you remove the padding it ends up being pretty darn close to the same height has the header. https://www.w3schools.com/css/css_boxmodel.asp
Keep in mind that the height of elements may not be explicitly determined. That’s to say you won’t always find a
element{
height: 25px;
}or anything. The height may be determined by the stuff inside the box, in this case the text. So while the elements will be closer in size, if you were to add a bunch of text or pictures to one or the other, it will grow.
I hope this gives you some information that will help you on your journey to understand this a bit better.
Forum: Fixing WordPress
In reply to: Post a blog to a page other than the main pageHello,
So do you have two different places you would like blog posts to go? Like you want certain ones to appear on the homepage and certain ones to appear on the blog page? Or do you want all of them to go to the blog page, but the homepage to show “most recent”? Or some other thing?
Forum: Fixing WordPress
In reply to: How reduce height footerIt appears that what you need is some CSS. There should be something in your dashboard under appearance–>customize that says “Additional CSS”. You can write a rule there to resize the footer to be more like the header