pepinvik
Forum Replies Created
-
Forum: Plugins
In reply to: [Anti-Spam by CleanTalk. Spam protection] WP Form Entries not showing at allI have created the ticket as requested.
Thanks again
Forum: Plugins
In reply to: [Anti-Spam by CleanTalk. Spam protection] WP Form Entries not showing at allHi Dimitry,
Had to deactivate the plugin and delete the website as it wasn’t work. This is sad as we really love the plugin but we were losing real leads.
Is there a way to share our website link privately.
Please let me know and thanks again
Forum: Plugins
In reply to: [Anti-Spam by CleanTalk. Spam protection] WP Form Entries not showing at allThe problem CleanTalk is actually blocking the submission of a WPForm on my website. When I submit the form I don’t get to see my confirmation message. Have you heard of this? Do you have any ideas about how I might fix it?
Hi Kenil,
The link for the plugin I am using is below
I am not sure what exactly you want me to share as the plugin as various setting screens sir. We mostly use the default settings that came with plugin except to overwrite the product price with the prices of the product options created thru this plugin.
So for example we add a simple product called t-shirt and set price to $9.95, then using the plugin, we create options like size and set prices for these options. So If you select XL t-shirt the price will be 12.95, L t-shirt the price will be 11.95 and when a customer adds the product to the cart, price shown will be final price along with the size option they selected.
As I said, everything works except when using your plugin, the size options are not being displayed.
Thanks
PepinHi Kenil,
Thanks for replaying and I did everything you have suggested sir and issue still exists. It is very strange this is happening. And no changes were made to the plugin settings and the plugin is up to date to the latest version
Thanks again
Forum: Plugins
In reply to: [Frontend Dashboard] Not able to upload image in the front endSure I will email now. The subject line would be same as this
Thanks again
Forum: Plugins
In reply to: [Frontend Dashboard] Not able to upload image in the front endHi Vinoth,
Sure I can but can I email you as this is a development site and don’t want to be public for viewing yet.
Let me know
ThanksForum: Plugins
In reply to: [Frontend Dashboard] Is it possible customize the register emailThanks for replying. Appreciate it. I was able to customize the email message according to my needs.
I do have one more question, is it possible to create my own template for the dashboard as currently there is only one template called Template 1. If I can create my own template, I can upload it my theme under folder called frontend-dashboard-templates.
Please advise
Thanks
Thanks Mike and I will follow that thread, But any idea when a fix will be provided for this.
Forum: Plugins
In reply to: [CMB2] How to check each value of Mutlicheck Checkbox with a if clauseHi Michael & Justin
Thanks for replying, if I use the switch for some reason, the first two are getting ignored, what I mean is in the below code, Cherry Red and Irish Green are not displayed but only Jade Dome and Orange are being displayed
$apparel_colors= get_post_meta( get_the_ID(), '_pc_quote_apparel_apparel_colors', true ); if ( ! empty( $apparel_colors ) ) { foreach ( $apparel_colors as $color ) { switch ( $color ) { case 'Cherry Red': echo '<img src="/images/cherry-red.jpg" alt="cherry red" />'; break; case 'Irish Green': echo '<img src="/images/irish-green.jpg" alt="irish green" />'; break; case 'Jade Dome': echo '<img src="/images/jade-dome.jpg" alt="jade dome" />'; break; case 'Orange': echo '<img src="/images/orange.jpg" alt="orange" />'; break; } echo '<br>'; } }Thanks again
- This reply was modified 9 years, 3 months ago by pepinvik.
Forum: Plugins
In reply to: [CMB2] Trying to Output Repeatable fields in a Non Repeatable GroupHi Michael,
Thanks for replying and you are correct, I was missing the second foreach loop and everything works now. Appreciate it