Brian
Forum Replies Created
-
Forum: Plugins
In reply to: [Coupon Creator] About the dynamic code creation in the PRO versionHi,
Thanks for the interest in Coupon Creator Pro.
Here on the WordPress.org forum, I’m afraid we are unable to answer pre-sales questions per WordPress Guidelines. I would ask that you take any pre-sale questions to our website.
https://couponcreatorplugin.com/contact/
However, to get you started. There is no import feature for codes, it can only dynamically generate them. It can be set to create a unique code per person too.Thanks
Forum: Plugins
In reply to: [Event Tickets and Registration] Narrow Columns on backendHi,
On the Event Listing if you go to the Screen Options in the upper right corner and hide some of the columns it will make the Event Title field larger.
Here is a quick write up on it:
https://make.wordpress.org/support/user-manual/getting-to-know-wordpress/screen-options/
(not sure why the images are broken )
Let me know how that works out for you.
Forum: Plugins
In reply to: [The Events Calendar] recurring events in proHi,
Thanks for using the Events Calendar.
Here on the WordPress.org forum, I’m afraid we do not provide support for our premium plugins per WordPress Guidelines. I would ask that you take any support questions across to our premium support where we can provide one on one support for all your issues and questions.
https://support.theeventscalendar.com/submit_ticket
Thanks again!
Forum: Plugins
In reply to: [Coupon Creator] Downloading couponsHi,
The image coupon itself could be “save image as”, but the regular coupons and everything around the image coupon would not save.
I do not have a snippet on hand, but with a bit of custom coding it is possible to hook into the print view and display the user using WordPress coding.
Cheers
Forum: Plugins
In reply to: [Coupon Creator] Downloading couponsHi,
Thanks for using the coupon creator plugins.
There is no feature to download coupons in the free version or the premium versions.
When you are in the print view of a coupon you can print to a pdf in most browsers.
That is about as close as there is for a download feature at this point.
Let me know if you have any follow up questions.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Can’t create new events – ATTENTION!Hi,
Do you have the Classic Editor installed and set to use both the block editor or classic?
Also, check if this setting is disabled:
Events > Settings > General > “Activate Block Editor for Events”
It is disabled by default, but if activated and you are not using the block editor it might cause issues.
Let us know if that helps anything.
Thanks
Hi,
Thanks for the interest in our plugins. I can answer your questions.
It is currently, not a feature to have ticket availability per event in the series.
It still only does it by pooling the entire series.
Thanks
Brian
Forum: Plugins
In reply to: [The Events Calendar] Totally down! Can’t create or display events!Hi,
Sorry for the issues you are all having. I can help troubleshoot this with you.
Do you have the Classic Editor installed and set to use both the block editor or classic?
Also, check if this setting is disabled:
Events > Settings > General > “Activate Block Editor for Events”
It is disabled by default, but if activated and you are not using the block editor it might cause issues.
Let us know if that helps anything.
Thanks
Forum: Plugins
In reply to: [Coupon Creator] Coupon viewable on Mobile & IpadHi,
Sorry for the late reply. I am not sure how much I can help.
Have you tried reaching out to the theme developer to see if they can get the sidebars to show in mobile?
As for the coupons they are shortcodes so anywhere that accepts a shortcode can display the coupon.
For WooCommerce I think on the cart or checkout page you have to modify their template to get additional content. There might be a plugin out that that adds fields in the admin that will display there?
If you enter a coupon code in WooCommerce and it does not work I believe it does put a message over the cart to let you know it did not apply. That message can be modified by 3rd parties so if you are not seeing it that might be the case.
Thanks
Forum: Plugins
In reply to: [Coupon Creator] Tested on 5.xYou’re Welcome.
I do not have a timeline for a release, but hopefully in the next month or so.
Forum: Plugins
In reply to: [Coupon Creator] Links not showing upHi,
Thanks for using the Coupon Creator Pro.
Here on the WordPress.org forum, I’m afraid we do not provide technical support for our premium plugins. I would ask that you take any technical support questions across to our premium forum where we will respond to you within 24 hours during the week:
https://couponcreatorplugin.com/support/contact/
Having said that I can get you started on this. The links are removed from the coupons, because the coupons themselves are links and you cannot have links in links. There are newer coupons and options in Pro that disables the coupon being a link, but it was always designed to be one link itself.
I reviewed and the coding has a filter for the free version, but not the pro version to enable links.
However, if you change this a line of code in this file:
wp-content/plugins/coupon-creator/plugin-engine/src/Pngx/Field/Content.php
On line 59 from this:
<?php echo strip_tags( $meta, Pngx__Allowed_Tags::$tags() ); ?>
To this:
<?php echo strip_tags( $meta, apply_filters( 'pngx_filter_content_allowed_tags', Pngx__Allowed_Tags::$tags() ) ); ?>That will add the filter I will include in the next release. You can then use this snippet to enable links:
add_action( 'wp_head', 'cctor_enable_links' ); function cctor_enable_links() { add_filter( 'pngx_filter_content_allowed_tags', array( 'Pngx__Allowed_Tags', 'content' ) ); }Add that to a child theme or custom plugin.
Thanks again!
Forum: Plugins
In reply to: [Coupon Creator] Tested on 5.xHi,
I have not updated the tested version, but I have not found issues in 5.0 or 5.1 with the Coupon Creator during my current development. I have not updated the tested version as I plan to do it once I release support the block editor.
Thanks
Forum: Plugins
In reply to: [Event Tickets and Registration] Wrong email to customersHi,
Can you please update to Event Tickets 4.10.1 and see if that resolves the issue for you.
We did put a change in the plugin to resolve this issue and I am getting other reports it has fixed it for people.
Thanks
Forum: Plugins
In reply to: [Event Tickets and Registration] Incorrect RSVP availability countHi,
Sorry for the issues you are having. I can help troubleshoot this with you.
Have you by chance deleted any of the Attendees from the backend for that event?
Can you edit your original post and add a link for us to take a look?
And are the counts on the Attendee Page for the event what you expect or are they off too?That would be counts under Overview and Total RSVPs.
Thanks
Forum: Plugins
In reply to: [Event Tickets and Registration] Wrong email to customersHi,
I can help out here.
There is a bug with the translation files causing this.
You can the following to fix it:
By changing this:
$this->plugin_name = $this->pluginName = _x( ‘RSVP’, ‘ticket provider’, ‘event-tickets’ );
To this:
$this->plugin_name = $this->pluginName = ‘RSVP’;
on line 163 of this file:
plugins/event-tickets/src/Tribe/RSVP.php
it fixes it
We will have it in our next release 4.10.1 scheduled for next week.