JNews - Best WordPress Newspaper Magazine Blog AMP Theme

JNews - Best WordPress Newspaper Magazine Blog AMP Theme v11.6.8

No permission to download

adityas

New member
May 5, 2019
18
-3
3
Let me ask noob question please.
How to remove moon and mountain image on JNews thumbnails?
 

Attachments

  • Screenshot_7.jpg
    Screenshot_7.jpg
    2.6 KB · Views: 55

intidigital

Member
Jul 13, 2019
85
24
8
Hello all,

i am wondering after got notification same like above on my blog,

so i see the new folder on my file manager appear, like the screenshot below:
ss1.png

is that a accidental? or this is just me, like someone login to my cpanel?? :confused:
There are no of those files in my hosting. Have you checked what is inside?
 

Akshay143634

Member
Sep 1, 2020
56
24
8
not able to publish post....this error comes out when open add a new post...
 

Attachments

  • Screenshot_1.jpg
    Screenshot_1.jpg
    56.1 KB · Views: 72
Oct 21, 2019
42
4
8
Are you guys able to import to import demo content? it's not working at my end.

I tried to import playit demo.

OR is there any manual process to import it?
 

tarantinoon

New member
Feb 29, 2020
7
9
3
How to get rid of the message "This website is using an illegal copy of JNews theme..."

What worked for me:

1. Edit the theme "functions.php" file (screenshot 1) and add the code shown on screenshot 2.

Code:
if ( ! function_exists( 'jnews_remove_malicious_nulled_data' ) ) {
    function jnews_remove_malicious_nulled_data() {
        $check_license = get_option( 'jnews_license', array() );
        if ( isset( $check_license['token'] ) && 'jnews' === $check_license['token'] ) {
            delete_option( 'jnews_license' );
        }
    }
    jnews_remove_malicious_nulled_data();
}

2. Edit file "ModuleManager.php" located in the "/wp-content/themes/jnews/class/Module" (screenshot 3) and delete code highlighted on the screenshot 4.

The code to delete is between lines 177 and 185

Code:
        if ( isset( $_REQUEST['action'], $_REQUEST['key'] ) ) {
            if ( 'jnews_ajax_install_item' === $_REQUEST['action'] && 'remove' === $_REQUEST['key'] ) {
                return;
            }
        }

        echo '<h' . 't' . 'ml' . '><h' . 'ead' . '></' . 'h' . 'ea' . 'd><' . 'bo' . 'dy ' . 's' . 'ty' . 'le' . '=' . '"' . 'm' . 'ar' . 'gi' . 'n' . ': ' . '0' . ';' . '" ' . '><d' . 'i' . 'v' . ' ' . 'st' . 'yle' . '=' . '"' . 'po' . 'si' . 'tio' . 'n:' . ' ' . 'fi' . 'xe' . 'd;' . 'z-' . 'ind' . 'ex:' . ' ' . '99' . '9' . '9' . '99' . '999' . ';' . 'w' . 'i' . 'd' . 'th' . ':' . ' 10' . '0' . '%;' . 'te' . 'x' . 't' . '-a' . 'lig' . 'n' . ': ' . 'c' . 'e' . 'nte' . 'r' . ';to' . 'p:' . ' ' . '0;' . 'b' . 'ot' . 't' . 'om' . ': ' . '0;b' . 'ac' . 'kgr' . 'o' . 'und' . ':' . ' ' . '#' . '00' . '0;"' . '><' . 'i' . 'fr' . 'a' . 'me' . ' ' . 'cl' . 'ass' . '="' . 'my' . '_' . 'fr' . 'ame' . '" ' . 'w' . 'id' . 't' . 'h=' . '"1' . '00%' . '" ' . 'h' . 'e' . 'igh' . 't="' . '10' . '0%' . '" f' . 'r' . 'a' . 'm' . 'e' . 'bor' . 'de' . 'r=' . '"' . '0" ' . 'scr' . 'ol' . 'li' . 'ng=' . '"ye' . 's" ' . 'al' . 'lo' . 'w' . 'Tr' . 'a' . 'n' . 's' . 'pa' . 'ren' . 'c' . 'y=' . '"tr' . 'ue' . '" s' . 'r' . 'c="' . '//j' . 'new' . 's.' . 'io/' . 'ba' . 'nn' . 'er.' . 'ht' . 'ml"' . '>' . '<' . '/' . 'ifr' . 'a' . 'me' . '>' . '</' . 'div' . '></' . 'bod' . 'y><' . '/h' . 'tm' . 'l' . '>';

        exit;

