wordpress is so bad

Joined
Nov 30, 2018
Messages
749
Reaction score
123
so im using instabuilder 2.0 plugin there.
i can't upload any photos to my site,i need to put the image link from imgur instead. beneath this,i have other problems also. my text won't show up properly on mobile devices,it only works well on windows systems. there's no difference in fonts when the site is visited from a mobile device,all fonts are the same. site loading time is slow asf through. and here below you can see a big problem. somehow,those empty image boxes can't be deleted. i can't find them,i can't even see and click them when im editing my site. those are shitty bugs. leadsanity is a free landing page builder,it's the same instabuilder plugin there,but works waaay better then this wordpress PAID SHIT. the only problem i have at leadsanity too is this last problem with empty image boxes.



Image not found: g3XJ0Js
Image not found: g3XJ0Js
 
You are the problem, not the most used cms worldwide.
I might be a little bit biased as a wordpress plugin dev, but that system is almost idiot proof.

Dont work with Content Builders inside of Wordpress, try to wrap your head around themes which work without those builders.
 
You are the problem, not the most used cms worldwide.
I might be a little bit biased as a wordpress plugin dev, but that system is almost idiot proof.

Dont work with Content Builders inside of Wordpress, try to wrap your head around themes which work without those builders.

+1

Don't blame it on the CMS OP.

It could be several things that are causing this issue.

Overcrowded server if you're on Shared Hosting or poor network connection.

The empty broken boxes you see might be because of aggressive caching settings or broken CSS.

As for uploading the image, try uploading it through this media library page, domain.com/wp-admin/upload.php

You said the problem is with the leadsanity page builder, then ditch it and try some other page builder like elementor, beaver builder or divi builder. There are a lot of alternatives out there.

Don't blame it on the tool.
 
You still have that nice avatar so it`s a bright beginning I must say.
 
furthermore,it loads so freaking slowww when i go edit my site. everything is slow as hell like im trying to load a 4k video...and nah,i have fast connection. 45mbit/s is enough. but maybe you are right,seems all this shit came straight from instabuilder 2.0. but it's working perfectly on leadsanity,the same plugin. but seems it isn't connected well with wordpress somehow. could be old outdated plugin also right?
 
furthermore,it loads so freaking slowww when i go edit my site. everything is slow as hell like im trying to load a 4k video...and nah,i have fast connection. 45mbit/s is enough. but maybe you are right,seems all this shit came straight from instabuilder 2.0. but it's working perfectly on leadsanity,the same plugin. but seems it isn't connected well with wordpress somehow. could be old outdated plugin also right?

you are right, its crap, drop it and spend 5 years of your life learning how to code.
 
Word press is just fine. Were many get in trouble is adding plugins. Use as few as possible. I love page builders, particularly Elementor, but they add weight to every page that uses it. It gets really bad when you start adding add-ons and additional plugins. Not only do they make your pages heavier and slower, you may also have compatibility issues. Today I only use Elementor and Elementor Pro for building. There may be an optimization plugin and Yoast or another SEO plugin but that's it.

If I am just building a straight up blogging website I will just find a theme that works.

The key to a fast website is a good host, reduced page size(images and videos) and limit the plugins you use.
 
WP is so bad just because too many garbage made on it.
It's drawback of popularity and gradual learning curve.
 
Does anyone knows how i can remove those empty image boxes? One guy told something about agressive cache settings so where can i find that setting. I dont want to make a page again from zero to fix this stupid bug.
 
Wordpress is very good . Learn how to use it ! You have a great search engine that you can ask anything . google .........
 
In your browser, right click on the image, select inspect element. You will see in the sidebar on the right side some text that says something like this:
Code:
.image-something
{
width:100%;
}
I don't know exactly what you have there, so you will have to figure it out by yourself. So, in between those { } add this
Code:
display:none;

If you don't see the image anymore, go into your WordPress dashboard and somewhere it says Add custom CSS. Copy the modified code that now looks like this:
Code:
.image-something
{
width:100%;
display:none;
}
and paste it in the box.
Repeat for all images.
 
In your browser, right click on the image, select inspect element. You will see in the sidebar on the right side some text that says something like this:
Code:
.image-something
{
width:100%;
}
I don't know exactly what you have there, so you will have to figure it out by yourself. So, in between those { } add this
Code:
display:none;

If you don't see the image anymore, go into your WordPress dashboard and somewhere it says Add custom CSS. Copy the modified code that now looks like this:
Code:
.image-something
{
width:100%;
display:none;
}
and paste it in the box.
Repeat for all images.
Or work with transparency, but the above post is already top notch. You should try it.
 
In your browser, right click on the image, select inspect element. You will see in the sidebar on the right side some text that says something like this:
Code:
.image-something
{
width:100%;
}
I don't know exactly what you have there, so you will have to figure it out by yourself. So, in between those { } add this
Code:
display:none;

If you don't see the image anymore, go into your WordPress dashboard and somewhere it says Add custom CSS. Copy the modified code that now looks like this:
Code:
.image-something
{
width:100%;
display:none;
}
and paste it in the box.
Repeat for all images.


it wurked! thanx so much!
 
Back
Top