6431 comments found.
Hello, maaf nih banyak nanya hehe, gimana caranya Icon pada menu, bisa tampil/muncul juga pada versi mobile?
Icon menu yang mana iya bro?
Gimana cara memperkecil ukuran font pada versi mobile?
Coba pake Yellow Pencil plugin bro. Udah include kok, tinggal install dan aktifin aja, trus font size nya bisa di setup di live style editornya.
Terima kasih
I’ve run the newspaper import and it says it has only 9 posts to import. Some of my posts have thousands of post views. I’m using Newspaper 9.2.2
Hi misterman,
Please try to put this code below to the functoins.php file.
add_filter( 'jnews_get_total_view', function( $total, $post_id ){
$data = get_post_meta( $post_id, 'post_views_count', true );
if ( ! empty( $data ) ) {
$total = $total + (int) $data;
}
return $total;
} );
Thank you
Hi, I added this to my child theme but have an error.
Warning: Missing argument 2 for {closure}(), called in /home/fertil39/staging/1/wp-includes/class-wp-hook.php on line 288 and defined line 12.
<?php
/** * Load parent theme style */ add_action( ‘wp_enqueue_scripts’, ‘jnews_child_enqueue_parent_style’ );
function jnews_child_enqueue_parent_style() { wp_enqueue_style( ‘jnews-parent-style’, get_parent_theme_file_uri(’/style.css’)); } add_filter( ‘jnews_get_total_view’, function( $total, $post_id ){ $data = get_post_meta( $post_id, ‘post_views_count’, true ); } );
if ( ! empty( $data ) ) {
$total = $total + (int) $data;
}
return $total;
Hi misterman,
Please try to replace with this one below:
add_filter( 'jnews_get_total_view', function( $total, $post_id ){
$data = get_post_meta( $post_id, 'post_views_count', true );
if ( ! empty( $data ) ) {
$total = $total + (int) $data;
}
return $total;
}, 99, 2 );
Thank you
Thanks. I’ve added that OK but it still only says I have 9 posts to migrate.
Hi misterman,
For the migration, we only migrate the post that needs to migrate.
Thank you
Ok thanks. What about the post counts I already have?
OK don’t worry. When I installed the view count plugins/shares I can see the counts and shares.
Let me know if you have further question.
Thank you
Hi Guys, Can we insert ads inside post list?
Hi chanwit,
Can you tell me more detail about post list that you mean on this thing? Just want to make sure.
Thank you
I updated the theme and plugins and my site is now showing a “This page isn’t working. HTTP ERROR 500”
I updated php.ini limits and I can’t figure out what is wrong. All my posts are not showing. Please help.
I found that disabling the AMP extender plugin solved my issues.
Hi oyohan,
It seems i will need to do further investigation on your website. Please enable WP_DEBUG mode on your website. https://codex.wordpress.org/Debugging_in_WordPress
Also, please provide me your site url.
Thank you
Hello, I have an issue with how small images display on single post page. It seems to enlarge the image making the image look blurry. Is there a way I can make the feature image on the single post page be its original size. For example, if I upload an image that is 290×290, can it be displayed as that size on the single post page?
Thanks and regards
Hi aquagd,
It seems you will need to adding custom CSS to fix this issue. Can you provide me your single post url for further checking?
Thank you
Link: https://websites.gd/nowapp/?p=245
As you can see, the image is has gotten bigger even thought the original size is 242×248.
Hi aquagd,
I’ve been checking your website previously but it doesn’t load properly on my side. It seem you’re using JNews Speed plugin in there, right? If yes, can you please disable it for a while?
Thank you
The Speed plugin has been disabled. You can go ahead now
Hi aquagd,
Thanks, i’ve been checking your website before and i see the problem. In this case, this is default behavior from our theme. To fix this thing, it will need to do some changes. Can you please post your question on our support forum http://support.jegtheme.com/forums/forum/jnews/ because we will need further investigation in there and we may also need FTP access to your server.
Thank you
Ok, we have create a question on the forum
Hi aquagd,
Our support team will check it out asap.
Thank you
Bagaimana settingan wpbakery Builder, agar jarak antar row tidak terlalu jauh. https://www.dropbox.com/s/7hkh0pn4g0wcdo6/ffff.jpg?dl=0
Halo fahrihira,
Rubah di row settingnya bro. Nanti setting aja di margin topnya bikin jadi minus, misalnya -30px.
Terima kasih
Bagaimana saya bisa memperbaharui plugin WPBakery Page Builder, sedangkan plugin terus meminta diperbaharui?
Halo fahrihira,
Untuk saat ini kita masih WPBakery 5.6 di JNews bro, kemungkinan kita bakal update WPBakerynya di next update JNews.
Terima kasih
Hi,
I am unable to activate ads block using customize, whenever I select script option and paste script code and then click on publish nothing happens. On refresh it shows ad block option turned off.
Hi nerdstruck,
Can you tell me more detail which ads block that you mean? Just want to make sure.
Thank you
So, I am trying to use media.net ad unit script with Inline Content 3 block. I enable it, select script option and copy paste code. After that I click on publish and refresh the page. Nothing happens and Inline Content 3 block stays disabled. I have tried with below article content block as well. Cleared caches as well. Tried everything only advertisement is causing the issue.
Tried Google adsense code as well. I think only script option is causing the issue. If I select Image, Google Adsense and Shortcode any selected ad block stays enabled.
Hi nerdstruck,
For this case, i will need to do further investigation on your website. Can you post your question on our support forum here http://support.jegtheme.com/forums/forum/jnews/? We may need to login access to your website.
Thank you
Hello, I created a custom post template with Elementor but it seems like the post title is not responsive. Long words are cut off and are messing up the page Layout.
Example: https://ibb.co/2ss3rMCHow can i get the post title responsive to fit the screen?
Thank you!
Hi Traveldude,
Can you provide me your site URL for further checking? Also what kind of mobile device that you use for testing?
Thank you
URL: https://www.happytravels.de/reisetipps/die-beste-auslandskrankenversicherung/
For now I kind of fixed it using this custom css: @media (max-width: 1024px) { .jeg_custom_title_wrapper .jeg_post_title { font-size: 28px; }}
However this does not fix it completely. Long words are still too big for the screen.
Tested on different Iphones and Android devices.
Thank you
Hi Traveldude,
Please try to replace the code above with this one below:
@media (max-width: 1024px) {
.jeg_custom_title_wrapper .jeg_post_title {
font-size: 28px!important;
word-break: break-word;
}
}
Thank you
Working great, thank you!
You are welcome Traveldude 
Hello my friends! What about new updates? Any date?
Hi vanski91,
At the moment we can’t confirm yet for the update release date, but currently, we still working on the theme update. Let me know if you have further questions.
Thank you
Hi, I have some pre-sales questions
1. Does the auto load post just load a new post or does it update google analytics as well?
2. Are there a lot of plugins for this theme that need to be installed. Obviously I’m worried about speed.
3. The translation plugin does it create new pages or can you have domain.com/es for example?
Thanks.
Hi misterman,
Thanks for your interest in JNews theme.
1. Of course, it will update Google Analytics as well.
2. We have several plugins that having a specified feature and you only need to enable the plugin that you really need. It will increase the speed instead. It’s why we don’t merge all feature into one plugin because every website will have different needed.
3. If you mean for multi-language, you can use the Polylang plugin or WPML plugin. JNews compatible with both plugin and you can create a new subdomain for each language.
Let me know if you have further question.
Thank you
Thanks, do you also have an author list page?
Hi misterman,
At the moment we don’t have a certain feature for author list page, but we have a demo for author list page here https://jnews.io/tech/our-team/. So i think it’s possible to create an author list page with JNews.
Thank you
Thanks, that’s what I needed.
Hope you can be our customer as soon,
Regards
Yes. For the auto load post does it change the in real time view or somewhere else?
Hi misterman,
We use ajax handler to handle the view counter and its real-time process. Also, since using ajax handler, it won’t affect your site speed.
You can check the autoload post demo on here https://jnews.io/news/2017/02/05/the-company-behind-vespa-built-a-cargo-robot-that-follows-you-around/
Thank you
Thanks, what I meant to ask was if you load your first you will see this in Google Analytics, when you scroll and the next post loads does that update GA so you see the new page view?
Sorry more questions. We currently use the Newspaper theme. Do we need to run the import or do you have any documentation on why import? Does it import the page views on post?
Hi misterman,
Yes, on the next post load it will update the page view on that post.
You can use the importer plugin to import especially for post data such as video featured image, review, page views and etc.
Thank you
OK thanks. I’m still confused on the auto load post. Where does it update Google Analytics to show another page view?
I’m also going to buy this theme and move my website over I just had more questions about the auto load post.
Could you help me create this page https://jnews.io/tech/our-team/
Hi misterman,
Welcome to our community 
Yes of course. May i know what kind of builder that you use in there? Elementor or WPBakery?
Thank you
We are using WP Bakery
Hi misterman,
Please check this file https://www.dropbox.com/s/p3hk4brmd1dr6pj/our_team_page?dl=0. You can copy the content of this file as “our team” content page.
Thank you
Thanks that worked perfectly.
You’re welcome misterman,
Thank you
Hi could you please add the link to the our team page in Elementor. I don’t know what I’ve done with it.
Hi misterman,
Did you mean the content of “our team page” for Elementor? just want to make sure.
Thank you
Yes in Elementor you created a droxbox link but it’s expired.
Hi misterman,
Unfortunately, at the moment we don’t have Elementor version for that page. Currently only available in WPBakery version. You may need to replicate the page on Elementor. For WPBakery you can check it out here https://www.dropbox.com/s/r35ogewu0pplj5h/team.txt?dl=0
Thank you
Hi! I don’t find the shortcodes in the documentation.
Hi danielrijo,
May i know which shortcode that you mean? Just want to make sure so i can easily to help you out.
Thank you
Halo selamat siang, saya ingin merubah logo faviconnya dimana ya? terima kasih
Halo Anas2015,
Coba set di Dashboard > Appearance > Customize > Site Identity > Site Icon.
Terima kasih
Hello,
I finally installed the theme on my site - Looks great but I'm having an issue with my single posts. Instead of showing a single post it shows multiple, I'm not sure how to fix the issue?
https://pinaynomad.com/thailands-best-places-for-digital-nomads-and-expats/
Hi TheNomader,
Please try to disable JNews Autoload Post plugin. It will disable autoload post at the bottom area. Let me know if you need further help.
Thank you
Hi Guys, I need urgent help, I am going to use Newspaper Migration tool my question is will it import all the data e.g. Featured Video, SubTitle, Post Views, Reviews etc.
Also during my testing I found the Review Posts in AMP don’t generate correct JSON-LD data example: https://jnews.io/default/2017/01/07/macos-sierra-review-mac-users-get-a-modest-update-this-year/amp/ this is a review post but as AMP work just like other article.
I did some testing and found “Subtitles” and ” Post Views” are not imported from the newspaper theme… Can you please provide me a patch for this fix? I need move a big website over 5k posts
Any updates?
Hi businesscatalyst,
1. For migration, yes sure, it will migrate featured video, subtitle, post views, reviews and etc. If you get a problem, please provide me with an example for further checking.
2. For the JSON-LD on the AMP page, currently, we’re using the default structure from AMP plugin. We will take a look at this thing.
Thank you
Thank you for the reply!!!! I did a test run on the staging website and found Videos were converted but Subtitles, Post Views and Primary Category was not imported.. I run the test on 900 posts. I deleted the staging website this morning but if you want I can setup again.. btw, I check the code also not able to find the post views sub-titles in the converter plugin.. Sorry to say but are you Sure Subtitles, Post Views and Primary Category are imported???
Hi businesscatalyst,
It seems we need to do further investigation on your website. It would be better if you can create again the staging site so we can check it directly the problem.
Also, you may need to provide me login access into the staging site. Please post your question into our support forum here http://support.jegtheme.com/forums/forum/jnews/ and you can provide private information in there. Don’t forget to check Set as private reply option on the below area.
Thank you
Hey, setting up the staging website is not possible as we have a big big website. We did test by install newspaper theme with demo data and tried your migration plugin SUB-TITLES, VIEWS and Primary Category was not imported. The developer check the code of the plugin and did not find any code/function importing the above!!! Can you please update your plugin or let us know how to import these settings its super important to us
Hi businesscatalyst,
Please try to replace this file ”/jnews-migration-newspaper/class.jnews-migration-newspaper.php” with this one here https://www.dropbox.com/s/ewt0q4e6iiwynet/class.jnews-migration-newspaper.php?dl=0
Also, you don’t need to re-run the migration.
Thank you
Thank you so much!!! we tested the file and here are the results: (1) Post views imported successfully (2) Subtitle Imported but not visible on the Post Edit Screen (after the title bar sub-title field is empty) but sub-title showing on the front-end (3) Primary Category seems not imported because we can see in the backend or on the frontend.
Primary Category.. We can’t see
Guys, any update?
Also on side note we are getting this error TGM_Plugin_Activation::do_plugin_install() “WP Product Review Pro Add-on Bundle” can’t work with your theme
As much as I love this theme… I am sorry to say this theme required some serious bug fixing guys… I found a great list of issues how and where should I send? Some require really urgent urgent response!
Hi businesscatalyst,
In this case, please post your question on our support forum here http://support.jegtheme.com/forums/forum/jnews/. Our support team will help you asap.
Thank you
Done pls check!
How to change the ‘Single Custom Post Template’ Slug url ?
Default url is /post-template/post-name so can i can change this url to specific url like /quotes/post-name ?
Hi proparwej,
Single custom post template is a template for a single post. So you can create a custom post template for every single post. Have you already buy the JNews theme?
Thank you
Thanks for creating this great theme. Can you please tell if version 5.0.x of Wordpress is also supported? The website, says up to 4.9.x, there is no mention of 5.0.x. Thanks in advance for the clarification!
Hi dennisvons,
Thanks for your interest in JNews. Yes, of course, JNews compatible with WP 5 and our module element also available on Gutenberg editor. So you can have all module elements when working with Gutenberg.
Anyway, we just update our theme details. Let me know if you have further question. Hope you can be our customer soon.
Thank you
Good evening, I would like to ask if through php up login via facebook, you can create a redirect after login or user registration. Example with your social login once you have access with facebook, I would like to automatically redirect the user to the submit post page
Hi Raccontami,
I think it’s possible to do that. For a hint, you will need to edit this file ”/jnews-social-login/class.jnews-social-login.php” then you just need find this function “wp_redirect”. Let me know if you have further question.
Thank you
Wonderful, it works thanks, a question again, if I wanted to give access to unregistered users the ability to send a post from the editor, can I do it?
Hi Raccontami,
Unfortunately, at the moment we don’t have this kind of feature. You may need to do some changes in there.
Thank you
Hai, Gimana settingannya ya biar Row nempel ke button Menu gak ada jarak antara row sama menu.
Halo,
Bisa kasi contohnya? Ato link ke halaman yang dimaksud.
Terima kasih