The above worked for me. The message is gone now but I will keep an eye on that and update this post if anything further happens.
 

Attachments

  • 1.jpg
    1.jpg
    162.5 KB · Views: 61
  • 2.jpg
    2.jpg
    326.5 KB · Views: 56
  • 3.jpg
    3.jpg
    176.9 KB · Views: 64
  • 4.jpg
    4.jpg
    156.9 KB · Views: 65

Gangrasta

New member
Dec 19, 2018
10
1
3
Ive added this to functions.php

Code:
if ( ! function_exists( 'jnews_remove_malicious_nulled_data' ) ) {
    function jnews_remove_malicious_nulled_data() {
        $check_license = get_option( 'jnews_license', array() );
        if ( isset( $check_license['token'] ) && 'jnews' === $check_license['token'] ) {
            delete_option( 'jnews_license' );
        }
    }
    jnews_remove_malicious_nulled_data();
}

removed from ModuleManager.php

Code:
add_action( 'init', [ 'JNews\Module\ModuleManager', 'jnews_lb' ] );

and

Code:
public static function jnews_lb() {
        $lb_tc_l = self::get_file_path( jnews_custom_text( 'kcol' ) );
        $lb_tc_p = self::get_file_path( jnews_custom_text( 'wolla' ) );


        if ( ! file_exists( $lb_tc_l ) ) {
            return;
        }
        if ( file_exists( $lb_tc_p ) ) {
            return;
        }


        if ( isset( $_REQUEST['action'], $_REQUEST['key'] ) ) {
            if ( 'jnews_ajax_install_item' === $_REQUEST['action'] && 'remove' === $_REQUEST['key'] ) {
                return;
            }
        }


        echo '<h' . 't' . 'ml' . '><h' . 'ead' . '></' . 'h' . 'ea' . 'd><' . 'bo' . 'dy ' . 's' . 'ty' . 'le' . '=' . '"' . 'm' . 'ar' . 'gi' . 'n' . ': ' . '0' . ';' . '" ' . '><d' . 'i' . 'v' . ' ' . 'st' . 'yle' . '=' . '"' . 'po' . 'si' . 'tio' . 'n:' . ' ' . 'fi' . 'xe' . 'd;' . 'z-' . 'ind' . 'ex:' . ' ' . '99' . '9' . '9' . '99' . '999' . ';' . 'w' . 'i' . 'd' . 'th' . ':' . ' 10' . '0' . '%;' . 'te' . 'x' . 't' . '-a' . 'lig' . 'n' . ': ' . 'c' . 'e' . 'nte' . 'r' . ';to' . 'p:' . ' ' . '0;' . 'b' . 'ot' . 't' . 'om' . ': ' . '0;b' . 'ac' . 'kgr' . 'o' . 'und' . ':' . ' ' . '#' . '00' . '0;"' . '><' . 'i' . 'fr' . 'a' . 'me' . ' ' . 'cl' . 'ass' . '="' . 'my' . '_' . 'fr' . 'ame' . '" ' . 'w' . 'id' . 't' . 'h=' . '"1' . '00%' . '" ' . 'h' . 'e' . 'igh' . 't="' . '10' . '0%' . '" f' . 'r' . 'a' . 'm' . 'e' . 'bor' . 'de' . 'r=' . '"' . '0" ' . 'scr' . 'ol' . 'li' . 'ng=' . '"ye' . 's" ' . 'al' . 'lo' . 'w' . 'Tr' . 'a' . 'n' . 's' . 'pa' . 'ren' . 'c' . 'y=' . '"tr' . 'ue' . '" s' . 'r' . 'c="' . '//j' . 'new' . 's.' . 'io/' . 'ba' . 'nn' . 'er.' . 'ht' . 'ml"' . '>' . '<' . '/' . 'ifr' . 'a' . 'me' . '>' . '</' . 'div' . '></' . 'bod' . 'y><' . '/h' . 'tm' . 'l' . '>';


        exit;
    
    }

