Emily
Forum Replies Created
-
Hey! Thanks for your reply. I didn’t get a notification that there had been a response weirdly.
But anyhow, the address is https://www.mesacounojo.com
Seems to be still happening on my iPhone at checkout
Forum: Plugins
In reply to: [WooCommerce] woo commerce product page template customizationThe correct way would be to create a child theme, then override the templates you need there, this way nothing is lost when you update the parent theme or WooCommerce. https://docs.woocommerce.com/document/template-structure/
Forum: Plugins
In reply to: [WooCommerce] /product-category/ Appearing in Product LinkHey Darran,
This is something you can easily change in WordPress: Settings > Permalinks > Product Permalinks.
You may need to set up a few wildcard 301s to fix any strays that are visiting via your current permalink structure. If you set your site up with Google Webmaster Tools then you’ll get a report of any 404s that are coming up after that.
I’ve never had a problem switching myself, but if you’re worried about it then I’d read as many articles you can about it, it’ll either put your mind to rest or you’ll make the decision not to do it.
Usually the only major issue with switching is SEO but it sounds like you’re on top of that.
Forum: Plugins
In reply to: [WooCommerce] Sold Out badge/label/ribbon/tagIf it’s just a cosmetic thing you want and you’re comfortable with using CSS you can do something like this:
li.outofstock .price:after { content: "Sold out"; font-size: 2em; background: rgba(0, 0, 0, 0); text-transform: uppercase; text-shadow: 0px -1px 0 #000, 1px 0px 0 #000, -1px 0px 0 #000, 0px 1px 0 #000; position: absolute; width: 100%; text-align: center; display: block; color: #fff; opacity: 0.7; line-height: normal; top: 30%; -webkit-transform: rotate(15deg); -moz-transform: rotate(15deg); -ms-transform: rotate(15deg); -o-transform: rotate(15deg); }
It’ll probably need a bit of tweaking to make it work nicely in responsive themes.
Forum: Plugins
In reply to: [WooCommerce] international store adviceIf there are separate stock amounts for each of the stores then the single install won’t work, you’re better off with one of the other options.
I haven’t used WooCommerce Multistore, but on first glance it looks like the best option because it covers your stock, currency and language requirements. However, someone with experience in a multisite set-up may argue differently. There’s no doubt pros and cons for each.
I’d do a bit more research into the Multistore and Multisite plugins and see if you run into any problems, then contact the developers with some questions. Maybe see if you can get a free trial to test it out before you commit.
Forum: Plugins
In reply to: [WooCommerce] international store adviceHey Carlos,
Without a bit more detail it’s hard to narrow down. But having recently worked on a similar project (without the added complexity of different languages) the questions that first spring to my mind are:
– Will WooCommerce be managing stock?
– Are you selling from two or more different locations and if so, are the tax rates / laws different?Forum: Themes and Templates
In reply to: [Storefront] Width menuIf you want it to all be on the same line, then the easiest / quickest way of doing it would be to find the breakpoint at which it splits and add a media query in your CSS file which reduces the font size of the title to fit anything below that breakpoint. For example:
@media screen and (max-width: 499px) { .site-branding .site-title { font-size: 1.4em; margin: 6px 0 0; } }
That makes the text smaller and adds a top margin to balance out the title against the height of the menu button.
Be sure to check on the smaller screen sizes than the breakpoint you’ve set that it all looks ok.
Alternatively you could create a max-width in the same media query, this will keep the title text the same size, potentially splitting the title into two lines, but it’ll still look tidy:
@media screen and (max-width: 499px) { .site-branding .site-title { max-width: 249px; } }
They’re not perfect fixes, ideally you’d tweak the HTML too, but the problem may be fixed in a theme update.
Forum: Themes and Templates
In reply to: [Storefront] adding shopping cart menu to top barDo you want something like what’s on this site? https://www.thegreatfroglondon.com/
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] Sold out products by categoryThis is awesome – just what I needed. I can’t get it to work via shortcode alone though, even without product_cat. Is there something I’m not doing right?
Thanks!
Emily
I have ‘yes’ selected, but nothing. Only works for single-event.php – I can’t figure it out.
This is driving me mad!!
Indeed I did, yes. I also tried it in the theme root in case that made a difference, neither seemed to work.
Brilliant. What CPT names are they registered as in the system?
Thanks.
How about Locations and Bookings?
Hi, thanks for your response.
Maybe I didn’t explain properly before, but I tried using event/locations attribute and it won’t work the way I’d like. I find custom fields pretty frustrating to use – plus they’re shared among all post types which is something I don’t want.
I would simply like to know which of the elements within the plugin are custom post types or taxonomies.
Thanks.
Forum: Plugins
In reply to: [Fluid Video Embeds] Fluid Video Embeds.. plugin not workingSame here.
Any chance my own fluid CSS would be interfering with it?