Fleks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Can’t activate WooCommerce due error at Action_SchedulerIt’s resolved and it was our own fault and not relevant for others.
Great ??
Forum: Plugins
In reply to: [Bricksable for Bricks Builder] multi heading bugThe reason is, that the Element defines the CSS-Styles by
#bricks-elmement-XXXXXX .repeater-item:nth-child(x) { [styles] }
but the<span>
of each Heading Items has only the class
.ba-multi-heading-text
and no.repeater-item
Forum: Plugins
In reply to: [Elementor Website Builder - More than Just a Page Builder] Deprecated ErrorAre you ure you don’t have any extra Elementor related plugins active?
Is Elementor on v3.2.3 ?- This reply was modified 3 years, 6 months ago by Fleks.
Forum: Plugins
In reply to: [Elementor Website Builder - More than Just a Page Builder] Deprecated ErrorIf you need to keep Debug Mode activated, add
error_reporting(E_ALL ^ E_DEPRECATED);
towp-config.php
The
<script>
after<!-- Google Tag Manager -->
and</script>
before<!-- End Google Tag Manager -->
is missing. It seems as if the WordPress’ Custom HTML doesn’t allow<script>
– with Elementor Pro’s HTML Widgets it’s working.As you have the free version, I recommend to install the plugin “Insert Headers and Footers”.
A simple search shows that the error code if the sent request is to large.
What is the file size of the image you wanted to upload and what is your Max Upload Size (see in Elementor > System Info) ?Try: Dashboard > Elementor > Tools > Regenerate CSS > Regenerate Files
Which Elementor related plugins do you else have?
Is your WordPress up-to-date v5.7.1?
Do you use any Elementor related extra plugins?
To get rid of the message set WP_DEBUG to false in wp-config.phpEven with full refresh with Ctrl + F5 (Mac: Cmd + Shift + R) and purging cache?
You can investigate with the Inspector via right click on a linkQuick solution: insert in Appearance > Theme Editor > style.css
a { text-decoration: none !important; }
La soluzione più rapida e sicura è cambiare la lingua del sito WordPress in “English (United States)”.
Impostazioni > Generali > Lingua del sitoDeactivate “Improved Asset Loading” in Elementor > Settings > Experiments
See here
https://flextensions.com/6064/elementor-problems-with-last-update/elementor/2021/Okay, I hope, I got it right now.
– Add a section with two column 50/50
– Set section Content Width to Full Width
– Set Background Colors to columns
– Duplicate both columns (just ignore the padding around the empty cells in the editor preview)
– Add Custom CSS to the outer left and right columns:selector { width: calc( (100vw - 1200px ) / 2); }
– Add Custom CSS to inner left:
selector { flex: 2; }
– Add Custom CSS to inner right:
selector { flex: 1; }
Now the outer columns get half of the rest of all width above the max boxed size of 1200px in this case. Because of the columns are managed as Flexboxes the left columns gets 2 parts and the right columns 1 part of the remaining space.
Here is my version:
https://beta.flextensions.com/419/column-full-width-background-color/