Will Schmierer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Choosing an email subscriberI’ve not personally used this plugin before, however seems to have a pretty good rating and looks like it should be abel to pretty easily handle the features you’re after for your site? Hope this works for you!
Forum: Fixing WordPress
In reply to: Display one category from wordpress on homepage index?Hey Diana,
I believe this is a solution that would help with your desire to show only a single category on your main post page. Hope this helps!
Forum: Fixing WordPress
In reply to: linking specific part of a page to menu itemI think if I’m understanding your request, you want to create hashlinks on a page so that when you click a menu item it scrolls down to that part of a page? If that’s what you’re after I’d check out this tutorial for how to easily add that functionality into your menu/site. Hope this helps!
Forum: Fixing WordPress
In reply to: Featured image size and locationDo you have a link to your site. It would be easier to help troubleshoot this issue specifically on your site as the demo of the theme in the repository doesn’t show any featured images currently? Thanks.
Forum: Fixing WordPress
In reply to: Why does comment function not working in my site?It looks like there is a javascript error related to comments when checking in Chrome dev tools console. I would try and disable all plugins to see if comments then work. If they do, try reactivating all plugins one by one to see if one of those may be causing a conflict/causing an issue with comment functionality. Hope this helps!
Forum: Fixing WordPress
In reply to: Possible to change Tags separator from comma to hashtag?You might try taking a look at this and adjusting where the tags are currently being called in your theme files. The default is a comma, but you could adjust that as demonstrated in this link. Hope this helps!
Forum: Themes and Templates
In reply to: [Education Hub] Logo resize on mobile viewMight want to also add this to center the logo:
.custom-logo-link img { display: block; margin: 0 auto; min-height: 295px; min-width: 125px; }Forum: Fixing WordPress
In reply to: Text formatting tools disappearedLooks like it might be an issue with a plugin potentially causing an issue here. Have you tried disabling all plugins and seeing if the issue persists? If it’s back to normal after deactivating all plugins, reactivate one at a time to see which one may be causing you trouble. Hope this helps resolve your issue.
Forum: Fixing WordPress
In reply to: responsive Logo(Header)Were you able to resolve this? Looks like it’s centered and responsive to me or were you looking to adjust this further in some way?
Forum: Fixing WordPress
In reply to: How to Fix Header Logo in Mobile SiteGil,
Even though you’re using an image rather than actual font in your header, I think this bit of code is causing the large space.
@media (max-width: 767px) h1 { font-size: 122px; }If you reduce that number to even half, it remove a lot of that extra white space. It can be changed around line 2310 of your style.css file. The logo itself looks like its set to fit the width of the screen with proportional height.
Forum: Fixing WordPress
In reply to: shop compatible with sugar and spiceIs it possible that you need to add theme support to your particular theme in order to use WooCommerce?
https://docs.woothemes.com/document/declare-woocommerce-support-in-third-party-theme/
Might be worth a shot to look into that first? Hope that helps.
Forum: Fixing WordPress
In reply to: Posts & Pages Redirect on updateNot sure I’m following 100% here, but have you tried going to your permalinks and re saving them to see if that flushes out some of the issues you’re experiencing. Hope that helps some.
Forum: Fixing WordPress
In reply to: Multiple pages for one product pageIs it possible that pagination is not enabled on your theme or the css styles are not in place to show up? Do you have a link to your site?
Forum: Fixing WordPress
In reply to: Libertto theme Header changerI’m not familiar with this particular theme, but if you have a link to your site with the title you want to center it should be a relatively straight forward css tweak.
Forum: Fixing WordPress
In reply to: share this is not working my wordpress siteLooks like there’s some JavaScript errors in the console. I wonder if the ShareThis code added may not be correct? It seems like the main share button works when you hover, it’s just the 4 additional buttons that dont seem to work. I’d maybe double check the code that you’ve added to see if that might be part of the issue. Might be worth trying the official ShareThis plugin as well(make sure to deactivate the current one before testing), just to see if the issue is the same. Hope this helps some.