Will Schmierer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: View user profiles in front-endYou could create a template file and follow the information here to display some or all the information of the user profile. Hope this helps get you started.
Forum: Themes and Templates
In reply to: Problems with Preference Lite Menu on Mobile SiteLooking at the site, there is definitely a js issue causing the problem. Is this built into your theme or are you using a plugin to create the mobile menu?
Forum: Fixing WordPress
In reply to: Blog post photo not showing upIs this still an issue? Site and images look ok to me on a Mac in Safari, Chrome and Firefox? Perhaps I misunderstood or the issue has been resolved?
Forum: Fixing WordPress
In reply to: Default avatar not resizedIs it possible you just need to regenerate the thumbnails? This plugin would do the trick, however it may not be the best option if you have thousands of images uploaded to your site(not sure you do, just mentioning).
Forum: Fixing WordPress
In reply to: How to add a gif to a post without image site's logoYou could try increasing the file size limit by following this tutorial:
http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/
If you’re embedding images from another site though, you could probably adjust them with css, but really if it’s coming from another site, seems like you should keep the attribution to the original link? Just a thought, but hope this helps.
Forum: Fixing WordPress
In reply to: Too Many Redirects / Redirect Loop Error on my homepageI would first try logging into the site as you can get to that page and disabling all plugins. Then activate one at a time to see if a plugin maybe be causing the issue. You might also want to check out this tutorial to see if it can help you resolve the issue as well? Hope this helps:
http://www.wpbeginner.com/wp-tutorials/how-to-fix-error-too-many-redirects-issue-in-wordpress/
Forum: Networking WordPress
In reply to: Multisite , Remove add a new user capabilities for adminThis can certainly be done without the use of a plugin, although there are some good ones out there that would help make this slightly easier. Here are a couple of resources to help you do that manually though if you’d like.
https://codex.wordpress.org/Roles_and_Capabilities
http://www.wpbeginner.com/plugins/how-to-add-or-remove-capabilities-to-user-roles-in-wordpress/
http://www.wpbeginner.com/beginners-guide/wordpress-user-roles-and-permissions/
Forum: Fixing WordPress
In reply to: Disable comments notification for a single admin userThere should be a setting under the settings tab of the dashboard inside the discussions section where you can set/turn off notifications for the user you’re logged in as. Under discussions there’s an email me whenever: setting. Hope that helps.
Forum: Fixing WordPress
In reply to: how to get medium thumbnail from mysql databaseDepending on where you want to display the thumbnail you’ll want to follow this for retrieving a that thumbnail. Hope this helps get you started.
Not sure if you’re using the Yoast SEO plugin, but I believe there are some setting included there to set which image displays for the particular post.
Forum: Fixing WordPress
In reply to: website is not working on Ipad/IphoneDo you have a link to your site to help troubleshoot?
Forum: Fixing WordPress
In reply to: Live Preview Not LoadingI’m not entirely sure, but could be related to the theme you’re using with the customizer? You might want to check out this article to see if it may help resolve your issue when trying to customize with Live Preview:
https://tommcfarlin.com/wordpress-theme-customizer-live-preview/
Hope this helps resolve your issue.
Forum: Themes and Templates
In reply to: [Customizr] Secondary menu problemDo you have a link to your site to help troubleshoot the issue?
Forum: Themes and Templates
In reply to: [Hemingway] header image not responsive to mobileHey,
Looks like if you look at line 2232 and 2358 theres:
.header.section { padding: 30px 0; }.header.section { padding: 60px 0; }remove the 30px and 60 px so both read as:
.header.section { padding: 0; }seemed to do the trick and get the header image looking as expected. Hope that helps.
Forum: Fixing WordPress
In reply to: Padding on Side Widgets in Evolve ThemeCourtney,
You might want to check out around line 974 of your style.css file there is quite a bit of bottom margin between items where the line margin:0 0px 35px 0px; you might want to reduce that 35px value lower or all the way to zero as each widget still has some padding as well. Hope that helps.
.widget-content { position:relative; margin:0 0px 35px 0px; padding:10px 15px 21px 15px; font-size:13px; background: #F6F6F6; border: 1px solid #E0DDDD; box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9) inset; -box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9) inset; -moz-box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9) inset; -webkit-box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.9) inset; }