- NewspapertagDiv AMP Plugin Tutorial
- ApiPractical example – How to add a new Block and Module
- NewspaperTrack Subscription Sources with Locker URL in Opt-In Builder
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperCredit System
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to use the Posts List shortcode
- NewspaperUser review system
- NewspaperCustom Fields Support
- NewspaperHow to generate Facebook App ID
- NewspaperHow to insert a block inside the content of a post
- NewspaperModal Popup
- NewspaperPayPal Setup
- NewspaperLink Tracker
- NewspaperLockers
- NewspaperGeneral Options that May Interfere with the Newspaper Theme
- NewspaperAdd Cryptocurrency Price Ticker Widget
- NewspaperPosts Loop Element
- NewspaperThe Newspaper Mobile Theme: Introduction
currently, I have this block http://www.screencast.com/t/i9deozotCy
I want this type both Related articles & more from Author at the same block http://www.screencast.com/t/EY6N8X4o1N
Thanks calin, but it is a bit confusing.
The theme panel says we can use auto ads, and am pretty sure I read in one of the tutorials that we can now use auto GA ads in amp in theme panel. Which is why we added the GA auto ad code to our AMP theme panel.
“ADSENSE AUTO ADS FOR AMP
This ad appears below the menu.”
Ok, found the problem, we had put in normal auto ad code in this menu.
In google adsense it is saying to paste two scripts, however the box in newspaper theme panel asks for just one script.
This what the Adsense account says for AMP auto ads:
Step 2: Copy and paste this script in the head tag of your AMP HTML
Step 3: Copy and paste this ad code in the body of your AMP HTML
SO in the newspaper amp auto ad box, should we just paste the code from step 3 of adsense?
Regards
-
This reply was modified 7 years by
spu.
Is it necessary to use the mobile plugin together with the amp plugin in version 9.5? Or just the amp plugin?
Problems in ads after theme update and plugins.
Hello, how are you?
After I update the theme of my site, and the plugins made available by the theme, I noticed that it is not working properly … The banners in mobile and amp mode are not appearing, could you check for me? My site is http://www.portalpadom.com.br and also check inside the posts …
thank you
Problemas em anuncios após atualização de tema e plugins.
Olá tudo bem?
Após eu atualizar o tema de meu site, e os plugins disponibilizados pelo tema, percebi que ele não esta funcionando corretamente… Os banners no modo para celular e amp não estão aparecendo, você poderia verificar para mim? Meu site é http://www.portalpadom.com.br e também verifique dentro dos posts…
obrigado
Hi,
is there a way to disable the footer logo, menu and related articles section on AMP posts/pages?
I have the same issue. The problem isn’t deleting “Elements”, it’s deleting the empty Rows and Columns which keep building up on a page.
The first of the four picture examples Calin shared looks like the proper step to take to remove columns/rows, but the “Delete Row” button doesn’t appear at the bottom left of the “Content -> General -> Row” tab in on the left side of the screen.
I’m using 9.6 and don’t see that option for removing Rows even though everything else looks identical.
On mobile, desktop.
Also, is it possible to get them for amp?
I am using version 9.5.
Thanks
Ejemplo: si instalo newspaper Black version demo, lo puedo utilizar de manera normal como si fuera la version fondo blanco que adquirí? o solo es prueba y sus funciones no estan al 100% ? se entiende?
Traductor google
Example: if I install newspaper Black version demo, can I use it in a normal way as if it were the white background version that I purchased? or is it just a test and its functions are not 100%? it is understood?
Hello again. The “events” are actualy a custom post type (called “tribe-events”) and they use their own page template. Is there a function I can insert so that the counter can appear?
For reference, here is the default, uncustomised template file for a single event (called “single-event.php”):
<?php
/**
* Single Event Template
* A single event. This displays the event title, description, meta, and
* optionally, the Google map for the event.
*
* Override this template in your own theme by creating a file at [your-theme]/tribe-events/single-event.php
*
* @package TribeEventsCalendar
* @version 4.6.19
*
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
$events_label_singular = tribe_get_event_label_singular();
$events_label_plural = tribe_get_event_label_plural();
$event_id = get_the_ID();
?>
<div id="tribe-events-content" class="tribe-events-single">
<p class="tribe-events-back">
"> <?php printf( '« ' . esc_html_x( 'All %s', '%s Events plural label', 'the-events-calendar' ), $events_label_plural ); ?>
</p>
<!-- Notices -->
<?php tribe_the_notices() ?>
<?php the_title( '<h1 class="tribe-events-single-event-title">', '</h1>' ); ?>
<div class="tribe-events-schedule tribe-clearfix">
<?php echo tribe_events_event_schedule_details( $event_id, '<h2>', '</h2>' ); ?>
<?php if ( tribe_get_cost() ) : ?>
<span class="tribe-events-cost"><?php echo tribe_get_cost( null, true ) ?></span>
<?php endif; ?>
</div>
<!-- Event header -->
<div id="tribe-events-header" <?php tribe_events_the_header_attributes() ?>>
<!-- Navigation -->
<nav class="tribe-events-nav-pagination" aria-label="<?php printf( esc_html__( '%s Navigation', 'the-events-calendar' ), $events_label_singular ); ?>">
<ul class="tribe-events-sub-nav">
<li class="tribe-events-nav-previous"><?php tribe_the_prev_event_link( '<span>«</span> %title%' ) ?>
<li class="tribe-events-nav-next"><?php tribe_the_next_event_link( '%title% <span>»</span>' ) ?>
<!-- .tribe-events-sub-nav -->
</nav>
</div>
<!-- #tribe-events-header -->
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- Event featured image, but exclude link -->
<?php echo tribe_event_featured_image( $event_id, 'full', false ); ?>
<!-- Event content -->
<?php do_action( 'tribe_events_single_event_before_the_content' ) ?>
<div class="tribe-events-single-event-description tribe-events-content">
<?php the_content(); ?>
</div>
<!-- .tribe-events-single-event-description -->
<?php do_action( 'tribe_events_single_event_after_the_content' ) ?>
<!-- Event meta -->
<?php do_action( 'tribe_events_single_event_before_the_meta' ) ?>
<?php tribe_get_template_part( 'modules/meta' ); ?>
<?php do_action( 'tribe_events_single_event_after_the_meta' ) ?>
</div> <!-- #post-x -->
<?php if ( get_post_type() == Tribe__Events__Main::POSTTYPE && tribe_get_option( 'showComments', false ) ) comments_template() ?>
<?php endwhile; ?>
<!-- Event footer -->
<div id="tribe-events-footer">
<!-- Navigation -->
<nav class="tribe-events-nav-pagination" aria-label="<?php printf( esc_html__( '%s Navigation', 'the-events-calendar' ), $events_label_singular ); ?>">
<ul class="tribe-events-sub-nav">
<li class="tribe-events-nav-previous"><?php tribe_the_prev_event_link( '<span>«</span> %title%' ) ?>
<li class="tribe-events-nav-next"><?php tribe_the_next_event_link( '%title% <span>»</span>' ) ?>
<!-- .tribe-events-sub-nav -->
</nav>
</div>
<!-- #tribe-events-footer -->
</div><!-- #tribe-events-content -->
Hi,
I would like to change two things in the mobile front page.
https://www.dropbox.com/s/ctfsm65hmva9rzw/KakaoTalk_Photo_2019-03-14-02-55-56.jpeg?dl=0
1. The text(red square): I would like to have “Latest Posts.” turn into “News”
2. The image(red square): is it possible to delete images so that I can only see Title & Excerpts from mobile front page?
I do understand that currently the page needs to be edited by “Mobile Editor” for mobile screen.
Since I have zero coding knowledge, I would like to know if there’s a more friendly interface where I can make adjustments.
Thank you,
Samuel
Hi,
I have gotten some messages from people letting me know that my website (danielpaulchristie.com) has been looking strange on mobile. I tried to deal with the issue but now I have a mess.
I tried some things with the AMP plugin, which made matters worse, so I deleted the AMP plugin because it was working fine before this. This has not resolved the issue. In an incognito window, this is my home page (https://prnt.sc/mxeim1) and an example post (https://prnt.sc/mxejck), which I can see in my browser as (https://prnt.sc/mxek16) and (https://prnt.sc/mxekhe) respectively.
I’m not sure what to do.
Thanks,
Daniel
Ok, in this case I’ll wait to update to version 9.6.1 or similar. Please, consider all the problems with no URL/AMP at Google Search!
With 9.6, we’re having to use Classic AMP, but now for hundreds of pages we’re getting the Google Search Console error of “Content mismatch: Missing embedded video”.
Example:
https://www.vitalthrills.com/2018/10/16/gindelwald-credence-fantastic-beasts-sequel/amp/
https://www.vitalthrills.com/2018/10/16/gindelwald-credence-fantastic-beasts-sequel/
Is there a way for Google to still recognize those posts have a video without manually having to go in and change the post template?
Hi,
Unfortunately we did not tested our theme with WP Fastest Cache plugin, so we can not say way this provide the amp fails
Please check with other browses too, is possible to be a cache problem , here is how I see your website on desktop -> https://www.screencast.com/t/7GApiCtmfa and like so in mobile/am version -> https://www.screencast.com/t/KwHjZJYiozV
Thank you!
Thank you Simion, we’ll be looking forward to it.
BTW, I know that you Disqus is not a top priority, but please, take a look, it’s an AMP compatible plugin that’s also a MUST for any solid-traffic news site
https://blog.disqus.com/disqus-now-compatible-with-google-amp
Best.
Hi,
Is look like you have a code set in amp that is not longer use, so if you have set some code for auto ads in amp please remove it, also please add the fix that I provide you and this https://prnt.sc/mx790e will be fix too.
Thank you!
I changed all the setting.
1. amp enabled on the mobile theme: http://prntscr.com/mxc46u
2. Disable admin bar on AMP pages: http://prntscr.com/mxc4ft
3. add line: http://prntscr.com/mxc5hi
after changing then getting this error: http://prntscr.com/mxc5zo
also amp pages only working on desktop not on mobile.
-
This reply was modified 7 years by
Sawai Singh.
Hi,
This case was taken in consideration by team developers, also I think that the coming update will come with some changes for mobile/amp.
Thank you!
Hi Catalin,
Correct, that part shows up perfectly fine, however, if you click on any of the categories at the top, for example the one that says “Belleza” or “Ciencia” you will notice no images are being displayed.
Please check out this Screenshot
https://www.dropbox.com/s/h6bv6zi0utk32tx/NoImages.JPG?dl=0
Thanks
Hi,
Please make sure that you activate the amp from mobile theme -> https://www.screencast.com/t/6m5bxthx8ec and you check the box from general Amp -> https://www.screencast.com/t/WEyXhNzY
Please provide some screenshots with the settings that you made for mobile and amp also with the code set and the errors that you get.
Thank you!
Hi,
Yes, all that layout out can be make with Newspaper v9.6, also I check that version and is seams that on beebom.com are a lot of custom made, also the v7.2 is very old and unsecured, we can not longer provide it, sorry!
Mobile Theme: Automatic Optimization for Mobile with Newspaper Theme -> https://tagdiv.com/mobile-theme-automatic-optimization-for-mobile-newspaper-theme/
How to Make an AMP ready Website with Newspaper Theme -> https://tagdiv.com/amp-newspaper-theme/
Also soon will be relist a new update that will offer some more control over amp and mobile possibilities.
Thank you!
@gossiponthis You would have to redo the modifications even if the theme still used the old AMP plugin. After a theme update the theme plugins have to be updated, older plugins will automatically be deactivated.
@kumushka The current functionality with AMP and mobile theme may change, we are looking for solutions to allow more flexibility. Changes may be made in this matter starting with the next update.
Hi,
AMP is loading but there are a couple of issues – http://prntscr.com/mx9zlh
That first issue could be caused by plugins, there were similar cases before you could check this as a first step.
The second seems to refer to auto ads. How exactly are you adding the AMP auto ads code? Add it in the dedicated section – http://prntscr.com/mxa4zg
Let me know.
Thanks
I think the main problem of Newspaper Theme is “menu”.
The menu is loading after the page, after too many elements. This is a big problem specially, when the Internet is SLOW and in mobile (I don’t want to complicate my life and use AMP).
When the Internet is slow, if you touch the hamburger menu stay stacked and avoid the loading of page.
Anyway, hopefully there will be a solution to this in future releases..
Hi,
@borvazq quite unusual, the header seems to be invisible on mobile
– http://prntscr.com/mx94ch
The mobile theme and AMP is loading, the issue is with the header from what I can see. It is there but it has a white background and icon color. Check what colors are used here
– http://prntscr.com/mx9714
Try setting them to default or use a different color than white, if a white color is used. Let me know.
@blyerts I have checked the website, the menu seems to open alright
– http://prntscr.com/mx98nu
But the menu items don’t direct anywhere, the links are not valid on desktop and on mobile. What exactly are those menu items supposed to do? Have you added them properly when you created the menu, if those are pages add them as pages, if they are categories add them as categories
– http://prntscr.com/mx9arv
Thanks