teclive
Forum Replies Created
-
Forum: Plugins
In reply to: [HandL UTM Grabber / Tracker] UTM not being passed in Gravity formsThank you for your reply.
Should I be using my own domain or the domain I a have the plugin installed on?
(for Slack)Forum: Plugins
In reply to: [HandL UTM Grabber / Tracker] Hidden fields not showing in view sourcecreated new support comment, this one is kind of solved
Forum: Plugins
In reply to: [HandL UTM Grabber / Tracker] Hidden fields not showing in view sourceThere are no UTC parameters being passed. The only things being passed are the ‘handl’ fields
handl_landing_page: https://casorojewelrysafes.com/
handl_original_ref: https://casorojewelrysafes.com/@aclion111
did you ever figure out how to get the category name in the url ?do you have to use post categories?
TIA
Thank you kindly for your reply. I was just worried that the one time use meant per IP, so if someone with a different IP tried to use the same code, they would also be able to use it once.
Forum: Plugins
In reply to: [WooCommerce] update/version issuyeSorry for the typo in the title
AHH, my bad, sorry. I did not complete the activation
Forum: Plugins
In reply to: [iframe] Iframe content not showingSOLVED…client site was https, iframe info was http….rookie mistake, sorry about that
Forum: Plugins
In reply to: [WooCommerce] WordPress 4.5.3Thank you so much superkot, I appreciate your help
Forum: Plugins
In reply to: [WP Post Popup] Tried everything but can’t get it to workThe first link on the page is linking to
WP Post Popup testing
which is using the default template of the theme.The second link is linked to
another test
which is using a modal.php template that I created using the example on your site@pixelcellar, Thank you so much for the code, I was trying to figure it out myself ??
I put the code into the functions file of my clients child theme
add_filter(‘woocommerce_email_order_meta_keys’, ‘my_woocommerce_email_order_meta_keys’);
function my_woocommerce_email_order_meta_keys( $keys ) {
echo ‘<h2>Miscellaneous Details</h2>’;
$keys[‘Where did you hear about us?’] = ‘wc_customer_source_checkout_field’;
$keys[‘Other’] = ‘wc_customer_source_checkout_other_field’;
return $keys;
}but get this error
Parse error: syntax error, unexpected ‘Detailsa€?’ (T_STRING), expecting ‘,’ or ‘;’ in /home/casoro/public_html/wp-content/themes/salient-child/functions.php on line 157Here is a screenshot of the code in the file
https://www.clipular.com/c/5250961420582912.png?k=m1iRuvNI-ITuL20b9YM9eoXxjhoAny help would be great ??
Thank you
TanyaForum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Capture Country Code and IPThis is mine now for the demo request
$form_id = 8; // form id to act upon
$field_name = ’00N440000066iO3′; // API Name of the field you want to autofill
My full code is// Autofill a user's country based on IP DEMO add_filter( 'salesforce_w2l_field_value', 'salesforce_w2l_field_value_geoip_example', 10, 3 ); function salesforce_w2l_field_value_geoip_example( $val, $field, $form ){ // Based on this plugin: https://www.ads-software.com/plugins/geoip-detect/ // Adjust this code to the one used by your geo detection plugin as needed if( !function_exists( 'geoip_detect2_get_info_from_current_ip' ) ) return; $form_id = 8; // form id to act upon $field_name = '00N440000066iO3'; // API Name of the field you want to autofill if( $form == $form_id && $field_name == $field ){ $userInfo = geoip_detect2_get_info_from_current_ip(); //$val = $userInfo->country->isoCode; // e.g. US $val = $userInfo->country->name; // e.g. United States } return $val; }
but when I try to duplicate that code and change the formID and field name for the other form, it tells me it has already been sent
- This reply was modified 7 years, 8 months ago by teclive.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Capture Country Code and IPWell, I managed to get the Country to autofill in the one form.
When I try to set it up so that it autofills in both forms, I get an error because I cannot duplicate the code in the functions.I have a contact form and a form for requesting a demo, can I only have it autofill for one of the forms?
- This reply was modified 7 years, 8 months ago by teclive.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Capture Country Code and IPThank you for your reply. I am going to give this all a shot. Fingers crossed, as that IP one kinda has my head spinning LOL
Forum: Plugins
In reply to: [FG Joomla to WordPress] Images import, kinda of but are brokenHi there, thank you for the reply. I could not connect to the database, I tried everything, so I had to import the joomla tables via phpmyadmin. So I was not able to put the url of the site where the Joomla! was installed.
I just purchased the full version along with the jcomment addon. I started everything over from scratch, new WP install and such.
Again though, I cannot connect to the database of where the Joomla site is. The WordPress and Joomla! are on 2 different servers.I tried to add the domain and the ip in “Remote MySQL” but that did not help either.
I followed the steps from here
https://www.fredericgilles.net/support/kb/faq.php?id=1I know my info for the database is correct, so not sure how else to do it so I can get the images over
The error I am getting is…
[ERROR] Couldn’t connect to the Joomla database. Please check your parameters. And be sure the WordPress server can access the Joomla database.Thankies
- This reply was modified 8 years, 1 month ago by teclive. Reason: add error message