Thank you Simon so much for helping me.
Now I have to study a little bit about the new theme integrations, included the cloud library, before bothering you again đ
We can close this topic.
Have a nice day and thanks again.
Thank you Simon
I did noticed that Classy homepage was very similar when not even identical to Erotic, but the post-pages are very different. I hope I will be able to reproduce the design of posts in the same way it was in Erotic Magazine.
It could be a great help if you could confirm the following things to do:
1 – Newspaper > Install Demos > Classy Magazine (only settings!)
2 – Theme panel > Custom Code => Replace CSS class .td-erotic with .td-classy
Last question
If I open the file Newspaper8 > includes > demos > erotic > demo_style.css there are 504 lines of CSS code.
If I open the file Newspaper9 > includes > demos > classy > demo_style.css there are only two lines of CSS code.
Same with the demo_style.less file.
Shall I be worried not to find the customization of the Erotic Magazine Demo by installing Classy Magazine?
Best Regards
Fabio Baldanello
Hi showsarg
I’m using Newspaper and I updated from 8 to 9.
I don’t even have the “cloud templates”, never had. When I started the website I imported a demo that was called Erotic (Newspaper > Install Demos). After installing there where a lot of things imported like classes (.td-erotic) and so on. Now it’s all lost and I even can’t find the demo in the “Install Demos” session. In fact if I browse the theme I can see that in Newspaper8 I had Newspaper > includes > demos > erotic. In Newspaper9 there is no erotic folder in demos.
I really don’t know what to do, any help would be really appreciate.
Thank you.
Hi,
Unfortunately this is not helping. I was hoping to have a better support, like a function to add in my functions.php, instead to be redirected to an useless page.
From a big team like yours is a little bit disappointing.
Let me know if you are willing to solve this issue.
Bye, have a good day
Hi, great theme but the possibility to exclude the current post from the recent posts in a Newspaper should be a priority.
Iâm trying with e function that works with the Wp Recent Posts, but Iâm not able to make it work with the tagDiv widget:
function be_exclude_current_post( $args ) {
if( is_singular() && !isset( $args[âpost__inâ] ) )
$args[âpost__not_inâ] = array( get_the_ID() );
return $args;
}
add_filter( âwidget_posts_argsâ, âbe_exclude_current_postâ );
I think the problem should be in replacing âwidget_posts_argsâ with the right wording for for the tagDiv widget.
Any hint?
Hi, great theme but the possibility to exclude the current post from the recent posts in a Newspaper should be a priority.
I’m trying with e function that works with the Wp Recent Posts, but I’m not able to make it work with the tagDiv widget:
function be_exclude_current_post( $args ) {
if( is_singular() && !isset( $args[‘post__in’] ) )
$args[‘post__not_in’] = array( get_the_ID() );
return $args;
}
add_filter( ‘widget_posts_args’, ‘be_exclude_current_post’ );
I think the problem should be in replacing ‘widget_posts_args’ with the right wording for for the tagDiv widget.
Any hint?