+3 votes
in CMS Tips by (71.8k points)
retagged by

When I click Save button, the saving icon is just circling but never finishes.

2 Answers

+1 vote
by (56.7k points)
selected by
 
Best answer

Second method -

1. Login as admin and open admin page.

2. Click on Appearance -> Themes -> Widgets -> Screen Options -> Enable accessibility mode

3. After step 2, click on Add button next to Text option. This will allow you to add the adsense code.

0 votes
by (71.8k points)
The problem seems to be related to the first line of the adsense code "<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>". I am not sure why it's not working? But to fix it, just put the first line of the code as the second line and it should work fine. I was able to fix it putting the first line of the code as the second line like this.

<ins class="adsbygoogle" style="display:inline-block;width:300px;height:250px" data-ad-client="ca-pub-XXXXXXX" data-ad-slot="XXXXXX"></ins>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>

...