Will Schmierer
Forum Replies Created
-
Hey Martin,
I’m not able to duplicate any of the image jumping you mentioned, but for the sale icon, I would add a z-index to your styles so it shows on top of the image as I believe this is what you are after. Notice the last line here of the code. Hope this helps some.
.woocommerce span.onsale, .woocommerce-page span.onsale, .woocommerce ul.products li.product .onsale, .woocommerce-page ul.products li.product .onsale { box-shadow: none; text-transform: Uppercase; text-shadow: none; border-radius: 100%; background-color: #ed1e24; font-size: .675em; right: 0; left: auto; top: 0; letter-spacing: .1em; line-height: 3.4em; min-height: 3.4em; min-width: 3.4em; padding: .44em; color: #fff; z-index: 3; }Forum: Fixing WordPress
In reply to: Search Button Blog PageHere’s a good example of adding an icon to your search box. Just use your icon in place of the one in this example.
https://codepen.io/maccgizzle/pen/luFmf
Currently the search box is set to display centered, but if you add something like this to this line of your css if can be adjusted to the left better.
Current Code on line 1910ish of stylesheet:
.wide .widget.woocommerce.widget_product_search, .wide .widget.widget_search { padding: 20px 0; }Adjust it to:
.wide .widget.woocommerce.widget_product_search, .wide .widget.widget_search { margin: 0 0 0 30px; padding: 20px 0; }the 30px can be adjsuted to however you’d it to look and be positioned, that’s just an example. Hope this helps some.
Forum: Fixing WordPress
In reply to: Header jumps a few pixels during loading of pageThis is actually happening in the demo at least in Chrome for mac as well. I can’t tell exactly, but it has to do with the JS adding the background position to the header from what I can tell causing the shift. It is less noticeable on the demo site, but definitely happening there as well. Maybe take a look at the JS and see if you can adjust that or possibly remove that portion of it to see if it resolves your issue. Make sure to back up your site and test before digging into the issue. Hope this helps some.
Forum: Fixing WordPress
In reply to: How to do a transition effectI dont have a specific example of how to create that effect, but I suspect you could probably find something similar here and work it into your theme? Hope that helps some.
http://codepen.io/tag/transitions/Forum: Fixing WordPress
In reply to: Make a Page Like weebly.com/pricingDepending on your preference, you could either build these yourself as part of your theme, maybe from a good example on codepen.io. Alternatively there looks like some pretty well rated plugins as well. I’ve not personally used this one, but looks pretty good and might do what you’re after?
https://wordpress.org/plugins/dk-pricr-responsive-pricing-table/
As to the last part for payment it’s again just personal preference. If you have lots of packages WooCommerce might be best and you can use paypal for checkout there as well. Hope this helps some.
Forum: Fixing WordPress
In reply to: How to renew the permlink with Post name automatically?Not sure if it would help but have you also tried re-saving the permalinks as well. Also double check there’s not a duplicate post in the trash as well, that can cause issues. Also if you’re using something like Yoast SEO plugin, if the changes to the permalink are small, it may strip out certain words and keep the same title (possibly).
Forum: Fixing WordPress
In reply to: Image Slicing and ToolTipsI’m not sure if there is one the can get this specific per image of a product, but with quite a bit of work you could probably implement some css tool tips, perhaps using something from codepen.io or there looks like some premium plugin available (although I’ve not personally used them) if you’re setting up an e-commerce site with WooCommerce. Hope that helps some.
Forum: Fixing WordPress
In reply to: Scrolling GalleryI haven’t used this particular plugin before, but have used slick slider the standalone version and I think this might be able to be configured to create something pretty close to your example. Might be worth checking out and testing to see if it works for your desired look. Hope this helps some!
https://wordpress.org/plugins/wp-slick-slider-and-image-carousel/Forum: Fixing WordPress
In reply to: seeking a marketplace pluginDepending on your exact needs, one of these solutions in this article might be a good starting place to get setup based on your original description above. These looks like pretty good options with reputable and established plugins to get your started. Hope this helps some.
https://www.elegantthemes.com/blog/tips-tricks/build-your-own-online-marketplace-using-wordpress
Forum: Fixing WordPress
In reply to: How to remove old Clicky code from headIs is possible that it was added directly to your header.php file inside your theme folder files rather than via a plugin? Hope that helps some.
Forum: Fixing WordPress
In reply to: hover post title over imageI think the image width needs to be set to 100%. Right now only the max-width is set, but you’d need width to be 100%. That seems to do the trick when checking in dev tools.
The showing of post title on hover is a little trickier, but this link my help provide some further explanation of how to do that. Basically you’ll want to set it up to display none and then on hover, display block(more or less that’s the basic idea). Hope this helps some!
http://stackoverflow.com/questions/7179412/css-hover-over-on-thumbnails-in-wordpressForum: Fixing WordPress
In reply to: Site not working in mobile in portrait viewYou’ll need to adjust your css here to push the text and slider further down the page on mobile. Right now it’s displaying on top of the menu, which is why you’re not able to click and expand the mobile menu. If you adjust some of the styling on the slider further it should work as expected.
Forum: Fixing WordPress
In reply to: Picture Button HelpI’ve not personally tried this plugin before, but it may do the trick for what you are after. I think you’re looking for tooltips. This plugin looks to be up to date and seems to have the ability to add images as well. Hope this helps some!
Forum: Fixing WordPress
In reply to: iFrame only works when logged into WordPressLooks like the connection between the search bar and actual retrieval of the data is broken. If you look at the search results logged out, you’ll see this in the Keywords portion of the results page, hence no results. Hope this helps some!
<?php print $_GET[Forum: Fixing WordPress
In reply to: My subpages are not workingUnless I’m not understanding, things seem to be working well from what I can tell on the site. I clicked around a few links and pages and wasn’t able to encounter any errors? If there is still an issue, you might try re-saving your permalinks. Sometimes with issues like you describe, things get hung up a bit and re-saving permalinks can flush out the issues.