Hello,
After updating to joomla 4 I have some issues :
error in vertex updater :
0 count(): Argument #1 ($value) must be of type Countable|array, null given
seems to be in : JROOT/administrator/components/com_vertexupdate/views/vertexupdate/view.html.php:43

  • settings from joomla 3 are not reported
  • css for module last article are not the same and in the code I can see that class got error :
    <ul class="latestnews<br />
    <b>Warning</b>:  Undefined variable $moduleclass_sfx in <b>/home/clients/150376ffc7ded191aae228a11cbb1b58/sites/dev.alacroiseedesmots.com/templates/shape5_vertex/html/mod_articles_latest/default.php</b> on line <b>12</b><br />
     mod-list">

Hi @tataye,
Open the default.php file in the "shape5_vertex/html/mod_articles_latest/" folder and change code from:

...
defined('_JEXEC') or die;
?>
<ul class="latestnews<?php echo $moduleclass_sfx; ?> mod-list">
...

to

...
defined('_JEXEC') or die;
$moduleclass_sfx = $params->get('moduleclass_sfx','');
?>
<ul class="latestnews<?php echo $moduleclass_sfx; ?> mod-list">
...

Save and reload your site.

Write a Reply...
You need to Login to view replies.