efrc78
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Change order of billing fields on checkout pageHi all,
this works great, but I’m having an issue with address_1 and 2, seems I can’t change the order of them like
add_filter(“woocommerce_checkout_fields”, “order_fields”);
function order_fields($fields) {
$order = array(
“billing_company”,
“billing_address_2”,
“billing_first_name”,
“billing_last_name”,
“billing_country”,
“billing_city”,
“billing_state”,
“billing_address_1”,
“billing_postcode”,
“billing_phone”,
“billing_email”);
foreach($order as $field)
{
$ordered_fields[$field] = $fields[“billing”][$field];
}$fields[“billing”] = $ordered_fields;
$fields[‘billing’][‘billing_company’][‘priority’] = 10;
$fields[‘billing’][‘billing_address_2’][‘priority’] = 20;
$fields[‘billing’][‘billing_first_name’][‘priority’] = 30;
$fields[‘billing’][‘billing_last_name’][‘priority’] = 40;
$fields[‘billing’][‘billing_country’][‘priority’] = 50;
$fields[‘billing’][‘billing_city’][‘priority’] = 60;
$fields[‘billing’][‘billing_state’][‘priority’] = 70;
$fields[‘billing’][‘billing_address_1’][‘priority’] = 80;
$fields[‘billing’][‘billing_postcode’][‘priority’] = 90;
$fields[‘billing’][‘billing_phone’][‘priority’] = 100;
$fields[‘billing’][‘billing_email’][‘priority’] = 110;return $fields;
}
The front-end shows:
“billing_company”,“billing_first_name”,
“billing_last_name”,
“billing_country”,
“billing_address_1”, <—
“billing_address_2”, <—
“billing_city”,
“billing_state”,
“billing_postcode”,
“billing_phone”,
“billing_email”any idea or fix?
- This reply was modified 7 years, 4 months ago by efrc78.
Forum: Plugins
In reply to: [Contact Form by Supsystic] Compare emailThanks,
I’ll wait it for it!Forum: Plugins
In reply to: [WordPress Social Login] Welcome emailThanks for the help,
with those values it works now, sadly I didn’t get the notification mail, I’ll check the values of the notification to see what is missingIt’s ok,
if helps to someone I did this to resolve on the bnfw.php file:public function change_password_email_message( $message, $key, $user_login = ”, $user_data = ” )
Forum: Plugins
In reply to: [WordPress Social Login] Welcome emailThanks Jamie,
maybe is my WP (3.9.9) version I got:
Warning: Missing argument 2 for jobify() in /home/tastyjobs/public_html/wp-content/themes/jobify/functions.php on line 2506Warning: Missing argument 3 for jobify() in /home/tastyjobs/public_html/wp-content/themes/jobify/functions.php on line 2506
Warning: Cannot modify header information – headers already sent by (output started at /home/tastyjobs/public_html/wp-content/themes/jobify/functions.php:2506) in /home/tastyjobs/public_html/wp-includes/pluggable.php on line 861
Warning: Cannot modify header information – headers already sent by (output started at /home/tastyjobs/public_html/wp-content/themes/jobify/functions.php:2506) in /home/tastyjobs/public_html/wp-includes/pluggable.php on line 862
Warning: Cannot modify header information – headers already sent by (output started at /home/tastyjobs/public_html/wp-content/themes/jobify/functions.php:2506) in /home/tastyjobs/public_html/wp-includes/pluggable.php on line 863
Warning: Cannot modify header information – headers already sent by (output started at /home/tastyjobs/public_html/wp-content/themes/jobify/functions.php:2506) in /home/tastyjobs/public_html/wp-includes/pluggable.php on line 1121
Seems a problem from the values for $provider, $userProfile, what do you suggest?
Forum: Plugins
In reply to: [WordPress Social Login] Welcome emailHello again,
any idea on how to send the welcome mail after a user signs in with the social account?
thanksForum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] New user email & passwordI miss the [user_password]
Forum: Plugins
In reply to: [Responsive flipbook wordpress plugin free download] zoom is not workingniether does mine
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Exclude pdf-files from indexI’m having the same problem
Forum: Plugins
In reply to: [Plugin: Google Calendar Event (GCE)] SSL ErrorThanks Stephan,
I’ve created my API key in google and after that the calendar worked back again.have you guys your own api key or using the default one?
this is the answer, I was not using my own API Key, so I’ve created one and the calendar works again.
Forum: Plugins
In reply to: [Plugin: Google Calendar Event (GCE)] SSL ErrorI have the same problem last week,
I don’t think you’ve done something, I didn’t.
Do you have any idea?Hello,
I have the same problem, we don’t have any SSL certificate but the plugin always worked, what could be the solution?Hello,
same problem here, in FireFox works great! in chrome can’t load or load just a square space. Any ideas on a solution?Forum: Plugins
In reply to: [Easy Modal] Modal not workign100% correct! Thank you very much!