guillaumeglt
Forum Replies Created
-
Ok i found ?? i need to put @ in the subject first of the email, so after i can find my custom variable and copy past in the body of my email
Forum: Plugins
In reply to: [WP Layouts] Multisite connection problemsYes i tried but didn’t work, i couldn’t connect the same Account on two websites
Yes sur, i sent a message with your form on your website
Okey sorry it’s my stupid firewall and plugin :’)
Hi, i have the same problem, i can’t import demo on wordpress i have this message :
Under Maintenance..
If you are seeing this message, most likely our servers are under routine maintenance and we will be back shortly.And on https://wpastra.com/ready-websites/ there are not demo template since 3 days ??
On console : Failed to load resource: net::ERR_SPDY_INADEQUATE_TRANSPORT_SECURITY
Thank you
I Have the same problem, it’s the plugin Sydney Toolbox, i think it’s not compatible with elementor
I found the solution : download previous version of plugin Syndey Toolbox 1.0.3 -> search Sydney toolbox on www.ads-software.com -> Development tab -> Advanced view -> at the bottom of the page choose to download the version ??
- This reply was modified 6 years, 8 months ago by guillaumeglt.
- This reply was modified 6 years, 8 months ago by guillaumeglt.
Ok i found ! i use this code to collect informations from database and to use in my quote template:
global $wpdb;
$req_id_quote = $wpdb->get_results(“SELECT * FROM {$wpdb->prefix}postmeta WHERE post_id=”.$_POST[‘zbs_quote_id’].” AND meta_key = ‘zbsid'”) ;
// Parcours des resultats obtenusforeach ($req_id_quote as $post) {
$id_quote = $post->meta_value;
}$req_id_contact = $wpdb->get_results(“SELECT * FROM {$wpdb->prefix}postmeta WHERE post_id=”.$_POST[‘zbs_quote_id’].” AND meta_key = ‘zbs_customer_quote_customer'”) ;
foreach ($req_id_contact as $post) {
$id_contact = $post->meta_value;
}$req_adress_contact = $wpdb->get_results(“SELECT * FROM {$wpdb->prefix}zbs_contacts WHERE ID=”.$id_contact.””) ;
foreach ($req_adress_contact as $post) {
$address1 = $post->zbsc_addr1;
$address2 = $post->zbsc_addr2;
$city = $post->zbsc_city;
$country = $post->zbsc_county;
$postcode = $post->zbsc_postcode;
}$html = str_replace(‘###COUNTRY###’,$city,$html);
$html = str_replace(‘###CITY###’,$city,$html);