Agence Best Of Site
Forum Replies Created
-
Forum: Plugins
In reply to: [Add Customer for WooCommerce] How can I change new account email template?Nice plugin but if it’s possible to copy the mail in woocommerce it’s better ??
- This reply was modified 2 years, 9 months ago by Agence Best Of Site.
- This reply was modified 2 years, 9 months ago by Agence Best Of Site.
Hello,
This problem are the “public.js” open this and add your custom field at line 25 and 49 !
Ex :
If you have add custome field “shipping_genre”add after line 25 => $(‘#shipping_genre’).val(response.shipping_genre);
add after line 49 => $(‘#billing_genre’).val(response.shipping_genre);??
Forum: Plugins
In reply to: [WoocommerceAtos] Aucun mail après le paiementProblème résolu !
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] margin:-15px ?Sorry i don’t understand.
My reference is the text width the blue background.the problem is in the yellow box if add padding 20px in the yellow box, the margin -15px is auto add?
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] margin:-15px ?I have update the page width more exemple and description.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] margin:-15px ?Hi,
Look here https://moteur-electrique-pro.fr/test-page/Forum: Fixing WordPress
In reply to: Woocommerce – Add to cart for variable products not appearingHi,
Have you enter the price per product in the admin tab “Variation”?Forum: Plugins
In reply to: [Woo Icon Stock] Cyrillic not work in the admin after plugin activationHello,
Thank’s for your comment.
For the next update i try this suggestion.What is your website?
Forum: Plugins
In reply to: [Woo Icon Stock] Cyrillic not work in the admin after plugin activationHi,
Now it’s good! Update this plugin and try.
@+Forum: Plugins
In reply to: [Woo Icon Stock] Cyrillic not work in the admin after plugin activationHi,
Try this Update, and say me it’s ok
ThankForum: Plugins
In reply to: [Woo Icon Stock] Cyrillic not work in the admin after plugin activationHello Valeriywoo,
I have tested width the new intall wordpress 3.8.1 and woocommerce 2.1.5 and no problem. And wordpress 3.9 width woocommerce 2.1.7 no problem.
Give me more information if you want to help you.
@+Forum: Plugins
In reply to: [Woo Icon Stock] Plugin Info in English possible?Hi Daveshine,
This plugin is translate in english and also its backend strings.
Thank’sForum: Plugins
In reply to: [Order Delivery Date for WooCommerce] French dateIt’s ok for me i have found :
Open the delivery-date.php
and add this :
jQuery("#e_deliverydate").val("").datepicker({ dayNamesMin: [ "Di", "Lu", "Ma", "Me", "Je", "Ve", "Sa" ],monthNames: [ "Janvier", "Fevrier", "Mars", "Avril", "Mai", "Juin", "Juillet", "Aout", "Septembre", "Octobre", "Novembre", "Decembre" ], dateFormat: formats[1], minDate:1});
Enjoy ??
Forum: Plugins
In reply to: [WooCommerce] Remove Add to Cart Buttons from Product PageLoLaEliz,
I’m not sure understand you, I’m french and my english is no good !
But have you a link of the website?
You want to delete the button “add to cart” just do it?Forum: Plugins
In reply to: [WooCommerce] Remove Add to Cart Buttons from Product PageHi LolaEliz,
In my code they have 2 error i post here the new code :function remove_loop_button(){ if(is_user_logged_in()){}else remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); if(is_user_logged_in()){}else remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); } add_action('init','remove_loop_button'); add_filter('woocommerce_get_price_html','members_only_price'); function members_only_price($price){ if(is_user_logged_in() ){ return $price; } else return '<a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Login</a> or <a href="'.site_url('/wp-login.php?action=register&redirect_to=' . get_permalink()).'">Register</a> to see price! </br><a class="button linklove" style="display:block;"href="'.get_permalink().'">lire plus</a>'; }
And with the css hidden the link button on the sigle page( linklove display none !)!
For you i think it’s possible with this code :
<?php (is_page('home')); remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ?>
Try this !