supadigital
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Deprecated: WPCF7_TagGenerator::add():Your update documentation states: “
Tag-generator v2#Tag-generator v2
6.0 introduces the tag-generator version 2 and rewrites existing generators based on v2. Tag-generator v2 allows you to implement a finer, more solid user interface than ever before.
The previous tag-generator (v1) will continue to work, but an?
E_USER_DEPRECATED
?level warning will urge users to upgrade to v2.But how do you upgrade to v2? I am receiving this error on all my forms on some of my sites and some sites are simply no longer submitting forms at all. Seemingly because of this. See the following links as examples:
https://doormathomes.ng/sell-your-property/
https://doormathomes.ng/financial-products/archiconstruct/
Any assistance would be massively appreciated. Thanks
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Pods Templates are no longer workingHi @sc0ttkclark and @keraweb
Thank you so much for the feedback.
I did review the documentation, but honestly it was all a bit over my head. Nevertheless – Scott’s feedback was helpful and managed to solve the issue. I was using PHP to echo a shortcode and therefore it wasn’t working. So I simply removed the php around the shortcode and all is well once again.
I thank you both for your feedback. Very much appreciated!
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Pods Templates are no longer workingHi
I am still awaiting feedback on the above if possible please. I do feel that issues caused by massive updates to the plugin, albeit the free version, could at least use some response from the plugin creators – even if it’s to tell me I am need to go somewhere else.
I look forward to your feedback on my issue. Thanks
Forum: Plugins
In reply to: [Premium Addons for Elementor] Backend Premium Ads removal pleaseHi @leap13
Thanks for the feedback. I do notice that the ads disappear once dismissed, however I do also notice that you guys release a LOT of banner ads and so I constantly find myself having to dismiss these ads whenever I log into a client’s website. I won’t lie, it’s quite annoying and it would be better if there was a setting to disable any advertising – like most plugins have.
I just think if ALL plugin creators were to show banner ads as regularly and intrusively as you guys do – then wordpress backend would be a mess.
I love your plugin. I use it on most of my sites (the free version) and am grateful for it. I do however find the ads a bit too regular and intrusive and thought it’s time to inform you guys to consider allowing an option to disable premium ads. No hate, just constructive feedback.
Thanks for your time.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Pods Templates are no longer workingPS: I have implemented a workaround to the templates not working, BUT I still would like to know if they’re not working suddenly because of access rights feature, and if so, what settings should I implement in access rights to get the templates displaying?
Also worth noting, we currently have the code snippet provided by PODS documentation to enable shortcodes in templates, implemented as well.
Any assistance would be appreciated. Thanks
Forum: Plugins
In reply to: [Ultimate Gift Cards for WooCommerce – Create WooCommerce Gift Cards, Gift Vouchers, Redeem & Manage Digital Gift Coupons. Offer Gift Certificates, Schedule Gift Cards, and Use Advance Coupons With Personalized Templates] Amount selection/input is not carrying through to cartHi
I am using the free plugin, so the support option is not available to me.
It is ONLY on the CART page that the correct amount is not reflecting. On the checkout page and in the mini-cart, the correct amount reflects. But in the /cart page, the incorrect (minimum or default) amount displays.
Please could you advise a) if this is a global issue, or b) if it’s just my site, what the problem might be?
I realize that option b is slightly out of scope, but nothing changed on our site prior to this issue arising, apart from updating the plugin.
I would appreciate if you could replicate the scenario on my site as per the link attached to this query so that you can identify if this is a global issue or limited to my site.
Thanks
I THINK I have solved this by using the LATEST POSTS NOTIFICATION.
I noticed you suggested this on another support thread here. THANKS SO MUCH.
Hi Again
I SOLVED this using your feedback provided on another thread in this support forum here: Add custom checkout field value to pdf invoice | www.remarpro.com
Thanks so much for your assistance, albeit via proxy ??
Thanks so much for the feedback and for checking it all out. Much appreciated. I totally understand that it’s a paypal thing. Slightly annoying, but I will see if there’s something I can do with PayPal to ALWAYS offer the credit card option.
Thanks again. Much appreciated.
Hi
Normally the Credit card option is available IMMEDIATELY – BEFORE having to sign in to PayPal, so that customers without paypal accounts can make credit card payments. This is the case with the Course for $49, but not the case for the $5 payment.
Any thoughts?
Thanks again for liaising on this with me.
Hi
Thanks so much for the response, much appreciated. I 100% understand that this is most likely a paypal restriction of sorts. Nevertheless, as requested, please see the $5 product below and then the $49 dollar product link further below – which DOES have the credit card payment option:
https://staging5.michellemcfadyen.com/shop/download-harmony-in-hustle-a-blueprint-for-work-life-balance/
https://staging5.michellemcfadyen.com/shop/online-course-imposter-syndrome-recognising-and-reframing/I look forward to any feedback and thoughts. Especially appreciated as I understand this is slightly out of your scope.
Thanks again!
Hi @ammiribsf
Thanks for your quick response, much appreciated.
I have actually decided on a workaround for the issue as I seem to think it’s related to ASTRA theme settings – something that I cannot fix, nor change at this point in time. Therefore the workaround will work just fine.
But I thank you for your response and for a fantastic plugin that I am still making use of in this project.
Thanks again.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Getting related post permalink valueThanks so much for the feedback. I managed to do a workaround on this and forgot to close this ticket, apologies. Thanks though for your assistance, very much appreciated!
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Getting related post permalink valueHi @keraweb
I am actually needing to use the relationship field within a javascript code snippet and it seems magic tags don’t work in scripts?
Basically, what I am trying to do is get the permalink of the related pod by inserting the title of the that pod into the code snippet.So when setting up an fsp_product, there is a relationship field that returns the title of a related pod post (product_thank_you_pa). I then insert that title into javascript snippet in order to get the permalink of that post and attach it to a variable in javascript which i then use later in the snippet for a redirect.
I have tried various snippets (I’m not too knowledgeable in coding, but rather using chaptgpt for snippets) but nothing works thus far. Any assistance would be appreciated. If its out of support scope, i understand. Thanks.
Below is one example of a snippet i used, but this returned an error: Uncaught ReferenceError: Pods is not defined
<script>
document.addEventListener("DOMContentLoaded", function() {
// Get the selected "product_thank_you_pa" title from the related field
var selectedTitle = Pods.getField('fsp_product', 'fsp_product_thank_you_page_url').find('option:selected').text();
// Find the corresponding "product_thank_you_pa" by title
var productThankYouPa = Pods.data.product_thank_you_pa.find(function(item) {
return item.title === selectedTitle; });
// Set the "url" variable to the fsp_product_thank_you_page_url of the selected "product_thank_you_pa"
var url = productThankYouPa.fsp_product_thank_you_page_url;
// Use the "url" variable as needed
console.log(url); });
</script>
Forum: Plugins
In reply to: [Contact Form 7] Categorize/Group Forms in Admin@takayukister YEah, i figured out that the post_meta was required, and it DID work. The only problem I have now is that forms have different thank you pages. So not sure if there is a way to redirect to a different page depending on the campaignId value?
I dont expect you to assist with this, just checking if you know of any easy solution.
THANK YOU so much for your assistance on this. Very much appreciated!