MortenPeterAndersen
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple News] Removing author, comment, and likeHave you cleared the cache?
In my Chrome browser everythings is fineForum: Plugins
In reply to: [Simple News] Removing author, comment, and likeMaybe you need a plugin like this plugin
https://da.www.ads-software.com/plugins/simple-custom-css/Forum: Plugins
In reply to: [Simple News] Removing author, comment, and likeHi @kmwhite87
Its your theme that handles this …. but at quick solution is to add this css to a custom css.post-type-archive-news .post_author, .post-type-archive-news .dots, .post-type-archive-news .post_comments, .post-type-archive-news .blog_like, .single-news .post_author, .single-news .dots, .single-news .post_comments, .single-news .blog_like { display: none; }
hope that helps
??
MortenForum: Fixing WordPress
In reply to: Installing WordPress when I have DrupalBoth Drupal and WordPress is able to do what you need!
But Drupal user management is superior to WordPress.
The newsletter is so much better to do in MailChimp ore similar, don’t use Drupal or WordPress newsletter solutions.Forum: Plugins
In reply to: [Simple News] Shortcode [news cat=1] is not working in Category Description??
Forum: Plugins
In reply to: [Simple News] Shortcode [news cat=1] is not working in Category DescriptionSorry …. a better solution … I think
function simple_news_show_cpt_archives( $query ) { if( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) { $query->set( 'post_type', array( 'post', 'nav_menu_item', 'news' )); return $query; } } add_filter( 'pre_get_posts', 'simple_news_show_cpt_archives' );
Print that in the news.php file at the bottom of the page ….
Source: https://wpbeaches.com/show-custom-post-types-category-archive-page/
Forum: Plugins
In reply to: [Simple News] Shortcode [news cat=1] is not working in Category Descriptionmaybe this is what you are looking for
https://www.ads-software.com/plugins/enable-shortcodes-inside-widgetscomments-and-experts/
Forum: Plugins
In reply to: [Simple News] Shortcode [news cat=1] is not working in Category Descriptionhmmm … I will try ??
Maybe a quick solution to your problem is to create some normal pages and use them for News Cat Archive
Forum: Plugins
In reply to: [Simple News] News Expiration??
Forum: Plugins
In reply to: [Simple News] Shortcode [news cat=1] is not working in Category Descriptionmaybe I understand you now …. You are placing a short code in a Category description … in the editor.
Yes this will never work … not supposed to …Forum: Plugins
In reply to: [Simple News] Shortcode [news cat=1] is not working in Category DescriptionYes this will print all news in category id=3
Forum: Plugins
In reply to: [Simple News] Shortcode [news cat=1] is not working in Category Description“.. in Category Description …”
Sorry I don’t understand what you mean?do you have URL where I can see/understand the problem?
Forum: Plugins
In reply to: [Simple News] News ExpirationThis date thing is a little tough … you are not forgotten … but I′m not sure how to code it …. which plugin are you using to handles the pub date?
Forum: Plugins
In reply to: [Simple News] Space between excerpt and ‘More News’ linkNew improved version with your suggestion ??
Forum: Plugins
In reply to: [Simple News] Space between excerpt and ‘More News’ link??
a great suggestion – if I can figure it out … and still keep everything simple …. I will look into it
Thanks
Morten