Scott DeLuzio
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Email DesignThe message field in the plugin settings is able to accept HTML markup, so if you’re comfortable with HTML you can add your styling to the email there. A few examples are given below the message field, but it is not limited to those examples.
However, a specific email template file is not available at this time.Are there any circumstances when the subscriber could be added to more than one list at the same time?
Thanks for reporting this. I haven’t been able to reproduce the error, but the error notice pointed me to where the error could have originated from. There were a few lines that might have produced an error like this, so I’ve released an update that will hopefully correct the problem.
Could you please try installing the plugin again? If you still are getting the error, please provide me with the error message as you did before. Also, if you could provide some info about your server, it would be helpful. You can use a plugin like Debug Info to provide this. You can send it through our support forum here: https://conditionalcheckoutfields.com/contact/ so that you don’t have to post it in a public forum.Forum: Plugins
In reply to: [Conditional WooCommerce Checkout Field] Feature – Extra product?I’m not sure where you’ll be displaying the HTML or shortcodes. The field will still display, but I suppose you could add HTML to the field title or label depending on the HTML that you’re planning to add.
Forum: Plugins
In reply to: [Conditional WooCommerce Checkout Field] Class not being added to the fieldHi,
The class gets added to a<p>
tag that wraps around the field. It can be used for styling the field like this:p.this-is-my-class textarea#conditional_field { /* Your styles go here */ }
The conditional field also has an ID that can be targeted
#conditional_field
, which may help.The text area fields rows and columns (height and width) are set by WooCommerce as this plugin uses their functions to create the field. With that said, it is possible to adjust the height using CSS.
Forum: Plugins
In reply to: [Conditional WooCommerce Checkout Field] Feature – Extra product?Sorry, this plugin provides the option to collect information from customers at checkout based on the product that is in their cart. It doesn’t provide the ability to change the cart’s contents (i.e. adding products).
Forum: Plugins
In reply to: [Public Post Preview] Not showing updatesFollow up: this behavior is only happening when logged out and using an incognito window. When I’m logged in, I get the updated version. This may be a local caching issue and not actually an issue with the plugin.
Forum: Reviews
In reply to: [Simple Full Screen Background Image] Great plugin, exceptional supportThank you for the wonderful review!!
Forum: Plugins
In reply to: [WordPress CRM Plugin - WP-CRM System] List of birthdays on front-endBy default this plugin does not display any information on the front end. With a little bit of custom coding though, any information that is stored in the CRM can be displayed wherever you want it to be displayed.
Forum: Plugins
In reply to: [Genesis Featured Video] Video in custom post typeThe plugin only supports regular posts in the widget at this time.
I will update this thread if we add custom post types in the future.
You are also welcome to submit pull requests to the plugin for any features or improvements you wish to see.Sorry to hear that you had trouble with the plugin. It was tested quite thoroughly with MailChimp and I can assure you that it does work as intended. Could you specify what didn’t work for you? Did the discount code not get generated? Did the email with the discount not get sent to the customer?
Also, please check that you followed all of the setup steps found here. If it still does not work for you after following those steps, please open a support ticket with the details of what you’ve tried and what went wrong and I’d be happy to help resolve the issue for you.Forum: Plugins
In reply to: [Genesis Featured Video] Keep the img on blog and video on single postHi @panmaster
While I haven’t tested this code, this should work for you. Copy and paste it into your functions.php file.
Of course, your theme might use different action hooks for certain portions of this, so this may not work for you. If it doesn’t, please let me know which theme you’re using and I’ll try to get a better solution for you.add_action( 'pre_get_posts', 'add_video_to_posts', 1 ); function add_video_to_posts() { remove_action( 'pre_get_posts', 'gfv_hide_video_on_post', 10 ) ; } add_action( 'gfv_add_post_image', 'sd_add_post_image' ); function sd_add_post_image(){ add_action( 'genesis_entry_header', 'genesis_do_post_image', 1 ); }
- This reply was modified 6 years, 11 months ago by Scott DeLuzio.
Forum: Plugins
In reply to: [Subscriber Discounts for WooCommerce] Exclude sale itemsThanks for pointing this out. It looks like there was a typo in there. I’ve fixed that and pushed out an update. Please let me know if you have any other issues.
As is, the plugin does not work with SendGrid. But the plugin can be extended to add any number of services to it. Currently the only two that are supported in the plugin are MailChimp and ActiveCampaign.
If you are coding a solution, you can follow the example of how either MailChimp or ActiveCampaign extends the default SDWOO_Create_Discount class.
Forum: Reviews
In reply to: [Conditional WooCommerce Checkout Field] Simple and just what I neededThanks for the great review!