Help Script

This section is for posting questions which are not directly related to WYSIWYG Web Builder.
Examples of off topics: web server configuration, hosting, programming related questions, third party scripts.

Note that these questions will generally not be answered by the administrators of this forum.
Post Reply
alexoliveira
 
 
Posts: 154
Joined: Fri Oct 01, 2021 5:12 am

Help Script

Post by alexoliveira »

I need the script, I'm trying to add a script but the whole site bugs :(

<script src="https://www.startagencia.net/supportboa ... "></script>
<script id="sbinit" src="https://www.startagencia.net/supportboa ... "></script>
User avatar
Pablo
 
Posts: 21578
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Help Script

Post by Pablo »

First note that there is no support on third party scripts, because for me it may also take a lot of time to figure out how the script works.
However, the code will be inserted "AS IS".

If the script does not work:
- make sure the script is valid and complete
- make sure the script does not conflict with other code on the page
- make sure the script has been placed in the correct section of the page.
also note that some scripts only work when the page is online.
wwonderfull
 
 
Posts: 1255
Joined: Fri Aug 21, 2020 8:27 am

Re: Help Script

Post by wwonderfull »

alexoliveira wrote: Fri Oct 07, 2022 7:43 am I need the script, I'm trying to add a script but the whole site bugs :(

<script src="https://www.startagencia.net/supportboa ... "></script>
<script id="sbinit" src="https://www.startagencia.net/supportboa ... "></script>
Please provide the full script and tell us what you are trying to do in details or provide us the source of the script if possible.
alexoliveira
 
 
Posts: 154
Joined: Fri Oct 01, 2021 5:12 am

Re: Help Script

Post by alexoliveira »

Managing to install the script, but when installing it, several elements of the page disappeared. Most scripts have this bug that deletes various elements. I need help in this area I need the script but when adding multiple elements disappeared from the website.
wwonderfull
 
 
Posts: 1255
Joined: Fri Aug 21, 2020 8:27 am

Re: Help Script

Post by wwonderfull »

alexoliveira wrote: Mon Oct 10, 2022 10:42 pm Managing to install the script, but when installing it, several elements of the page disappeared. Most scripts have this bug that deletes various elements. I need help in this area I need the script but when adding multiple elements disappeared from the website.
Well if you need help then please provide the script if possible so we can see what is wrong. Note that wwb does not provide support for custom script and neither is wwb responsible for any custom coding conflicts it is totally dependent on how you use it with proper coding knowledge.
alexoliveira
 
 
Posts: 154
Joined: Fri Oct 01, 2021 5:12 am

Re: Help Script

Post by alexoliveira »

I have a script to add to my website, it would be a chat service. is already working. However, when adding this code to heady it causes the site to crash, causing some elements to not appear.

Code: Select all

<script src="https://startagencia.net.br/live/js/min/jquery.min.js"></script>
<script id="sbinit" src="https://startagencia.net.br/live/js/main.js"></script>
I added it to the start of page, and it worked perfectly, but it's not the right place to stay, there could be a conflict going on. what to do?
This code may be added to your project to test what I'm saying.
Last edited by alexoliveira on Wed Dec 13, 2023 12:11 am, edited 1 time in total.
User avatar
crispy68
 
 
Posts: 2737
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: Help Script

Post by crispy68 »

The code you provided on its own is not going to cause any issues. Doesn't cause any when I add them. It's just simple meta tags.

More than likely there is something else on your site causing the issue. Without seeing it, no way of knowing.
alexoliveira
 
 
Posts: 154
Joined: Fri Oct 01, 2021 5:12 am

Re: Help Script

Post by alexoliveira »

my website is the following link, try adding it to heady and you will see that the website has some bugs,
http://www.startagencia.net.br

Code: Select all

<script src="https://startagencia.net.br/live/js/min/jquery.min.js"></script>
<script id="sbinit" src="https://startagencia.net.br/live/js/main.js"></script>
alexoliveira
 
 
Posts: 154
Joined: Fri Oct 01, 2021 5:12 am

Re: Help Script

Post by alexoliveira »

Anyone with any solution?
User avatar
BaconFries
 
 
Posts: 5328
Joined: Thu Aug 16, 2007 7:32 pm

Re: Help Script

Post by BaconFries »

You have previously asked this at the following!! Chat Live See my reply at the end.
If the script is not working it is due to it using jquery and it is conflicting with jquery already used on the page. You cannot use two versions of jquery at once again see my reply. Once you remove this it should work!. Note when using external scripts you need a basic understanding how to use it yourself.
Already in use in the software..

Code: Select all

<script src="js/jquery-3.7.1.min.js"></script>
You have also inserted the following at the start of page please remove as incorrect.

Code: Select all

<script src="https://startagencia.net.br/live/js/min/jquery.min.js"></script>
<script id="sbinit" src="https://startagencia.net.br/live/js/main.js"></script>
As previously mentioned you need to remove this.

Code: Select all

<script src="https://startagencia.net/bot/js/min/jquery.min.js"></script>
You only require this insert in Page HTML Between <head></head>tags*

Code: Select all

<script id="sbinit" src="https://startagencia.net.br/live/js/main.js"></script>
alexoliveira
 
 
Posts: 154
Joined: Fri Oct 01, 2021 5:12 am

Re: Help Script

Post by alexoliveira »

a thousand apologies bacon, and thanks for your support again
Post Reply