Matias Benedetto
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress URL encoding in VBAHi, @bdesco WordPress is open source so you can always check the source code of the function you want to re-create and try to replicate that in VBA.
Forum: Developing with WordPress
In reply to: Block Plugin DevelopmentHi @knockoutbunny
npm
, the node package manager, is used to handle the building process and the dependencies of the new block you are creating.The
src
folder contains all the Javascript files that will be compiled/build when you runnpm run build
in the block folder path. The compiled/dist version of these files are created In thebuild
folder of your block.I hope this helps.
Forum: Fixing WordPress
In reply to: How to attach 200 images?Hi @blissout, I’m not sure why you used a plugin to upload the images. You are able to drag and drop multiple images at once to upload them to the media library. Are you using an old WordPress version? If that’s the case consider updating it.
Apart from that, you can select and insert many images at once and insert them in a post as a gallery using the gallery block.
Let me know if this helps.
Best!Forum: Fixing WordPress
In reply to: About WHITE-BOX TestingHi @blueblueblu I find your question interesting but I’m afraid that is too general to be able to help o propose some potential solutions.
It would be useful to know which are the concrete security concerns the white-box testing raised.
Forum: Fixing WordPress
In reply to: iFrame issueHi @anasantosuw to be able to load an iframe the server of the page (not your server) need to allow the page to be framed in another domain.
This is a security limitation. You can learn more from it here: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSPTo test if you are inserting the iframe correctly you can test with sites that allow everyone to frame it for example Wikipedia:
<iframe src="https://www.wikipedia.org" title="wikipedia"> </iframe>
Test this iframe and check if it works as expected. After that, replace the URL with the site url you are trying to load. If you get the same ‘Refused to connect’ error it means that you don’t have permission from that website to frame it. Your domain needs to be allowed/whitelisted by the other server as described in my first link.
I hope that helps.
BestForum: Networking WordPress
In reply to: Change upload path for subsites in multisiteHi @lveale, moving the uploads folder in multisite is more complex than in regular single site WordPress. Take a look at this part of the docs around this:
https://www.ads-software.com/support/article/multisite-network-administration/#uploaded-file-path
Forum: Fixing WordPress
In reply to: product description not display correct in mobile viewHi @jamalalloh, the problem with that unreadable text is produced by a CSS
line-height
definition with a very small value (0.1em) you have enabled for mobile.If you disable it looks good. Example:
I see you are using Elementor, so I think your better alternative is to look if there is an elementor option to change the
line-height
of those elements and change or remove that setting.Another alternative is to include something like this in your WordPress customized CSS. You need to add this in the “Appearance” -> “Custom CSS” section of your dashboard.
@media (max-width: 767px) { .elementor-kit-1121 { line-height: 1.5em; } }
Forum: Fixing WordPress
In reply to: Screen Option ElementHi @darylaurito, could you provide more details about your problem, please? I’m not sure what is the problem and what you are trying to achieve.
Forum: Fixing WordPress
In reply to: I lost my imageHi, @crunchyrollpremiumapk images deleted permanently are erased from storage.
I guess you only have 2 alternatives:
Do you or your web hosting service have a backup of your site? Look for the image there.
Another less likely work choice is to look for a Google cached or Internet Archive version of the page where the image was stored.
I hope that helps.
Forum: Fixing WordPress
In reply to: wordpress astra theme under line for remove off canvas menüHi @kombinezone, please, could provide more details about your problem? If it’s possible add a few screenshots of the problem and the URL if the site is already online.
Forum: Fixing WordPress
In reply to: Images sometimes don’t loadHi @globalhelpswap I think the problem with the images not loading properly is related to the plugin for image optimization I think you are using: shortpixel.
Could you disable the plugin temporarily and check if the images load fine?
Forum: Fixing WordPress
In reply to: WordPress SEO plugins to add meta descriptionsHi @ambika90bds, to check your metatags you don’t need to wait for an update in the Google index. Keep in mind that this Google index update is not performed in real-time and can take up to a few weeks. In this way to see each change, you should wait a lot of time.
I suggest you check the metatags using some tool to do that.
There are several different tools to do this meta tags checking, from websites to browser extensions. If your site is already online (not only running in localhost) you can use, for example, this website: https://metatags.ioYou can enter the URL of a page of your own and check the meta-tags of this page. If something is not working you want you can make the changes in WordPress, save, and run the analyze tool again until you get your desired result.
I hope this helps.
Forum: Fixing WordPress
In reply to: Unknown user to my accountHey @jugnu1107, I noticed that the link you provided is
nijiyoga.com
and the URL mentioned in the email isnijiyoga.org
.Is not the same site, but apart from that, if you want to check the users registered on your WordPress website you can navigate the “Users” -> “All users” section from your dashboard.
There you will be able to see and admin all registered users.
Hope this helps.
Forum: Fixing WordPress
In reply to: Can’t get 3 images to have effects, will only let me do 1Hi @jillyspence, to apply your CSS to the first 3 matching elements you can use this CSS pseudoselector
:nth-child(-n+3)
.Example using your code snippet:
.image:nth-child(-n+3) { perspective: 3000px; width: 50%; position: absolute; left: 50%; top:50%; transform: translate(-50%, -50%); transform-style: preserve-3d; } .image:nth-child(-n+3) img { transform: rotateX(70deg) rotateZ(-60deg) translate3d(-120px, 0px, 70px); box-shadow: -80px 60px 15px 5px rgba(0,0,0,0.4); transition: all .4s; transform-style: preserve-3d; } .image:nth-child(-n+3):hover img { transform: rotateX(0deg) rotateZ(0deg) translate3d(0px, 0px, 0px); box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0); }
Let me know if this helps.
If you are interested you can find more info here: https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child
Forum: Fixing WordPress
In reply to: Database ProblemHi @hostcruise
The error messages you posted imply that WordPress is not finding those tables.
Are you able to check the database you are using and check if the tables are there?I would need more details about your problem to be able to help you.