Extra ads spots/places on Mobile theme

Posted in: Newspaper
Post count: 96

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

Post count: 7

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.

Post count: 27744

Hello,

Unfortunately, to add ads in more place you need to make the changes in the theme files, and those files will be overwritten when you make the update, so you need to add them again.

Thank you for your understanding!

Post count: 96

Will there be an update soon?
Is the easiest way to just add an extra <div> in the mobile theme file?

Post count: 27744

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!

Post count: 96

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!

Post count: 27744

Hello,

Thank you for sharing this implementation with us, I’m sure it will help other users as well.

Have a nice day!

Post count: 3

Does this work for image ads or banners? It’s not an ads code, I just want to place banners anywhere on the Mobile theme

Post count: 96

Yes this works for any ad. If you use Advanced Ads pro plugin with the custom add placement option with the jQuery selector.

Post count: 96

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

Post count: 23

Please add this feature in the next update. We all need it.

Post count: 96

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

Post count: 96

Or how can I stop the mobile search button script from running?

Post count: 96

I am not editing the theme files

Post count: 27744

Hello,

Please let me know how you set the code for the button.
I saw you set the button inside the search form.

Thank you!

Post count: 96

I use an other plugin called Advanced ads pro to place the button from inside the search form.

Post count: 35449

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!

Post count: 96

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

Post count: 35449

Hi,
I see, I think that will be better to set the button only on this code
div.td-search-icon
Then there should be no problems to use a css to hide the search button
.td-search-icon #td-header-search-button
Let us know the results!

Post count: 96

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();
});

Post count: 96

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!

Viewing 21 posts - 1 through 21 (of 21 total)
The forum ‘Newspaper’ is closed to new topics and replies.