<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: a few questions</title>
		<link>http://www.kriesi.at/support/topic/a-few-questions-2</link>
		<description>Support Forum - Topic: a few questions</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 11:18:01 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/a-few-questions-2" rel="self" type="application/rss+xml" />

		<item>
			<title>Hazral on "a few questions"</title>
			<link>http://www.kriesi.at/support/topic/a-few-questions-2#post-42040</link>
			<pubDate>Thu, 16 Feb 2012 15:45:42 +0000</pubDate>
			<dc:creator>Hazral</dc:creator>
			<guid isPermaLink="false">42040@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;plugins\woocommerce\languages\formal\woocommerce-de_DE.po&#60;br /&#62;
8012 msgid &#34;Cart Subtotal:&#34;&#60;br /&#62;
8170 msgid &#34;Cart Subtotal&#34; &#60;/p&#62;
&#60;p&#62;plugins\woocommerce\languages\informal\woocommerce-de_DE.po&#60;br /&#62;
7708 msgid &#34;Cart Subtotal&#34;&#60;br /&#62;
7719 msgid &#34;Cart Subtotal:&#34;&#60;br /&#62;
_________________________________________________________&#60;/p&#62;
&#60;p&#62;I dont have theese lines in my language file.&#60;/p&#62;
&#60;p&#62;But the qucik css worked perfect, thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "a few questions"</title>
			<link>http://www.kriesi.at/support/topic/a-few-questions-2#post-41980</link>
			<pubDate>Thu, 16 Feb 2012 07:33:02 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">41980@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;1) add this to your Quick CSS or custom.css&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#nav_menu-6 {
    margin-top: 25px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This adds a top margin to your Technische Daten widget specifically.&#60;/p&#62;
&#60;p&#62;2) In your language (.po) file in WooCommerce you should find it a few times&#60;br /&#62;
This is what I found in my folders:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;plugins\woocommerce\languages\formal\woocommerce-de_DE.po
8012 msgid &#38;quot;Cart Subtotal:&#38;quot;
8170 msgid &#38;quot;Cart Subtotal&#38;quot; 

plugins\woocommerce\languages\informal\woocommerce-de_DE.po
7708 msgid &#38;quot;Cart Subtotal&#38;quot;
7719 msgid &#38;quot;Cart Subtotal:&#38;quot;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But also in&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;plugins\woocommerce\templates\cart\totals.php
19 &#38;lt;th&#38;gt;&#38;lt;strong&#38;gt;&#38;lt;?php _e(&#38;#39;Cart Subtotal&#38;#39;, &#38;#39;woocommerce&#38;#39;); ?&#38;gt;&#38;lt;/strong&#38;gt;&#38;lt;/th&#38;gt; 

plugins\woocommerce\templates\checkout\review-order.php
15 &#38;lt;th colspan=&#38;quot;2&#38;quot;&#38;gt;&#38;lt;strong&#38;gt;&#38;lt;?php _e(&#38;#39;Cart Subtotal&#38;#39;, &#38;#39;woocommerce&#38;#39;); ?&#38;gt;&#38;lt;/strong&#38;gt;&#38;lt;/th&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In these last two you'll also find the Order Total&#60;br /&#62;
But also here:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;plugins\woocommerce\admin\post-types\shop_order.php
24 $columns[&#38;quot;total_cost&#38;quot;] = __(&#38;quot;Order Total&#38;quot;, &#38;#39;woocommerce&#38;#39;); 

plugins\woocommerce\admin\post-types\writepanels\writepanel-order_data.php
572 &#38;lt;label&#38;gt;&#38;lt;?php _e(&#38;#39;Order Total:&#38;#39;, &#38;#39;woocommerce&#38;#39;); ?&#38;gt;&#38;lt;/label&#38;gt; 

plugins\woocommerce\admin\post-types\writepanels\writepanels-init.php
28 add_meta_box( &#38;#39;woocommerce-order-totals&#38;#39;, __(&#38;#39;Order Totals&#38;#39;, &#38;#39;woocommerce&#38;#39;), &#38;#39;woocommerce_order_totals_meta_box&#38;#39;, &#38;#39;shop_order&#38;#39;, &#38;#39;side&#38;#39;, &#38;#39;default&#38;#39;); 

plugins\woocommerce\classes\class-wc-order.php
508 $total_rows[ __(&#38;#39;Order Total:&#38;#39;, &#38;#39;woocommerce&#38;#39;) ] = woocommerce_price($this-&#38;gt;get_order_total());&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Wasn't there a setting that changed the redirect link in WooCommerce? Anyway, I'm not sure - all your issues except for the first one should be addressed to the WooCommerce support theme if my suggestions don't work.&#60;/p&#62;
&#60;p&#62;I hope this helps :)&#60;br /&#62;
Regards,&#60;br /&#62;
Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hazral on "a few questions"</title>
			<link>http://www.kriesi.at/support/topic/a-few-questions-2#post-41760</link>
			<pubDate>Wed, 15 Feb 2012 08:10:39 +0000</pubDate>
			<dc:creator>Hazral</dc:creator>
			<guid isPermaLink="false">41760@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey, &#60;/p&#62;
&#60;p&#62;i have a few questions about the theme.&#60;/p&#62;
&#60;p&#62;I have 2 indivuiduell menus in the right sidebar, but they are too close to each other.&#60;br /&#62;
Can i pet some Space in here? (&#60;a href=&#34;http://sensationlight.bplaced.net/?page_id=1093&#34; rel=&#34;nofollow&#34;&#62;http://sensationlight.bplaced.net/?page_id=1093&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;I have to translate 2 Words at the checkout, Cart Subtotlal and order total.&#60;br /&#62;
Where can i translate theese two things? I have a german translation data but they are already in english.&#60;/p&#62;
&#60;p&#62;Another Problem is, wehn i log out, i get an error! ( just when i go over the domain )&#60;br /&#62;
When i use the normal provider link, i come to the wp-admin login, after the logout.&#60;br /&#62;
I don´t want the customers to see the admin login, is there a possibility to link them to the &#34;home&#34;-site??&#60;/p&#62;
&#60;p&#62;Really need help with this.&#60;br /&#62;
Daniel
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
