Todd Edelman
Forum Replies Created
-
Any updates here? I’m still experiencing this issue.
@qriouslad You’re referring to https://ww.wp.xz.cn/plugins/admin-menu-editor/? This plugin doesn’t control anything on the edit.php screens. It strictly controls left menu item visibility and order.
@qriouslad thanks for the reply. Everything seems to be configured correctly. Here’s a quick walkthrough I did – maybe you’ll spot something I missed – https://somup.com/cTXOjXR6Ps.
@qriouslad I’m having the same issue. Site is behind Cloudflare (https://bit.ly/4e4GHA7). Using Limit Login Attempts module. I’ve checked our http headers and I’m not seeing any value for IP detection. What do I do?
Resolved on my own. No longer relevant.
Anyone can help me with this?
It seems like Elementor (@joelsm / @aracelil) have stopped replying to this thread…
- This reply was modified 1 year, 8 months ago by Todd Edelman.
@joelsm – I am no longer finding “Custom” as an option under “Actions After Submit.” Did this feature get removed? I’m using Elementor Pro – 3.22.1.
Hi Yordan
I seem to be running into an issue.
When I preview the template on the wpo_wcpdf_options_page using an invoice I know should show this additional information, it appears as I want. But when I check the invoice the customer actually received, the additional information is missing.
I used Code Snippets plugin and have it set to Only run in administration area. Does this need to run everywhere for it to work correctly?
Thanks.
Thanks Yordan.
What was the code snippet that Darren provided me for? Customer notes?
I removed Darrent’s code snippet and tried the new code snippet you provided. It works, but I’m still getting Customer notes appearing, and we don’t want this on the invoice.
In your new code snippet, it references wpo_wcpdf_after_customer_notes, so do we need to change this?
- This reply was modified 2 years, 10 months ago by Todd Edelman.
Hi
Thanks for sending this over.
This code snippet displays the info for me based on the payment type being the Purchase Order, right under the Customer Notes:
The info is displayed in the PDF invoice, correct?
I tested this in the template builder and it seems like the code snippet is adding the display of ‘Customer Notes’ (https://prnt.sc/UIixNAeEr-l5) to the invoice (which is not needed) but it is not adding the Payment Instructions (https://prnt.sc/DwDoZyeljAI0) which is what we do need to add.
Please advise.
Thanks,
Todd- This reply was modified 2 years, 10 months ago by Todd Edelman.
Forum: Plugins
In reply to: [HandL UTM Grabber / Tracker] handl_url & handl_ref are not workingHi @haktansuren
Unfortunately, your suggestion didn’t work.
We were able to add the following code to the functions.php to get the data to record:
<?php } add_filter( 'wpcf7_special_mail_tags', 'your_special_mail_tag', 10, 3 ); function your_special_mail_tag( $output, $name, $html ) { if ( 'handl_url' == $name ) $output .= do_shortcode( '[handl_ref]' ); return $output; } add_filter( 'wpcf7_special_mail_tags', 'your_special_mail_tag2', 10, 3 ); function your_special_mail_tag2( $output, $name, $html ) { if ( 'handl_original_ref' == $name ) $output .= do_shortcode( '[handl_original_ref]' ); return $output; }We’re now trying to follow your instructions at https://www.haktansuren.com/zapier-for-contact-form-7-utms-lead-tracking-step-by-step/ to push this data to Zapier, but, these fields for [handl_url] and [handl_original_ref] are not passing through. Screenshot from Zapier – https://prnt.sc/u5uin5.
It’s critical we get [handl_url] and [handl_original_ref] to pass to Zapier. What are we doing wrong? Why isn’t this working?
Thanks,
ToddForum: Plugins
In reply to: [Redirection for Contact Form 7] Issue with WPMLHi Yuval
I’m having the same issue as described here.
WPML recently changed the way you translate forms. You can see their new instructions at https://wpml.org/documentation/plugins-compatibility/using-contact-form-7-with-wpml/.
So, we’re not actually building the form from scratch, in which we’d be able to choose the new redirect page, but instead we’re translating the form.
Can you take another look at this?
Thanks,
ToddForum: Plugins
In reply to: [Custom Post Type UI] Remove CPT SlugAppreciate the quick reply.
Not sure I want to go this route yet either, but the website I’m about to rebuild is currently a disaster and I’m weighing the options of changing URL structure or not.
The gist code goes in our functions.php file, yes?