<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WooCommerce &#8211; La boite à outils d&#039;emandarine</title>
	<atom:link href="https://blog.emandarine.net/wordpress/woocommerce/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.emandarine.net</link>
	<description>Agence de création web et marketing digital</description>
	<lastBuildDate>Wed, 16 Mar 2022 08:39:13 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.5</generator>
	<item>
		<title>Carrousel produits mis en avant Woocommerce (Slick/Bulma) [PHP + JS + CSS]</title>
		<link>https://blog.emandarine.net/wordpress/carrousel-produits-mis-en-avant-woocommerce-slick-bulma-php-js-css/</link>
					<comments>https://blog.emandarine.net/wordpress/carrousel-produits-mis-en-avant-woocommerce-slick-bulma-php-js-css/#respond</comments>
		
		<dc:creator><![CDATA[emandarine]]></dc:creator>
		<pubDate>Fri, 19 Mar 2021 15:06:32 +0000</pubDate>
				<category><![CDATA[Astuces Wordpress]]></category>
		<category><![CDATA[WooCommerce]]></category>
		<guid isPermaLink="false">https://blog.emandarine.net/?p=5661</guid>

					<description><![CDATA[Petite astuce pour afficher sous forme de carrousel les produits mis en avant. Fonctionne avec Slick carrousel et le CSS Bulma. PHP (dans votre thème)...]]></description>
		
					<wfw:commentRss>https://blog.emandarine.net/wordpress/carrousel-produits-mis-en-avant-woocommerce-slick-bulma-php-js-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Création d&#8217;un rôle et des prix &#038; promos spécifiques  « Client professionnel » dans Woocommerce WordPress [function + PHP]</title>
		<link>https://blog.emandarine.net/wordpress/creation-dun-role-et-des-prix-customer-professionnel-dans-woocommerce-wordpress-function-php/</link>
					<comments>https://blog.emandarine.net/wordpress/creation-dun-role-et-des-prix-customer-professionnel-dans-woocommerce-wordpress-function-php/#respond</comments>
		
		<dc:creator><![CDATA[emandarine]]></dc:creator>
		<pubDate>Mon, 29 Jun 2020 15:02:32 +0000</pubDate>
				<category><![CDATA[Astuces Wordpress]]></category>
		<category><![CDATA[Rôles sur Wordpress et/ou WooCommerce]]></category>
		<category><![CDATA[WooCommerce]]></category>
		<guid isPermaLink="false">https://blog.emandarine.net/?p=4290</guid>

					<description><![CDATA[Ici, le code vous permet de donner un accès aux prix « professionnels » et prix « promotion pour professionnel » pour des articles mis en vente pour des...]]></description>
		
					<wfw:commentRss>https://blog.emandarine.net/wordpress/creation-dun-role-et-des-prix-customer-professionnel-dans-woocommerce-wordpress-function-php/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mettre la première image de la galerie d&#8217;un produit comme thumbnail automatique sous WooCommerce  [functions + PHP]</title>
		<link>https://blog.emandarine.net/wordpress/mettre-la-premiere-image-de-la-galerie-dun-produit-comme-thumbnail-automatique-sous-woocommerce-fuctions-php/</link>
					<comments>https://blog.emandarine.net/wordpress/mettre-la-premiere-image-de-la-galerie-dun-produit-comme-thumbnail-automatique-sous-woocommerce-fuctions-php/#respond</comments>
		
		<dc:creator><![CDATA[emandarine]]></dc:creator>
		<pubDate>Thu, 11 Jun 2020 08:22:50 +0000</pubDate>
				<category><![CDATA[Astuces Wordpress]]></category>
		<category><![CDATA[Images et média]]></category>
		<category><![CDATA[WooCommerce]]></category>
		<guid isPermaLink="false">https://blog.emandarine.net/?p=4233</guid>

					<description><![CDATA[Tout est dit dans le titre. Dans fonctions.php : add_action( 'save_post', 'my_save_post', 10, 3 ); function my_save_post($post_id){     $post = get_post( $post_id );     if($post-&#62;post_type !== 'product'){         return;     }     $post = new WC_product( $post_id );     $attachment_ids = $post-&#62;get_gallery_image_ids();     $image_thumbnail = get_post_meta($post_id, '_thumbnail_id', TRUE);     if(empty($image_thumbnail) &#38;&#38; !empty($attachment_ids)){                  $image_thumbnail_id = $attachment_ids[0];         update_post_meta($post_id, '_thumbnail_id', $image_thumbnail_id, '');     } } &#160;]]></description>
		
					<wfw:commentRss>https://blog.emandarine.net/wordpress/mettre-la-premiere-image-de-la-galerie-dun-produit-comme-thumbnail-automatique-sous-woocommerce-fuctions-php/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mettre l’image du dernier produit en thumbnail de sa catégorie sous WooCommerce [functions + PHP]</title>
		<link>https://blog.emandarine.net/wordpress/mettre-limage-du-dernier-produit-en-thumbnail-de-sa-categorie-sous-woocommerce-fuctions-php/</link>
					<comments>https://blog.emandarine.net/wordpress/mettre-limage-du-dernier-produit-en-thumbnail-de-sa-categorie-sous-woocommerce-fuctions-php/#respond</comments>
		
		<dc:creator><![CDATA[emandarine]]></dc:creator>
		<pubDate>Thu, 11 Jun 2020 08:18:45 +0000</pubDate>
				<category><![CDATA[Astuces Wordpress]]></category>
		<category><![CDATA[Images et média]]></category>
		<category><![CDATA[WooCommerce]]></category>
		<guid isPermaLink="false">https://blog.emandarine.net/?p=4229</guid>

					<description><![CDATA[Vous avez besoin de changer régulièrement les images de vos catégories sous WooCommerce. Cette solution peut vous convenir : il s&#8217;agit de mettre l&#8217;image du...]]></description>
		
					<wfw:commentRss>https://blog.emandarine.net/wordpress/mettre-limage-du-dernier-produit-en-thumbnail-de-sa-categorie-sous-woocommerce-fuctions-php/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
