Will Schmierer
Forum Replies Created
-
I’m not sure if you’re currently using the new or old images, but looking quickly I see the images in Chrome Device Inspector and on an actual phone? They take a second to load, but didn’t notice anything specific breaking or pages not loading, is this still and issue?
Forum: Fixing WordPress
In reply to: Main menu is not showing on home pageIt looks as those in you’re theme styles, the main navigation is set to display none on the homepage, which is why it is hidden and no longer visible. I would change that to display block so it will show again at the top on top of the image(if that’s the look you’re after). It’s being hidden in theme.css around line 1984ish looking in Chrome Dev Tools. Hope that helps.
Forum: Fixing WordPress
In reply to: Black fields on portfolio pagesDo you have a link to the site where this is happening to help troubleshoot the issue better?
Forum: Fixing WordPress
In reply to: The bottom borders in my tablesCurrently in your css file. The bottom border is set to a shade of gray. If you adjust this to #000000, it should match the rest of the table. Hope that helps.
tbody { border-bottom: 1px solid #ddd; }to
tbody { border-bottom: 1px solid #000000; }Forum: Fixing WordPress
In reply to: Extra column in my table?Seems like there are some conflicts between inline styling of the widths of the columns and perhaps the shortcodes to set table and column widths are not behaving as expected here just quickly looking in dev tools. Right now looks like each column in this table is set to width: 127px. I’d try adjusting those to more accurately reflect the desired width? Hope that helps some.
Forum: Fixing WordPress
In reply to: Google no longer indexing site?Seems like Google is indexing your site after a quick search. Is it new content that isn’t being indexed? If you are still having issues, might be worth looking into your robots.txt file or reviewing some of these items to see if there’s a conflict or an issue/setting that may have gotten changed? Hope this helps some.
Forum: Fixing WordPress
In reply to: Featured image to rss feedNot sure if this is exactly what you are after, but may be a good starting point to check into?
Hope this helps some.Forum: Fixing WordPress
In reply to: My /blog page is showing blank?Did you also select the page “blog” as the posts page? Also try going to your permalinks and click save again, they may need to just be re-saved.
http://www.wpbeginner.com/wp-tutorials/how-to-create-a-separate-page-for-blog-posts-in-wordpress/
Forum: Everything else WordPress
In reply to: Displaying different menu translationsAre you trying to display completely different menus based on a user’s language selection or just trying to translate the same menu for multiple languages?
There are definitely some good plugins available depending on your exact needs.
Forum: Fixing WordPress
In reply to: Featured image left align of text? [twenty sixteen]If you add float: left; to the .post-thumbnail and reduce the entry-content width to something closer to 80% than it’s current 90% value, things should fall in line much closer to the image you added for your desired look for the page. Hope that helps.
Forum: Fixing WordPress
In reply to: Login Loop instant "logout"Could be a few different things happening here. I would check out these two threads and see if they might provide some insight and/or possible fixes for your issue. Hope these help sort out the issues your encountering.
https://wordpress.org/support/topic/wordpress-admin-login-page-redirect-loop?replies=9
https://wordpress.org/support/topic/wordpress-keeps-logging-me-out-4?replies=8
Forum: Fixing WordPress
In reply to: Error establishing a database connectionSight seems to be working now, at least in Chrome on Mac? Perhaps it was just an issue with your host that has been resolved?
Forum: Fixing WordPress
In reply to: Woocommerce shortcode categoriesI believe you can manually set the order of products and the order of how they display on the front end. I think this tutorial might be a good starting point.
https://woorkup.com/rearrange-products-manually-custom-order-woocommerce/
Hope this helps get you started.
Forum: Fixing WordPress
In reply to: LightboxIt’s a little tricky to tell just from looking at the front end of the website how these might be added, however looks like it might be added to the page directly possibly using shortcodes? A little more info might be helpful, but I would start with looking into that page and clicking the text editor to see if there’s some additional info there as a start(vs. looking at the visual editor side of the actual page). Hope that helps some.
Forum: Fixing WordPress
In reply to: REGISTER url opens home page in Chrome, not other browserWere you able to resolve this issue? I just checked the link and was directed to the proper page in Chrome?