There may be some issues with wpbakery page builder after wordpress 5.5 update,
to solve them please install this plugin:
https://wordpress.org/plugins/enable-jquery-migrate-helper/
may help.
On the right side in the appearnce section you have a shadow option. Change it to no shadow and save.
To change the demo image you need to enter the component >> choose a slider >> choose a slide >> click "change image" and choose a different background image for the slide.
Helix framework has no setting to make the row fluent. So this issue could be solved by adding some custom css to the page that will override the helix css.
Go to grid settings->advanced, and add this css in the "page css" textarea:
#sp-main-body .container{
width:100%;
padding:0px;
}
#sp-main-body{
padding-top:0px;
}
You can use the {loadposition} joomla shortcode. Here is the explanation how to use it:
http://docs.joomla.org/How_do_you_put_a_module_inside_an_article%3F
When you have some bugs in freemius sdk, that the plugin use, you can try this plugin:
https://github.com/Freemius/freemius-fixer
it could fix multisite issues in freemius, and some more bugs.
If you are using GANTRY & Rocket theme templates. Here is a quick fix for you .
#rt-drawer div.rt-container
{
width:100% !important;
}
#rt-drawer div.rt-container div.rt-grid-12
{
width:100% !important;
margin: 0 auto;
}
Big Description:
When you go to "edit page" view, and the "unlimited addons" plugin is enabled, the page is not loaded.
Why it may happend:
WPBakery Page Builder produce very big json string with the defenitions of all the addons. If there are big amount of addons it can reaach up to 1.2MB.
Some servers has configuration that not allow this like output.
How you test that it's the issue:
1. Make sure you have the latest version of unlimited addons plugin (1.0.12 and up).
2. Go to General Settings => Troubleshooting => Overload Test => and press on the button "Run Test"
The success test should look like this:
If you don't see this picture, then you know that it's the current bug.
How to solve this bug:
Please contact your server provider, show them the test, and tell them to update those settings:
SubstituteMaxLineLength and LimitRequestBody
it should fix the issue.
for example add this line of code:
SubstituteMaxLineLength 10M
or add to htaccess this code:
<IfModule mod_substitute.c> SubstituteMaxLineLength 10M </IfModule>
Right after these pre-existing lines:
# BEGIN WordPress <IfModule mod_rewrite.c>
Please tell them to run this test after they fix to make sure it's fixed.
How to talk with server support:
In order to talk effectively with the server support you can give them this simple php test file. This file should run successfully after the fix their bug. It's running on all the servers, it's very simple file, that puts 1MB string on html page. When they fix their part, you can ask them what they did, and help us to update this article.
------------------- test.php --------------------------
bug test, of big string, size:
$size = 1200000;
$strData = "this is text";
while(strlen($strData) < $size){
$strData .= "this is text";
}
echo(strlen($strData)."
");
echo $strData;
exit();
?>
the test success!!!
1. Go to edit mode of one of the slides.
2. Click Edit Css File
3. Find the class of the caption you want to change
4. Change the background color to background-color: rgba(0, 0, 0, 0.4);
5. Save and close
1. Go to the slider settings on the right side under general, change load google font to yes.
2. In the input box copy and paste the name of the font you want to use
3. Click edit slides
4. Enter one of the slides and click edit CSS File
5. Change the font-family of the caption you want to change
If some packages are importing, and other packaging not imported, you can do the following:
1. Try to increase upload_max_filesize setting in your php.ini to 10mb or more.
2. Unzip the package zip, and there you'll see the actual addons zip files. You can import the zip files, the plugin support multi upload.