abdiyohan
Forum Replies Created
-
@espo74 Lol, you’re over my head on this one (designer, not front-end/wordpress dev). If you’re looking for why I used Curtis’ method, he gave clear directions to someone who doesn’t work in php and they worked, is my reason. Yours makes sense, though.
@espo74 I think the code added to functions.php allows you to see the filter and make the url update found in gravity-forms-salesforce/inc/web-to-lead.php [line 711]. That’s how I was able to make the url update specified in the email. In lieu of an official update, this is what we had to do. Other than testing it by successfully sending a lead to SF, I’m not sure how to verify that we’re good for June 2017.
Thank you, @curtisl! Your instruction was thorough and super helpful.
I echo @webvixn’s request of a way to double check to see if this is working other than by sending a lead and seeing it go through to SalesForce. If anyone knows of a way to double check, please let me know. The people I work with are still wary that we’ll be set for June.
- This reply was modified 7 years, 10 months ago by abdiyohan. Reason: forgot to check "notify me of follow-up replies via email"
Not sure if you’re still looking for input on this, but after an hour of trial and error, I fixed this issue for the web-to-lead plugin.
- First, I went to this folder wp-content/plugins/gravityforms/includes/addon
- Second, I opened class-gf-feed-addon.php
- Third, I pasted this code in the class GFAddOnFeedsTable extends WP_List_Table {
function get_columns() {
$columns = array(
‘name’ => ‘Name’,
‘subject’ => ‘Subject’
);
return $columns;
}