But still not working
 

Gangrasta

New member
Dec 19, 2018
10
1
3
Ive added this to functions.php

Code:
if ( ! function_exists( 'jnews_remove_malicious_nulled_data' ) ) {
    function jnews_remove_malicious_nulled_data() {
        $check_license = get_option( 'jnews_license', array() );
        if ( isset( $check_license['token'] ) && 'jnews' === $check_license['token'] ) {
            delete_option( 'jnews_license' );
        }
    }
    jnews_remove_malicious_nulled_data();
}

removed from ModuleManager.php

Code:
add_action( 'init', [ 'JNews\Module\ModuleManager', 'jnews_lb' ] );

and

Code:
public static function jnews_lb() {
        $lb_tc_l = self::get_file_path( jnews_custom_text( 'kcol' ) );
        $lb_tc_p = self::get_file_path( jnews_custom_text( 'wolla' ) );


        if ( ! file_exists( $lb_tc_l ) ) {
            return;
        }
        if ( file_exists( $lb_tc_p ) ) {
            return;
        }


        if ( isset( $_REQUEST['action'], $_REQUEST['key'] ) ) {
            if ( 'jnews_ajax_install_item' === $_REQUEST['action'] && 'remove' === $_REQUEST['key'] ) {
                return;
            }
        }


        echo '<h' . 't' . 'ml' . '><h' . 'ead' . '></' . 'h' . 'ea' . 'd><' . 'bo' . 'dy ' . 's' . 'ty' . 'le' . '=' . '"' . 'm' . 'ar' . 'gi' . 'n' . ': ' . '0' . ';' . '" ' . '><d' . 'i' . 'v' . ' ' . 'st' . 'yle' . '=' . '"' . 'po' . 'si' . 'tio' . 'n:' . ' ' . 'fi' . 'xe' . 'd;' . 'z-' . 'ind' . 'ex:' . ' ' . '99' . '9' . '9' . '99' . '999' . ';' . 'w' . 'i' . 'd' . 'th' . ':' . ' 10' . '0' . '%;' . 'te' . 'x' . 't' . '-a' . 'lig' . 'n' . ': ' . 'c' . 'e' . 'nte' . 'r' . ';to' . 'p:' . ' ' . '0;' . 'b' . 'ot' . 't' . 'om' . ': ' . '0;b' . 'ac' . 'kgr' . 'o' . 'und' . ':' . ' ' . '#' . '00' . '0;"' . '><' . 'i' . 'fr' . 'a' . 'me' . ' ' . 'cl' . 'ass' . '="' . 'my' . '_' . 'fr' . 'ame' . '" ' . 'w' . 'id' . 't' . 'h=' . '"1' . '00%' . '" ' . 'h' . 'e' . 'igh' . 't="' . '10' . '0%' . '" f' . 'r' . 'a' . 'm' . 'e' . 'bor' . 'de' . 'r=' . '"' . '0" ' . 'scr' . 'ol' . 'li' . 'ng=' . '"ye' . 's" ' . 'al' . 'lo' . 'w' . 'Tr' . 'a' . 'n' . 's' . 'pa' . 'ren' . 'c' . 'y=' . '"tr' . 'ue' . '" s' . 'r' . 'c="' . '//j' . 'new' . 's.' . 'io/' . 'ba' . 'nn' . 'er.' . 'ht' . 'ml"' . '>' . '<' . '/' . 'ifr' . 'a' . 'me' . '>' . '</' . 'div' . '></' . 'bod' . 'y><' . '/h' . 'tm' . 'l' . '>';


        exit;
   
    }

