Will Schmierer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [AccessPress Store] products per row to 4Looks like that may be a little off, did you try checking this out and obviously changing the numbers in the examples here to 4 instead.
https://docs.woothemes.com/document/change-number-of-products-per-row/
Forum: Fixing WordPress
In reply to: Google search for my website title doesn't yield any results.mnbillups,
How long has the site been live? There are lots of factors and I’ve seen anywhere from a few days to a few months before Google starts to heavily index sites. Are you using an SEO plugin like https://wordpress.org/plugins/wordpress-seo/?
Additionally you could try this https://www.google.com/webmasters/tools/submit-url?pli=1 and submit your site to Google directly to help speed up the process of indexing. Hope these suggestions help.
Forum: Fixing WordPress
In reply to: How to change menu text colorDo you have a link to your site and the text area where you want to change the color?
Forum: Fixing WordPress
In reply to: Change Wording "Leave a Reply" to "Leave a Comment"pblosser,
This is a pretty good guide on how to go about that from a reputable source for sure:
http://www.bourncreative.com/customizing-genesis-2-0-html5-comment-form/
Hope that’s helpful.
Forum: Fixing WordPress
In reply to: Transforming a page to a widget?mckaymental,
I’m not sure I follow 100% so before suggesting something that might not be needed, I wanted ask first. You want to create an area similar to say the footer or header of your website, that’s always going to be the same unless you edit it.
I’m guessing you want to do something more complex than just adding text to a text widget and displaying it on the sidebar of each page. Maybe if you can provide a link to something you’re after along with a link to your site it would be easier to help figure out the best way to go about this. Thanks
Forum: Fixing WordPress
In reply to: Advanced WordPress theme BuildingThere’s a lot of good resources out there, have you check out Treehouse, some pretty solid tutorials there and broken into different topics, worth a look in my opinion if you haven’t checked it out.
Forum: Fixing WordPress
In reply to: Do I need to Redirect old to new pages?301 redirects would probably we worth looking into at least. I would check this out if you need some help with that, hope it’s helpful.
http://www.wpbeginner.com/beginners-guide/beginners-guide-to-creating-redirects-in-wordpress/
Forum: Themes and Templates
In reply to: [Hueman] Change background color of a specific pageChandra,
There are a few ways to do this, however the easiest may be to check out this plugin. I’ve not personally used it before but looks to have a pretty solid rating and looking at the demo for the plugin has a few extra options in addition to just changing background colors.
Plugin: https://wordpress.org/plugins/fully-background-manager/
Plugin demo in case you miss it in the full description:
http://115.112.143.170/CMS/wp/fully-background-manager/Hope that helps get you started.
Forum: Themes and Templates
In reply to: [Theme Virtue] author does not appearhey meerschweinmann,
are you able to edit any of your stylesheets or have you made an edits to the site style sheets? It looks like there is a style in place to hide the author name currently which is:
.postauthortop { display: none; }That line needs to change to in order to appear again. Hope this helps
.postauthortop { display: inline-block; }Forum: Themes and Templates
In reply to: [Fashionistas] Centre Logo at Head of Blogsure thing, if the ad is on every page of the site, you can adjust this around line 571ish of style.css
.site-main { padding: 40px 0; }If you only want to adjust the top, do something like this:
.site-main { padding: 20px 0 40px; }This will close the gap at the top of the page but keep the bottom as it currently is padded.
Hope that helps.Forum: Themes and Templates
In reply to: [Pure & Simple] Mobile sub menu issueDo you have a link to your site, would be easier to troubleshoot that way. Thanks.
Forum: Themes and Templates
In reply to: [Rundown] articles comments: address field wrongly pre filledI’m not seeing this happen. Is it possible you’re logged into the site and it’s saving your previous info maybe?
I didn’t see this happening on Chrome for Mac
Forum: Themes and Templates
In reply to: [Inkness] resize main_logoGodmog,
Do you have a link to your site? Would be easier to troubleshoot that way. Thanks.
Forum: Themes and Templates
In reply to: Adjust my theme so featured images are flatDo you want to get rid of just the icon or the entire overlay that happens when you hover over the images on the page?
If you want to remove the entire overlay, you can go to line 1055ish of your style.css:
and change this line:
.overlay { display: block; position: absolute; z-index: 20; background: rgba(0, 0, 0, 0.6); overflow: hidden; transition: all 0.5s; }to this:
.overlay { display: none; position: absolute; z-index: 20; background: rgba(0, 0, 0, 0.6); overflow: hidden; transition: all 0.5s; }Forum: Themes and Templates
In reply to: [Circumference Lite] Make homepage content full screenHey Sarah,
Do you have a link to the site where you’re trying to do this?