Hey, we use the mobile theme plugin our webste: https://www.revive.nl/
What is the best way to create extra ad spots/places for ads on the mobile theme. We want extra spots on the homepage and under the articles see screencast video: https://www.screencast.com/t/ux2spgIc
I’m having the same issue. I just changed my mobile theme to AMP and now I can’t place inline ads. I’m using ezoic and they have a chrome extension to place ads, but the AMP version won’t let me place ads mid paragraphs. I’m already put in the code in the theme panel and even that doesn’t work. Only a fixed amount of ads is available and that will definitely cause my epmv to drop.
Will there be an update soon?
Is the easiest way to just add an extra <div> in the mobile theme file?
Hello,
An update to the theme will be made this month, but I don’t know if this option will be introduced.
Also, you can check this topic about how you can add the ads https://forum.tagdiv.com/topic/multiple-ads-for-inline-article-ad/ and maybe can help you to achieve what you want.
Thank you for your understanding!
Hey,
I found a solution to add extra add spots in the mobile theme.
I use the Advanced Ads plugin with the custom add placement option with the jQuery selector.
For under articles I use this selector: div.td-related-span4:nth-of-type(10)
For the homepage this: div.td_module_mob_1.td_module_wrap.td-animation-stack:nth-of-type(11)
Have nice day!
Yes this works for any ad. If you use Advanced Ads pro plugin with the custom add placement option with the jQuery selector.
Under Theme panel -> Mobile theme -> Mobile ads
You can also place ads with html/css code on differant places on your mobile theme website.
With this generator you can convert images/gif into ads code -> https://www.html.am/html-generators/image-code-generator.cfm
I am trying to remove the search button on the mobile theme plugin.
Do you have have some custom css / code for me to hide the button.
I tried to hide it with this css:
.td-icon-search {
color: #fff0 !important;;
height: 1px;
width: 1px;
;
}
But search menu still opens sometimes when you click on it.
I cant use display: none because then the other button I place there is also hidden.
See: https://somup.com/c3eiqMTvlD
Or how can I stop the mobile search button script from running?
I use an other plugin called Advanced ads pro to place the button from inside the search form.
Hi Revive the Netherlands,
I think that the problem is because the code that you set using the Advanced ads pro is under the search link -> https://i.imgur.com/sKBrwHm.png this problem can be avoided if you can set like this https://i.imgur.com/PhtMUK3.png
Can you let us know how the code is implemented? Some screenshots will help a lot!
Thank you!
This is the JQuery selector I am using to place the button there:
div.td-search-icon > a#td-header-search-button > i.td-icon-search
Thank you for your answer. Sadly I could not change the selector.
I found an other fix:
jQuery("#td-header-search-button a").click(function(e) {
e.stopPropagation();
});
There information. I was able to change the selector so I am using now the div.td-search-icon selector.
And this code to hide the search button:
.td-icon-search {
display: none;
}
It works fine
Thanks for help!