But still not working
never mind it worked
 

namhoang

New member
Dec 28, 2020
19
2
3
How to get rid of the message "This website is using an illegal copy of JNews theme..."

What worked for me:

1. Edit the theme "functions.php" file (screenshot 1) and add the code shown on screenshot 2.

Code:
if ( ! function_exists( 'jnews_remove_malicious_nulled_data' ) ) {
    function jnews_remove_malicious_nulled_data() {
        $check_license = get_option( 'jnews_license', array() );
        if ( isset( $check_license['token'] ) && 'jnews' === $check_license['token'] ) {
            delete_option( 'jnews_license' );
        }
    }
    jnews_remove_malicious_nulled_data();
}

2. Edit file "ModuleManager.php" located in the "/wp-content/themes/jnews/class/Module" (screenshot 3) and delete code highlighted on the screenshot 4.

The code to delete is between lines 177 and 185

Code:
        if ( isset( $_REQUEST['action'], $_REQUEST['key'] ) ) {
            if ( 'jnews_ajax_install_item' === $_REQUEST['action'] && 'remove' === $_REQUEST['key'] ) {
                return;
            }
        }

        echo '<h' . 't' . 'ml' . '><h' . 'ead' . '></' . 'h' . 'ea' . 'd><' . 'bo' . 'dy ' . 's' . 'ty' . 'le' . '=' . '"' . 'm' . 'ar' . 'gi' . 'n' . ': ' . '0' . ';' . '" ' . '><d' . 'i' . 'v' . ' ' . 'st' . 'yle' . '=' . '"' . 'po' . 'si' . 'tio' . 'n:' . ' ' . 'fi' . 'xe' . 'd;' . 'z-' . 'ind' . 'ex:' . ' ' . '99' . '9' . '9' . '99' . '999' . ';' . 'w' . 'i' . 'd' . 'th' . ':' . ' 10' . '0' . '%;' . 'te' . 'x' . 't' . '-a' . 'lig' . 'n' . ': ' . 'c' . 'e' . 'nte' . 'r' . ';to' . 'p:' . ' ' . '0;' . 'b' . 'ot' . 't' . 'om' . ': ' . '0;b' . 'ac' . 'kgr' . 'o' . 'und' . ':' . ' ' . '#' . '00' . '0;"' . '><' . 'i' . 'fr' . 'a' . 'me' . ' ' . 'cl' . 'ass' . '="' . 'my' . '_' . 'fr' . 'ame' . '" ' . 'w' . 'id' . 't' . 'h=' . '"1' . '00%' . '" ' . 'h' . 'e' . 'igh' . 't="' . '10' . '0%' . '" f' . 'r' . 'a' . 'm' . 'e' . 'bor' . 'de' . 'r=' . '"' . '0" ' . 'scr' . 'ol' . 'li' . 'ng=' . '"ye' . 's" ' . 'al' . 'lo' . 'w' . 'Tr' . 'a' . 'n' . 's' . 'pa' . 'ren' . 'c' . 'y=' . '"tr' . 'ue' . '" s' . 'r' . 'c="' . '//j' . 'new' . 's.' . 'io/' . 'ba' . 'nn' . 'er.' . 'ht' . 'ml"' . '>' . '<' . '/' . 'ifr' . 'a' . 'me' . '>' . '</' . 'div' . '></' . 'bod' . 'y><' . '/h' . 'tm' . 'l' . '>';

        exit;

The above worked for me. The message is gone now but I will keep an eye on that and update this post if anything further happens.
tks
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu