Will Schmierer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Make wp-admin ssl friendlyI’m not 100% about the warnings but have you checked this page out to see if there is additional steps here that might help with that? Hope that helps some!
Forum: Fixing WordPress
In reply to: Everything is super slowSite seems ok for me using google Chrome, however there’s a lot of great ways to improve overall site speed. You could try running your site through this tool and making a number of the recommended adjustments and perhaps using some caching plugins as well. Hope this helps get you started.
Forum: Fixing WordPress
In reply to: fixing mobile margins using genesisOn line 2086 of your css file, I would change this:
.site-inner, .site-footer { padding-left: 5%; padding-right: 5%; }to this
.site-inner, .site-footer { padding-left: 0; padding-right: 0; }Removing that padding will allow the posts to fill the same amount of space as the top bars. Hope that helps.
Forum: Fixing WordPress
In reply to: Changed domain url and moved directory. Now website is zoomed in.That does sound very strange, do you have a link to your site where this is happening?
Forum: Fixing WordPress
In reply to: White Theme featured image not showingDo you have a link to where this is happening?
Forum: Fixing WordPress
In reply to: Remove Posted In Label Under Featured Image of Blog PostsYou could remove that particular section from the single post area. Alternatively, you could hide that portion via css. In your css file on line 213, you could change this
.fancy_meta{z-index:100;display: block;position:absolute;bottom:-25px;max-width:90%;}to
.fancy_meta{z-index:100;display: none;position:absolute;bottom:-25px;max-width:90%;}Display none will hide that information from displaying. Hope that helps.
Forum: Fixing WordPress
In reply to: How to create drop down menu on left sidebarLooks like you were able to figure this out at least on the page that you linked to?
Forum: Fixing WordPress
In reply to: Repairing text after change of character encodingNot entirely sure, but hopefully this link might be able to provided some more insight. Hope this helps some.
https://codex.wordpress.org/Converting_Database_Character_SetsForum: Installing WordPress
In reply to: Istallation stalls on Step 2It’s been a long time since I used wamp for a local wordpress setup, but you might want to check out this article to see if there’s a conflict or a step you might have missed? Hope this helps.
http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-on-your-windows-computer-using-wamp/
Forum: Fixing WordPress
In reply to: Upload Size is lessYou could try contacting your hosting provider. They might be able to help, depending on your particular hosting company. There is also this thread that might provide some more insight as well. Hope this helps some.
https://wordpress.org/support/topic/increasing-import-size-limit-past-2mb?replies=18
Forum: Fixing WordPress
In reply to: Notice: Undefined index please help!Are you still experiencing this error? I’m not currently seeing it and the site loads for me?
Forum: Fixing WordPress
In reply to: 404 Error File Not FoundSeems like the issue may have been resolved? May just need to re-save your permalinks or double check the WooCommerce settings?
Forum: Fixing WordPress
In reply to: How to move the logo on the header to the leftAm I misunderstanding what you’re trying to do or did you figure out how to adjust the logo as it appears to be to the left now in both the header and footer?
Forum: Fixing WordPress
In reply to: How to change direction of perma linkSo I believe this would require writing some specific rewrite rules to get these changes in place. I would look through these links to see if they can help you get the desired links in place. Make sure to backup your site first. Hope this helps get you started.
http://www.paulund.co.uk/rewrite-urls-wordpressForum: Fixing WordPress
In reply to: Posts are not linkingIt looks like there is no permalink being set to the read more button itself and shows as empty when I inspect the button in the browser. SInce it’s not finding the post url(permalink of the posts) the browser defaults to the current page you’re on.
I would take a look at this and see if something got removed from your theme files. Hope this helps track down the issue a bit for you.