paryguy
Forum Replies Created
-
Thanks Jeremy,
dogonthreelegs.com is the one in particular for me.
Holy crap I’m in the same boat and it’s driving me insane. I’m getting a ton of emails telling me a site I took down a while ago is down….wait now it’s back up (magic?)….no it’s down. I just want it to stop. Please make it stop! If they really did go away to an island to learn how to make JetPack better I hope someone brings up the notion that we should be able to disconnect sites from WordPress.com. If no one brings that up I think we’re better off they stay on that island and we get a team in there who thinks about good UX, not just shiny things and punny away messages.
Can we change the starting day of the week? Currently the calendar is starting on Monday. It’d be nice to switch it to start on Sunday.
Just an FYI: It looks like you had an option for $start_of_week but I am not seeing it in the admin area nor did I have time tonight to go hunting for it in the files so I simply changed one line:
class-gce-display.php
# 190: $start_of_week = 0;I know it’ll break on update but like I said, I needed a quick fix 🙂
Forum: Plugins
In reply to: [WooCommerce] Conditional add to cart for productI’m still working on it. It appears that there’s no built in functionality for something like this. It’d be nice if you could set ‘requirements’ for products or conditions. Like product A needs B in the cart and can’t be sold with product C.
Forum: Plugins
In reply to: [WooCommerce] Variable products not workingWhen you add your variations, are you making sure the drop-down list next to the variation ID is selected to the right attribute? This was the case for me when setting up variable products.
You need to add your attributes, then save the product. After the update, add the variations and make sure that on the title bar of the variation you select which attribute it should be assigned to.
Forum: Fixing WordPress
In reply to: HTML entities in templatesMichael that was it! Just removed the h1 reference in the js file and BAM! there it is, that lovely little symbol. Thanks again to everyone who posted.
Forum: Fixing WordPress
In reply to: HTML entities in templatesThanks Michael, I didn’t even realize that’s what was happening. I’m not even sure where it’s calling that from, looks like I’ll have some more digging.
Forum: Fixing WordPress
In reply to: HTML entities in templatesJust tested it again, this time by concatenating the degree symbol onto the temp integer in the php code, still nothing. I can’t get any HTML entity to show up.
Forum: Fixing WordPress
In reply to: HTML entities in templatesWPyogi,
I tried using both the ASCII character and the HTML entity…or hex value whatever it’s called. I used both and still nothing. Same for an emdash, they just won’t show up.
Forum: Fixing WordPress
In reply to: HTML entities in templatesThanks for quick response. I am seeing Forced Stop, you can see for yourself here:
This is the code I’m trying to use:
<h1><?= $temp_f ?> ° and <?= $cond?> -- <?= $langStr ?></h1>The degree sign is just not showing up, nothing is showing up where that should be. Everything else works great.