soerenhahnert
Forum Replies Created
-
[Edit] Might have been a cache issue. Sorry. I releoded several times with Strg+F5 but it changed after minutes. Works now.
Nope, still doesnt’t work.
Fruitful 3.1
WooCommerce 2.5.2
Fruitful Shortcodes 1.5
Wordpress 4.4.2Hi!
I took the 3.1 from Github and it didn’t fix the problem for me.
Forum: Themes and Templates
In reply to: [Fruitful] Products per row in IE 11 and MozillaHey!
I think it has to do with the margins of the li elements. When you inspect them in firefox you can see, that the product, which is supposed to be the last in the row, gets pushed to the next row because firefox thinks it doesnt fit anymore. A quick fix could be to modify
themes/fruitful/woocommerce/woo.css
in the following way:
.woocommerce-page ul.products li.product, .woocommerce ul.products li.product { margin-left: 1%; margin-right: 0.9%; width: 23%; }
i simply reduced the margin-right attribute by 0.1%
Forum: Themes and Templates
In reply to: [Fruitful] Custom single.php templateThis function is defined in the functions.php on line 1673.
I would suggest to make a child theme and define that function yourself in your own functions.php and comment that one out after you copied and modified it.
Forum: Themes and Templates
In reply to: [Fruitful] How to change the width of the footer?I described a better way here:
(Because this is not updatable)
Forum: Themes and Templates
In reply to: [Theme: Fruitful] – Increasing the width of the footerHey!
I don’t know if you still need an answer but i faced the same problem today.
You could edit the style.css in the theme folder and search for#colophon .site-info { font-size:12px; float:left; width:420px; padding:8px 0; }
Edit it like this:
#colophon .site-info { font-size:12px; float:left; width:100%; padding:8px 0; }
Be aware, that if you run updates, the changes could be overwritten. The better way is to make a child theme. Also i havent tested if this impacts the functionality of the theme in case of screen resolution of devices.
EDIT:
I created a child theme, copied the footer.php into the child theme folder. Made this edit on line 18:
<div class="site-info fixfooter">
(Added a class)Then i added some CSS to the style.css in the child theme folder
.site-info.fixfooter{ width:100% !important; }
Forum: Plugins
In reply to: [Polylang] Little Bug in core.php***SOLVED***
Forum: Plugins
In reply to: [Polylang] Little Bug in core.phppll_current_language works fine.
Forum: Plugins
In reply to: [Polylang] Little Bug in core.phpOk, my fault so far. I saw it in the moment i postet my line of code. Mixed up the file versions.
Forum: Plugins
In reply to: [Polylang] Little Bug in core.phpRead again please! I’m not using get_current_language. I’m using set_post_language.