/** * Nyasa Times category archive H1 cleanup. * Removes "Category:" / "Category archives:" style headings * and replaces key category headings with SEO-friendly names. */ add_filter( 'get_the_archive_title', function( $title ) { if ( ! is_category() ) { return $title; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return $title; } $titles = array( 'news' => 'Latest Malawi News', 'national' => 'Malawi National News', 'politics' => 'Malawi Politics News', 'business' => 'Malawi Business & Economy News', 'sports' => 'Malawi Sports News', 'education' => 'Malawi Education News', 'health' => 'Malawi Health News', 'entertainment' => 'Malawi Entertainment News', 'columns' => 'Malawi Opinion & Analysis', 'religious-news' => 'Malawi Religion & Faith News', 'religion' => 'Malawi Religion & Faith News', ); if ( isset( $titles[ $term->slug ] ) ) { return $titles[ $term->slug ]; } return single_cat_title( '', false ); }, 99 ); /** * Remove WordPress archive prefixes. */ add_filter( 'get_the_archive_title_prefix', '__return_empty_string' ); /** * Nyasa Times AIOSEO category title overrides. */ add_filter( 'aioseo_title', function( $title ) { if ( ! is_category() ) { return $title; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return $title; } $seo_titles = array( 'news' => 'Latest Malawi News | Breaking Updates & Public Interest Stories | Nyasa Times', 'national' => 'Malawi National News | Latest Local & Public Affairs | Nyasa Times', 'politics' => 'Malawi Politics News | Government, Parliament & Elections | Nyasa Times', 'business' => 'Malawi Business News | Economy, Banking, Trade & Jobs | Nyasa Times', 'sports' => 'Malawi Sports News | Football, Netball & National Teams | Nyasa Times', 'education' => 'Malawi Education News | Schools, Universities & Exams | Nyasa Times', 'health' => 'Malawi Health News | Hospitals, Public Health & Medicine | Nyasa Times', 'entertainment' => 'Malawi Entertainment News | Music, Culture & Events | Nyasa Times', 'columns' => 'Malawi Opinion & Analysis | Columns & Commentary | Nyasa Times', 'religious-news' => 'Malawi Religion & Faith News | Churches & Community | Nyasa Times', 'religion' => 'Malawi Religion & Faith News | Churches & Community | Nyasa Times', ); if ( isset( $seo_titles[ $term->slug ] ) ) { return $seo_titles[ $term->slug ]; } return $title; }, 99 ); /** * Nyasa Times category meta descriptions for AIOSEO. */ add_filter( 'aioseo_description', function( $description ) { if ( ! is_category() ) { return $description; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return $description; } $descriptions = array( 'news' => 'Latest Malawi news, breaking updates, public-interest stories, community developments and national reports from Nyasa Times.', 'national' => 'Read Malawi national news, public affairs, local updates, government services and community stories from Nyasa Times.', 'politics' => 'Latest Malawi politics news, elections, Parliament, government decisions, party updates, policy debate and analysis from Nyasa Times.', 'business' => 'Read Malawi business news, economy, banking, trade, investment, energy, agriculture, jobs and market updates from Nyasa Times.', 'sports' => 'Latest Malawi sports news, football, netball, athletics, clubs, national teams and Malawian athletes at home and abroad.', 'education' => 'Malawi education news on schools, universities, exams, scholarships, teachers, students, policy updates and learning developments.', 'health' => 'Malawi health news on hospitals, public health, disease outbreaks, medicine, maternal health, children’s health and health policy.', 'entertainment' => 'Malawi entertainment news on music, culture, film, fashion, celebrities, festivals, events and creative industry updates.', 'columns' => 'Read Malawi opinion, columns, editorials and analysis on politics, governance, business, society, leadership and development.', 'religious-news' => 'Malawi religious news, church updates, faith events, Christian community stories, religious leaders and social impact coverage.', 'religion' => 'Malawi religious news, church updates, faith events, Christian community stories, religious leaders and social impact coverage.', ); if ( isset( $descriptions[ $term->slug ] ) ) { return $descriptions[ $term->slug ]; } return $description; }, 99 ); /** * Display category description before the article list * when the theme does not output it. */ add_action( 'loop_start', function( $query ) { if ( ! is_category() || ! $query->is_main_query() || is_admin() ) { return; } static $shown = false; if ( $shown ) { return; } $shown = true; $description = category_description(); if ( empty( trim( wp_strip_all_tags( $description ) ) ) ) { return; } echo '
'; echo wp_kses_post( $description ); echo '
'; } );/** * NYASA TIMES SEO + ARCHIVE FIX * */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * ------------------------------------------------------- * 1. CATEGORY CONFIGURATION * ------------------------------------------------------- */ function nyasa_category_seo_data() { return array( 'news' => array( 'h1' => 'Latest Malawi News', 'title' => 'Latest Malawi News | Breaking Updates & Public Interest Stories | Nyasa Times', 'desc' => 'Latest Malawi news, breaking updates, public-interest stories, community developments and national reports from Nyasa Times.', ), 'national' => array( 'h1' => 'Malawi National News', 'title' => 'Malawi National News | Latest Local & Public Affairs | Nyasa Times', 'desc' => 'Read Malawi national news, public affairs, local updates, government services and community stories from Nyasa Times.', ), 'politics' => array( 'h1' => 'Malawi Politics News', 'title' => 'Malawi Politics News | Government, Parliament & Elections | Nyasa Times', 'desc' => 'Latest Malawi politics news, elections, Parliament, government decisions, party updates, policy debate and analysis from Nyasa Times.', ), 'business' => array( 'h1' => 'Malawi Business & Economy News', 'title' => 'Malawi Business News | Economy, Banking & Markets | Nyasa Times', 'desc' => 'Read Malawi business news, economy, banking, trade, investment, energy, agriculture, jobs and market updates from Nyasa Times.', ), 'sports' => array( 'h1' => 'Malawi Sports News', 'title' => 'Malawi Sports News | Football, Netball & National Teams | Nyasa Times', 'desc' => 'Latest Malawi sports news, football, netball, athletics, clubs, national teams and Malawian athletes at home and abroad.', ), 'education' => array( 'h1' => 'Malawi Education News', 'title' => 'Malawi Education News | Schools, Universities & Exams | Nyasa Times', 'desc' => 'Malawi education news on schools, universities, exams, scholarships, teachers, students, policy updates and learning developments.', ), 'health' => array( 'h1' => 'Malawi Health News', 'title' => 'Malawi Health News | Healthcare & Public Health | Nyasa Times', 'desc' => 'Malawi health news on hospitals, public health, disease outbreaks, medicine, maternal health, children’s health and health policy.', ), 'entertainment' => array( 'h1' => 'Malawi Entertainment News', 'title' => 'Malawi Entertainment News | Music, Culture & Celebrities | Nyasa Times', 'desc' => 'Malawi entertainment news on music, culture, film, fashion, celebrities, festivals, events and creative industry updates.', ), 'columns' => array( 'h1' => 'Malawi Opinion & Analysis', 'title' => 'Malawi Opinion & Analysis | Columns & Commentary | Nyasa Times', 'desc' => 'Read Malawi opinion, columns, editorials and analysis on politics, governance, business, society, leadership and development.', ), 'religious-news' => array( 'h1' => 'Malawi Religion & Faith News', 'title' => 'Malawi Religion & Faith News | Churches & Community | Nyasa Times', 'desc' => 'Malawi religious news, church updates, faith events, Christian community stories, religious leaders and social impact coverage.', ), 'religion' => array( 'h1' => 'Malawi Religion & Faith News', 'title' => 'Malawi Religion & Faith News | Churches & Community | Nyasa Times', 'desc' => 'Malawi religious news, church updates, faith events, Christian community stories, religious leaders and social impact coverage.', ), ); } /** * ------------------------------------------------------- * 2. FIX VISIBLE CATEGORY H1 * ------------------------------------------------------- * * Converts: * Category archives: Latest Malawi News * * Into: * Latest Malawi News */ add_filter( 'get_the_archive_title', function ( $title, $original_title = '', $prefix = '' ) { if ( ! is_category() ) { return $title; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return $title; } $data = nyasa_category_seo_data(); if ( isset( $data[ $term->slug ]['h1'] ) ) { return esc_html( $data[ $term->slug ]['h1'] ); } return single_cat_title( '', false ); }, 999, 3 ); /** * Remove WordPress archive prefixes. */ add_filter( 'get_the_archive_title_prefix', '__return_empty_string', 999 ); /** * ------------------------------------------------------- * 3. FIX AIOSEO CATEGORY TITLES * ------------------------------------------------------- * * Prevents titles such as: * "Malawi Latest Malawi News News..." */ add_filter( 'aioseo_title', function ( $title ) { /* * Category titles */ if ( is_category() ) { $term = get_queried_object(); if ( $term && ! empty( $term->slug ) ) { $data = nyasa_category_seo_data(); if ( isset( $data[ $term->slug ]['title'] ) ) { return $data[ $term->slug ]['title']; } } } /* * Article titles * * Converts: * Article headline - Featured News Malawi | Nyasa Times * * Into: * Article headline | Nyasa Times */ if ( is_singular( 'post' ) ) { return wp_strip_all_tags( get_the_title() ) . ' | Nyasa Times'; } return $title; }, 999 ); /** * ------------------------------------------------------- * 4. FIX AIOSEO CATEGORY META DESCRIPTIONS * ------------------------------------------------------- */ add_filter( 'aioseo_description', function ( $description ) { if ( ! is_category() ) { return $description; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return $description; } $data = nyasa_category_seo_data(); if ( isset( $data[ $term->slug ]['desc'] ) ) { return $data[ $term->slug ]['desc']; } return $description; }, 999 ); /** * ------------------------------------------------------- * 5. DISPLAY CATEGORY DESCRIPTION * ------------------------------------------------------- * * Shows the short SEO introduction above the article list. */ add_action( 'loop_start', function ( $query ) { if ( is_admin() || ! is_category() || ! $query->is_main_query() ) { return; } static $nyasa_description_shown = false; if ( $nyasa_description_shown ) { return; } $term = get_queried_object(); if ( ! $term || empty( $term->slug ) ) { return; } $data = nyasa_category_seo_data(); if ( ! isset( $data[ $term->slug ]['desc'] ) ) { return; } $nyasa_description_shown = true; echo '
'; echo '

'; echo esc_html( $data[ $term->slug ]['desc'] ); echo '

'; echo '
'; }, 5 );

Zikhale, Police still silent on Muhammad Kasiman abduction amidst allegations of a staggering K2bn ransom

After assuring Malawians to get to the bottom of the abduction scandal of involving 26-year-old British national Muhammad Kasiman on July 24th this year, Minister of Homeland Security Ken Zikhale Ng’oma and Malawi Police Service (MPS) are silent over what transpired, not even a single arrest made six weeks after the incident happened.

The vehicle that Muhammed Kasiman was abducted from

The deafening silence from Zikhale and Malawi Police is roaring amidst serious reports that Nyasatimes has gathered detailing that a ransom of K2 billion in cash exchanged hands among players involved to facilitate the safe release of Muhammad and the Police were strongly and strictly told to stay out of it.

Muhammad was dangerously abducted in the daylight, around 2pm, on 24th July around Falls Estate in Lilongwe and, in what looked like a well-scripted movie, released three days later, dumped at Kamphata in Lilongwe as well.

The Police, through Lilongwe spokesperson Hastings Chigalu, confirmed Muhammad being found after, of course, initially informing the public that the British national was abducted by unknown people. However, there has neither been a statement nor any arrest made since.

In fact, just after the abduction, Zikhale Ng’oma went public, gun blazing, saying: “As you know, this is not the first abduction involving the Asian Community. As Minister of Internal Security, it is my constitutional duty to ensure everyone living in Malawi is safe and secure.” Similarly, there has never been any information on the same from the Honourable Minister.

Now Malawians are wondering how safe and secure are they when daylight abductions are happening and Police appear to be on the sideshow. Even economic commentators are arguing the spates of these unexplained and unpunished abductions are denting the country’s image as an investment destination, thereby, affecting all the tireless efforts that President Lazarus Chakwera’s government is putting on economic recovery.

What happened?

Nyasatimes has gathered exclusive details relating to the shocking story of 26-year old business person, a British national of Indian descent, Mr. Muhammad Kasiman who was abducted around 2pm on his way back to the office from Falls Estate Mosque in Lilongwe on 24th July 2024 and found dumped on 27th July.

Our investigations reveal that his abduction, in a black Noah without number plate, stems from an illegal business gone sour between the Kasiman family and their hired contractor namely Nidal Mroue, a Malawian of Lebanese origin.

The Kasimans—involving brothers Riaz, Nizam and Yasin—are a powerful and extremely wealthy family that owns CP poultry, CP feeds, Universal Industries and CP properties. Nidal Mroue, on the other part, is also a rich businessperson with interest in construction industry.

Our highly placed source confided in us that the Kasimans hired Mroue, in 2019, to construct their new Universal Industries building in Malangalanga in Lilongwe where, after contracts signed, they successfully, through their connections, bypassed all laws and bylaws that govern the construction sector in the country.

“Because it was just the two, the project went on. By 2021, the project was hitting finale but the issue of non-payment of close to K1.2 billion emerged and they started fighting over it with the Kasimans accusing Mroue of bloating the figure. They started fighting and issuing threats to each other to the point where the Kasimans hired police officers as bodyguards,” said the source.

The source further told us that the issue went silent over the years only to resurface this year with an abduction of Muhammed who is a son of Nizam Kasiman and also a director at Universal Limited.

Police was informed

Nyasatimes understands that after Muhammed Kasiman was abducted, the Kasimans reported the matter to police and police, through Lilongwe Police spokesperson Hastings Chigalu, confirmed to the media on the matter.

However, according to our source, the Kasimans—with help from a senior Cabinet Minister—instructed the police to stay out of the investigations as they will do it on their own.

“The search for Muhammed began the same day of his abduction and the search party, comprising the Indian community, used a tracker to locate the IP that was switched off then. They managed to get the location of Muhammed’s Iphone around Dzaleka in Dowa and they found his Iphone at Dzaleka hill perched under a stone. However, they didn’t find Muhammed.” he said.

Muhammed, was abducted by ruffians that were using a black Nowa, however, was found on 27th July—which was the third day after the abduction—dumped at Kamphata in Lilongwe, about 100 kilometers from Dzaleka where the phone was found.

Surprisingly, Lilongwe Police spokesperson Hastings Chigalu confirmed that Muhammed has been found but refused to divulge details as to what had happened, insisting that ‘they will come back’.

Minister of Homeland Security Zikhale Ng’oma was also quoted in the media saying: “As you know, this is not the first abduction involving the Asian Community. As Minister of Internal Security, it is my constitutional duty to ensure everyone living in Malawi is safe and secure.”

Zikhale also corroborated with our investigations that the Muhammed’s IPhone was found dumped by the kidnappers, but since Muhammed was found on 27th July, the Minister has never updated the nation on the matter if arrests were made.

The question of K2 billion

Our investigations indicate that Muhammed Kasiman was abducted by a team of ruffians allegedly hired by contractor Nidal Mroue to force the Kasimans to pay the K1.2 billion they had been tussling since 2021.

Our source underlined that because of all the illegalities involved in that Universal Industries construction deal, neither of the two moved to have their matter settled either before registered debtor collectors, courts or Police for fear of reprisals both sides.

We have it also on record that Mroue was moved by a senior Cabinet Minister, name withheld, who hatched the abduction plan as part of forcing the Kasimans to quickly release money which they would share.

“Have it in mind that most Cabinet ministers, during this time, were busy looking for money for their campaign at the MCP convention. So this Cabinet Minister saw the opportunity, hatched the plan and made sure that police are not involved,” said our source.

Our source revealed that for Muhammed to be released, a ransom of K2 billion was paid by the Kasimans which was shared between Munroe and the Cabinet Minister eventually leading to the dumping of Muhammed at Kamphata.

 Zikhale, Police silent

Our efforts to speak to Zikhale and Police spokesperson proved futile as their phones went unanswered. However, it must be put on record that Lilongwe police spokesperson, Chigalu, told the media on the 27th July, a day Muhammed was found, that Police will issue a statement. Zikhale, too, assured the public that he will get to the bottom of the matter.

Six weeks later: no arrest, no statement—just silence. Apparently, Muhammed is now back in UK.

Can Parliament help?

Meanwhile, Centre for Democracy and Economic Development Initiatives (CDEDI) has written the Speaker of Parliament Catherine Gotani requesting her to invoke her powers to commission a joint parliamentary committee to conduct a public inquiry that will help Malawians exercise their right to know what is happening with the country’s security system.

CCEDI also wants the joint committee—notably Trade and Industry committee, as well as the Defense and Security committee—to summon  the current Inspector General (IG) of the MPS, Madam Merlyn Yolamu to explain to the nation on whether she is in control of the country’s security system, including giving an explanation on the apparent security breakdown in the country.

In a letter, dated 22nd August 2024, signed by CCEDI executive director Sylvestre Namiwa and duly received by Gotani’s personal assistant Grace Nyirenda, CCEDI says their concern has been sparked by government inaction on a recent case involving a 26-year old business person, a British national of Indian descent, Mr. Muhammad Kasiman who was abducted around 2pm on his way back to the office from Falls Estate (Area 1) Mosque in Lilongwe.

“The nation got an assurance from the Lilongwe Police that they were on top of things, only to be told later by the same police, that Mr. Kasiman was released on Saturday night, July 27, 2024 without further details and arrests,” he said, adding that almost a month down the line, there is no official statement from the Malawi Police Service (MPS) let alone the family nor the survivor.

Today, Malawians are living in fear, since abduction allegation remains a serious security concern globally, and to make matters worse this recent case involved a foreign national and a businessperson.

“Simply put, the deafening silence from the authorities is creating fear and panic among Malawians, over and above that it has the potential to scare potential and existing investors, thereby threatening attempts to recover the ailing economy and create the much needed jobs among the youth,” he said.

He also observes that, this far, one wonders if Malawi is a safer place to live in or let alone do business.

“Why do our police seem not interested in these serious security concerns? Is it a question of incompetence or utter negligence? Was ransom paid in all these cases? Are these cases a result of business deals gone sour?” he notes.

This is the fourth abduction case involving the Asian Community. A simple internet search will show that in 2021 we had two reported cases; Tariq Noorani and Faizal Aboo, while a 3year-old boy Aaraf Kapadia was also abducted in June 2022.

There hasn’t been any immediate reaction from the office of the Speaker.

 

Follow and Subscribe Nyasa TV :
Follow us in Twitter

One reply on “Zikhale, Police still silent on Muhammad Kasiman abduction amidst allegations of a staggering K2bn ransom”