• Resolved 1timothy412

    (@1timothy412)


    I just transferred a WP site that I am building to the localhost of my new computer. Everything was working fine on my old computer, but now I am receiving this warning message:

    Warning: Missing argument 1 for ResponsiveColumnWidgets(), called in C:\xampp\htdocs\j--------i\wordpress\wp-content\themes\blankslate\footer.php on line 5 and defined in C:\xampp\htdocs\j--------i\wordpress\wp-content\plugins\responsive-column-widgets\responsive-column-widgets.php on line 137

    Here’s footer.php line 5:
    <div id="footer-widgets"><?php ResponsiveColumnWidgets(); ?></div>

    And here’s responsive-column-widgets.php line 137:
    function ResponsiveColumnWidgets( $arrParams ) {

    I know very little of PHP so I would really appreciate help. Thanks.

    https://www.ads-software.com/extend/plugins/responsive-column-widgets/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author miunosoft

    (@miunosoft)

    Hi,

    You may try changing

    <div id="footer-widgets"><?php ResponsiveColumnWidgets(); ?></div>

    to

    <div id="footer-widgets"><?php ResponsiveColumnWidgets( array() ); ?></div>

    Thread Starter 1timothy412

    (@1timothy412)

    Your solution worked perfectly. Thank you for your timely response.

    Plugin Author miunosoft

    (@miunosoft)

    Glad to hear it’s working.

    As of v1.1.4.1, you can use the function without passing an empty array like you did in the initial post.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Missing argument 1 for ResponsiveColumnWidgets()’ is closed to new replies.