Unfortunately this bug was my last drop with frustration about Newspaper theme. Sometimes it’s so hard to do something simple change in the design, and go through all these issues.
Good bye, tagdiv!
Hmm, it worked for me few days ago, but not today. And nothing has changed with my plugins and theme.
OK, thank you!
Can you at least point what should I change in the database to change the style?
Something like: find all ‘td_post_template’ string in the wp_postsmeta > td_post_theme_settings
Thank you! Looks like I added “display: none;” for some reason to the child-theme looong time ago, I even don’t remember why.
I deleted the “fix” and looks like everything is valid now.
Thank you again for helping finding the source of the problem!
Hi! I’ve got 245+ errors same type “The inline âstyleâ attribute is not allowed in AMP documents. Use âstyle amp-customâ tag instead” after update to 8.7.5 and switching from WordPress AMP plugin to TagDiv AMP 1.2
Examples: https://magazeta.com/2010/02/lingqi/amp/
https://magazeta.com/2016/02/medicine-archive/amp/
I’m using latest plugin (1.2) available. HOw can I fix it?
Hi Margherita,
Did you solve your problem?
I’m planing to use same plugin + add-on to have same effect as QZ.com has: load previous post as soon as user scrolls down to the bottom.
Will be cool to have such feature by default
Agree with commenters above. Please add this feature!
Have same questions. I use theme block (Block 9) to show CPT “jobs”, but I would like to also filter this posts by custom taxonomy “industry”.
In Block 9 Settings > Filter, I can see “filter type”, but nor Categories, nor Tags works for me. I enter my custom taxonomies ids into “show the following IDs” field, but it doesn’t work.
Thanks. I think I fixed it after the composer update.
What about Multipurpose plugin. Is multipurpose plugin is a must-install plugin? (mandatory?)
Have same issue here on Newspaper 8.7 (after update from 8.5). Will try the update of td-composer. Anything else I need to update except theme files?
Hi! I have same problem on my websites after update from 8.5 to 8.7
Hi!
I have a special landing page for CPT, https://magazeta.com/news/
And using “Pagebuilder+Latest Articles+Pagination” template for this.
In Latest Article > Filter settings I entered my CPT name, so it shows latest CPT posts, but the pagination doesn’t work (returns 404):
https://magazeta.com/news/page/2/
Is there any work around? Something to fix in fucntions.php or by cloning page template?
Thank you!
That’s what I did in the end đ
jumphr,
I suggest you not to use Chinese in URLs, since it’s might be not very good for SEO, and also people with different device/browser might experience problems to accessing this URLs. Also your server/hosting settings should support these kind of urls.
Options:
1. You can manually change all urls to pinyin/English
2. Use some wordpress plugins to convert Chinese URL to Pinyin
3. Change URL structure to use post ID instead of slug.
Hi ineedsolutions,
Did you manage to solve your problems with Custom Post Types and Mobile Theme plugin?
Mine CPTs keeps redirecting to homepage on mobile (but work perfectly on desktop). Looking for any help…
Hi nateb2127!
Did you solve your problem with CPT & Mobile Theme plugin?
I created post type “outside” with slug “news”, and they do work on Desktop but on mobile single posts from this CPT redirect to homepage.
Have you experienced such problem?
If you have Static Homepage, you can try (but it’s quite unofficial) to add this short code to the Mobile page editor (below your usual Desktop Visual editor):
[td_block_big_grid_mob_1 installed_post_types="your-post-type-name-here"]
This short code supports other module shortcode parameters (like offset, sorting), but not “limit” (it will be always 3 posts). But you can tweak it in the themes/Newspaper/mobile/includes/shortcodes/td_block_big_grid_mob_1.php file
find
const POST_LIMIT = 3;
and change the number to what you like.
I have the same problem. My custom post type function is like this:
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_admin_bar' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'news' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => 5,
'menu_icon' => 'dashicons-rss',
'taxonomies' => array( 'post_tag' ),
'exclude_from_search' => false,
'supports' => array( 'title', 'editor', 'comments', 'thumbnail', 'author' ) // 'comments' depricated
);
register_post_type( 'outside', $args );
}
add_action( 'init', 'outside_custom_init' );
They do work on Desktop, but not on mobile (redirecting to homepage):
https://magazeta.com/news/ofo-moscow/
https://magazeta.com/news/alipay-microapps/
-
This reply was modified 8 years by
mayuxi.
One more vote for Telegram!
OK, I donwgraded to 6.3.3 and my child theme. Still waiting when tagDiv will fix the new version.
it was bad idea to update…
Looks like mobile menu and mobile search are visible on PC version, that’s why PC homepage is broken.
Also slider disappeared …
Please help
Problem has been solved.
If you are interested, the problem was in single_template_7.php file, which I copied to child theme to modify. But since the new version of Newspaper, the javascript function was changed/renamed and JS-call inside this file (single_template_7.php) was outdated.
I think it’s very bad idea to put javascript codes inside customizable files… I suggest developers to put this call somewhere else, in the core, to improve child-parent and old/new versions compatibility
