Title: PHP8 fixes
Last modified: April 26, 2021

---

# PHP8 fixes

 *  [azrieil](https://wordpress.org/support/users/azrieil/)
 * (@azrieil)
 * [5 years ago](https://wordpress.org/support/topic/php8-fixes/)
 * There are errors relative to PHP 8.0
 * `Required parameter $displayCount follows optional parameter $sharingType in /
   var/www/html/wp-content/plugins/super-socializer/inc/social_sharing.php on line
   10`
 * About `function the_champ_prepare_sharing_html`
 * The signature is
 * `function the_champ_prepare_sharing_html($postUrl, $shareCountUrl, $sharingType
   = 'horizontal', $displayCount, $totalShares, $shareCountTransientId, $standardWidget
   = false)`
 * **There is no calls of it wihout 3rd paramter** so it can be painless fixed to
 * `function the_champ_prepare_sharing_html($postUrl, $shareCountUrl, $sharingType,
   $displayCount, $totalShares, $shareCountTransientId, $standardWidget = false)`
 * Or
 *     ```
       function the_champ_prepare_sharing_html($postUrl, $shareCountUrl, $sharingType, $displayCount, $totalShares, $shareCountTransientId, $standardWidget = false){
        $sharingType = $sharingType || 'horizontal';
        // ... other
       }
       ```
   
 * The same fix at `function the_champ_prepare_counter_html` required
 * Can you provide an update? thanks
    -  This topic was modified 5 years ago by [azrieil](https://wordpress.org/support/users/azrieil/).
    -  This topic was modified 5 years ago by [azrieil](https://wordpress.org/support/users/azrieil/).
    -  This topic was modified 5 years ago by [azrieil](https://wordpress.org/support/users/azrieil/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [Heateor Support](https://wordpress.org/support/users/heateor/)
 * (@heateor)
 * [5 years ago](https://wordpress.org/support/topic/php8-fixes/#post-14372800)
 * Thanks for the heads up. We will take care of these in the upcoming updates of
   the plugin.

Viewing 1 replies (of 1 total)

The topic ‘PHP8 fixes’ is closed to new replies.

 * ![](https://ps.w.org/super-socializer/assets/icon-128x128.png?rev=1866723)
 * [Social Share, Social Login and Social Comments Plugin - Super Socializer](https://wordpress.org/plugins/super-socializer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/super-socializer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/super-socializer/)
 * [Active Topics](https://wordpress.org/support/plugin/super-socializer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/super-socializer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/super-socializer/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Heateor Support](https://wordpress.org/support/users/heateor/)
 * Last activity: [5 years ago](https://wordpress.org/support/topic/php8-fixes/#post-14372800)
 * Status: not resolved