Advertisement
palsushobhan

update-twitter-to-x-icon

Apr 25th, 2024
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.15 KB | None | 0 0
  1. add_action('wcfmmp_store_before_social', function() {
  2.     ?>
  3.     <style>
  4.         .social_area ul li a {
  5.             display: block;
  6.             margin-top: 50%;
  7.             transform: translateY(-50%);
  8.         }
  9.         .social_area ul li a svg {
  10.             display: block;
  11.             margin: 0 auto;
  12.             width: 25px;
  13.         }
  14.         .social_area ul li a svg path{
  15.             fill: #17a2b8;
  16.         }
  17.         .social_area ul li a:hover svg path{
  18.             fill: #fff;
  19.         }
  20.     </style>
  21.     <?php
  22.     ob_start();
  23. });
  24. add_action('wcfmmp_store_after_social', function() {
  25.     $social_html = ob_get_clean();
  26.     $v2 = '<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 1668.56 1221.19" viewBox="0 0 1668.56 1221.19" id="twitter-x"><path d="M283.94,167.31l386.39,516.64L281.5,1104h87.51l340.42-367.76L984.48,1104h297.8L874.15,558.3l361.92-390.99
  27.    h-87.51l-313.51,338.7l-253.31-338.7H283.94z M412.63,231.77h136.81l604.13,807.76h-136.81L412.63,231.77z" transform="translate(52.39 -25.059)"></path></svg>';
  28.     echo str_replace('<i class="fab fa-twitter" aria-hidden="true" target="_blank"></i>', $v2, $social_html);
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement