<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WordPress DK Forum Tag: woo commerce field - Recent Posts</title>
		<link>http://wp-danmark.dk/forum/tags/woo-commerce-field</link>
		<description>WordPress DK Forum Tag: woo commerce field - Recent Posts</description>
		<language>da-DK</language>
		<pubDate>Sun, 26 Jul 2026 15:07:14 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Søg]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://wp-danmark.dk/forum/search.php</link>
		</textInput>
		<atom:link href="http://wp-danmark.dk/forum/rss/tags/woo-commerce-field" rel="self" type="application/rss+xml" />

		<item>
			<title>ismailc85 om "Hjælp til loop til Woocommerce Select Field."</title>
			<link>http://wp-danmark.dk/forum/topic/hj%c3%a6lp-til-loop-til-woocommerce-select-field#post-56128</link>
			<pubDate>man, 17 mar 2014 20:17:48 +0000</pubDate>
			<dc:creator>ismailc85</dc:creator>
			<guid isPermaLink="false">56128@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Hej venner&#60;/p&#62;
&#60;p&#62;Jeg kunne godt tænke mig at lave en dropdown liste &#34;select field&#34; med tid værdier.&#60;/p&#62;
&#60;p&#62;Jeg kunne godt tænke mig, at den kun skulle vise aktuel tid som den første værdi, og frem til kl. 02.00.&#60;/p&#62;
&#60;p&#62;Jeg har her en lille eksempel, men her har jeg manualt tastet alle tider, så den er ikke dynamisk. &#60;/p&#62;
&#60;p&#62;Håber i kan hjælpe mig.. På forhånd tak :)&#60;/p&#62;
&#60;p&#62;-------------------&#60;/p&#62;
&#60;p&#62;/* Dato og tid for københavn */&#60;br /&#62;
date_default_timezone_set('Europe/Copenhagen');&#60;br /&#62;
$day = date('N'); // 1.Man, 2.Tir, 3.Ons, 4.Tor, 5.Fre, 6.Lør, 7.Søn.&#60;br /&#62;
$time	= date('H.i');&#60;/p&#62;
&#60;p&#62;$fields['shipping']['shipping_company'] = array(&#60;br /&#62;
'type' =&#38;gt; 'select',&#60;br /&#62;
'label' =&#38;gt; __('Leveringstid', 'woocommerce'),&#60;br /&#62;
'required' =&#38;gt; false,&#60;br /&#62;
'class' =&#38;gt; array('form-row-wide'),&#60;br /&#62;
'clear' =&#38;gt; true,&#60;br /&#62;
'options'	=&#38;gt; array(&#60;br /&#62;
'11.00' =&#38;gt; __('11.00', 'woocommerce'),&#60;br /&#62;
'11.15' =&#38;gt; __('11.15', 'woocommerce'),&#60;br /&#62;
'11.30' =&#38;gt; __('11.30', 'woocommerce'),&#60;br /&#62;
'11.45' =&#38;gt; __('11.45', 'woocommerce'),&#60;br /&#62;
'12.00' =&#38;gt; __('12.00', 'woocommerce'),&#60;br /&#62;
'12.15' =&#38;gt; __('12.15', 'woocommerce'),&#60;br /&#62;
'12.30' =&#38;gt; __('12.30', 'woocommerce'),&#60;br /&#62;
'12.45' =&#38;gt; __('12.45', 'woocommerce'),&#60;br /&#62;
'13.00' =&#38;gt; __('13.00', 'woocommerce'),&#60;br /&#62;
'13.15' =&#38;gt; __('13.15', 'woocommerce'),&#60;br /&#62;
'13.30' =&#38;gt; __('13.30', 'woocommerce'),&#60;br /&#62;
'13.45' =&#38;gt; __('13.45', 'woocommerce'),&#60;br /&#62;
'14.00' =&#38;gt; __('14.00', 'woocommerce'),&#60;br /&#62;
'14.15' =&#38;gt; __('14.15', 'woocommerce'),&#60;br /&#62;
'14.30' =&#38;gt; __('14.30', 'woocommerce'),&#60;br /&#62;
'14.45' =&#38;gt; __('14.45', 'woocommerce'),&#60;br /&#62;
'15.00' =&#38;gt; __('15.00', 'woocommerce'),&#60;br /&#62;
'15.15' =&#38;gt; __('15.15', 'woocommerce'),&#60;br /&#62;
'15.30' =&#38;gt; __('15.30', 'woocommerce'),&#60;br /&#62;
'15.45' =&#38;gt; __('15.45', 'woocommerce'),&#60;br /&#62;
'16.00' =&#38;gt; __('16.00', 'woocommerce'),&#60;br /&#62;
'16.15' =&#38;gt; __('16.15', 'woocommerce'),&#60;br /&#62;
'16.30' =&#38;gt; __('16.30', 'woocommerce'),&#60;br /&#62;
'16.45' =&#38;gt; __('16.45', 'woocommerce'),&#60;br /&#62;
'17.00' =&#38;gt; __('17.00', 'woocommerce'),&#60;br /&#62;
'17.15' =&#38;gt; __('17.15', 'woocommerce'),&#60;br /&#62;
'17.30' =&#38;gt; __('17.30', 'woocommerce'),&#60;br /&#62;
'17.45' =&#38;gt; __('17.45', 'woocommerce'),&#60;br /&#62;
'18.00' =&#38;gt; __('18.00', 'woocommerce'),&#60;br /&#62;
'18.15' =&#38;gt; __('18.15', 'woocommerce'),&#60;br /&#62;
'18.30' =&#38;gt; __('18.30', 'woocommerce'),&#60;br /&#62;
'18.45' =&#38;gt; __('18.45', 'woocommerce'),&#60;br /&#62;
'19.00' =&#38;gt; __('19.00', 'woocommerce'),&#60;br /&#62;
'19.15' =&#38;gt; __('19.15', 'woocommerce'),&#60;br /&#62;
'19.30' =&#38;gt; __('19.30', 'woocommerce'),&#60;br /&#62;
'19.45' =&#38;gt; __('19.45', 'woocommerce'),&#60;br /&#62;
'20.00' =&#38;gt; __('20.00', 'woocommerce'),&#60;br /&#62;
'20.15' =&#38;gt; __('20.15', 'woocommerce'),&#60;br /&#62;
'20.30' =&#38;gt; __('20.30', 'woocommerce'),&#60;br /&#62;
'20.45' =&#38;gt; __('20.45', 'woocommerce'),&#60;br /&#62;
'21.00' =&#38;gt; __('21.00', 'woocommerce'),&#60;br /&#62;
'21.15' =&#38;gt; __('21.15', 'woocommerce'),&#60;br /&#62;
'21.30' =&#38;gt; __('21.30', 'woocommerce'),&#60;br /&#62;
'21.45' =&#38;gt; __('21.45', 'woocommerce'),&#60;br /&#62;
'22.00' =&#38;gt; __('22.00', 'woocommerce'),&#60;br /&#62;
'22.15' =&#38;gt; __('22.15', 'woocommerce'),&#60;br /&#62;
'22.30' =&#38;gt; __('22.30', 'woocommerce'),&#60;br /&#62;
'22.45' =&#38;gt; __('22.45', 'woocommerce'),&#60;br /&#62;
'23.00' =&#38;gt; __('23.00', 'woocommerce'),&#60;br /&#62;
'23.15' =&#38;gt; __('23.15', 'woocommerce'),&#60;br /&#62;
'23.30' =&#38;gt; __('23.30', 'woocommerce'),&#60;br /&#62;
'23.45' =&#38;gt; __('23.45', 'woocommerce'),&#60;br /&#62;
'00.00' =&#38;gt; __('00.00', 'woocommerce'),&#60;br /&#62;
'00.15' =&#38;gt; __('00.15', 'woocommerce'),&#60;br /&#62;
'00.30' =&#38;gt; __('00.30', 'woocommerce'),&#60;br /&#62;
'00.45' =&#38;gt; __('00.45', 'woocommerce'),&#60;br /&#62;
'01.00' =&#38;gt; __('01.00', 'woocommerce'),&#60;br /&#62;
'01.15' =&#38;gt; __('01.15', 'woocommerce'),&#60;br /&#62;
'01.30' =&#38;gt; __('01.30', 'woocommerce'),&#60;br /&#62;
'01.45' =&#38;gt; __('01.45', 'woocommerce'),&#60;br /&#62;
'02.00' =&#38;gt; __('02.00', 'woocommerce')));&#60;br /&#62;
return $fields;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
