Scott DeLuzio
Forum Replies Created
-
Hi @keleigh824,
Thanks for your help through the helpdesk. Your answer resolved the issue for me.
For anyone else who comes across this thread having the same problem, here is the response I received from Castos support:
Typically when a duplicate podcast gets created on the Castos side, it means that the episode in WordPress is being assigned to a podcast that has a different “series” ID than what Castos has for the existing podcast in the dashboard so Castos thinks it’s a new podcast and creates one with that new series ID.
I see that your SSP install has the series ID of 5 for the podcast but the podcast on Castos with the RSS feed [feed redacted] has a series id of 0. I’ve updated the series ID that we have for you to 5, so now future episodes will go to the existing podcast here at Castos and not create a new one
Thanks again for the support. Hope this helps anyone else having a similar problem in the future.
Yes, it appears to be working as expected now. Thanks for the quick fix!
The 1.1.3 update appears to have fixed this issue. I’ll let you know if anything changes, but so far so good. Thanks for the response!
Hello,
You should be able to access the downloads by visiting the link shown on the purchase confirmation page, or in your purchase history in your account. If you are logged into your account, please visit https://amplifyplugins.com/woocommerce-bundle-downloads/ to access your downloads.Hi, @barnom Yes, that is correct. The plugin only looks for products that are in the cart. It does not look for products being excluded from the cart. This is true for both this version and the pro version of the plugin.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] How to receive the coupon instantly ?The emails are sent immediately after the coupon is generated on your site. The only way there would be a delay is if your email provider did not send the webhook immediately after the subscriber was added to your list.
Additionally, some email hosts (Gmail, etc.) can apply spam checks which may delay the receipt of the email. Be sure your website is using a properly configured tool like Mailgun to ensure that your emails are delivered in a timely manner.
Forum: Reviews
In reply to: [Subscriber Discounts for WooCommerce] Works greatThanks for the great review!
Hi @yellowcreatives
This plugin doesn’t actually subscribe anyone to your list. It just sends a discount code after they’ve subscribed. So if there is an error with the subscription, it likely has something to do with how you’re trying to subscribe them to your list. Try checking whatever form plugin you are using to see if the connection to Mailchimp is configured correctly. It appears as if the form at the bottom of your page has the classet_pb_newsletter_form
, which I believe is from Divi’s Email Optin Module.If you are using Divi’s Email Optin Module, here are some configuration steps to help get that connection working: https://www.elegantthemes.com/documentation/divi/newsletter/
Forum: Plugins
In reply to: [Shortcode Lister] content eggSome Content Egg shortcodes do get added to the list. However, it appears that they do not register all of their shortcodes the way we need them to be registered to have them displayed in Shortcode Lister.
Do you have specific shortcodes you’re trying to use from Content Egg that aren’t showing up?
Hi @egocefalo
This should fix that problem for you:
/* This filter tells the plugin FREE SAMPLES you want to replace PRODUCT_TYPE and SAMPLE_PRICE with something else. */ add_filter( 'wfps_custom_order_meta', __return_true() ); /** * This action will actually output whatever you want in place of the * existing PRODUCT_TYPE and SAMPLE_PRICE lines. * In the example below, I've changed the following: * PRODUCT_TYPE -> Product type * SAMPLE_PRICE -> Sample price * To add your own custom information enter the following: * wc_add_order_item_meta( $itemID, 'Heading text', 'Value text shown after the colon' ); */ add_action( 'wfps_custom_order_meta_action', 'fps_custom_meta_action', 10, 2 ); function fps_custom_meta_action( $itemID, $values ) { if ( isset( $values['free_sample'] ) ) { $sample = __( 'Sample', 'woo-free-product-sample' ); wc_add_order_item_meta( $itemID, 'Product Type', $sample ); wc_add_order_item_meta( $itemID, 'Sample Price', (float)$values["sample_price"] ); } }
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast Player Not ShowingGreat, thanks for that update. It seems to be fixed on my end now. I checked in several browsers and everything seems to be working.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast Player Not ShowingHi @keleigh824
I was using 2.9.6 before reverting back to 2.9.5.Media player locations: Full content
Media player position: Above content
Media player visibility: Everybody
Enable Player metadata: checked
Show Subscribe URLs: checked
Media player style: HTML5
Player mode: Dark Mode
All other options are checkedForum: Plugins
In reply to: [Tabbed Account Area for Easy Digital Downloads] Does not work, PHP ErrorsCan you share the shortcode you are using?
Forum: Plugins
In reply to: [Tabbed Account Area for Easy Digital Downloads] Getting errorCould you share the shortcode you are using?
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Sync older order data to Mailchimp@ryanhungate That might have been the problem. There were a lot of orders waiting to be completed that I noticed weren’t syncing. They’ve since been completed and I’m now noticing that the order data has synced.
Thanks for your help with this.