Josh
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Fatal Error when activating WooCommerceYou can close the thread. This solved the issue: https://github.com/woocommerce/woocommerce/issues/25895#issuecomment-648826229
Here you go. Thanks.
Bryle,
I don’t think that’s correct. I had just manually started that backup process so that I could do some work on the site. And even though the site is scheduled to backup files and db weekly, the “next backup” still seems to be scheduled in the far past: https://snipboard.io/Is9OaM.jpg
In fact, all of the current backups are manual and the scheduled backups don’t seem to be happening at all.
Josh
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] Tax Reports by CountyI’m happy to post on the idea board, but this seems more like a bug than feature-request, no?
Forum: Plugins
In reply to: [Gmail SMTP] “From Email Address” isn’t usedSame question. Why have the field if it doesn’t work?
This was the reason for our request too. The client found the custom amount field confusing because of its relation to the custom amount button.
Thanks!
Thanks! If we get the premium version, how would we edit the form to search only within a custom taxonomy?
Forum: Plugins
In reply to: [WooCommerce] Load a custom template for single productsThat did it. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Load a custom template for single productsSorry about the bad formatting. Here’s the code again, hopefully prettier.
add_filter( 'template_include', 'so_25789472_template_include' ); function so_25789472_template_include( $template ) { if ( is_singular('product') && (has_term( 8, 'product_cat')) ) { $template = get_stylesheet_directory() . '/woocommerce/single-product-issue.php'; } return $template; }
That’s not going to work for us because we need the extra text inserted after the button wrapper.
We’ll probably revert to the radio buttons instead. For those, is there a way to allow html within the donation level fields?
Basically, I need to be able to add spans and classes so that I can style the text alongside the radio buttons, but right now you seem to be stripping out all the html when the form is saved. Is it possible to NOT do that? I understand why you’d want to do that usually, but in this case I need the html to not get removed.
Thanks again. I love this plugin.
Hey Matt,
This works almost perfectly. Is there a way to change snippet so it adds the custom text after the closing </button> tag. Right now it looks like this:
` <li>
<button type=”button” data-price-id=”2″ class=” give-donation-level-btn give-btn give-btn-level-2 ” value=”40.00″>Small<br><span class=”available”>Available through 4/30</span></button> **
</li>`I’d love to be able to insert the text where the two asterisks are above.
PS One more question. Is it possible to allow HTML tags within the label text? By default, it looks like all that is removed when I save the form.
Thanks. I’ll see how far I can get with this next week.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Import CSV FileThanks! That’s perfect!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] jQuery Console ErrorI can move it to the footer without a plugin. ?? I mean is there a way to get rid of the error with both scripts in the footer.