In your case, you will need to make changes to these files
1- wp-content/themes/panoramic/library/template-parts/social-links.php
For example for Facebook
if( get_theme_mod( 'panoramic-social-facebook', '' ) != '' ) :
echo '<li><a href="' . esc_url( get_theme_mod( 'panoramic-social-facebook' ) ) . '" target="_blank" title="' . esc_attr( __( 'We are in Facebook', 'panoramic' ) ) . '" rel="noopener noreferrer"><i class="otb-fa otb-fa-facebook"></i></a></li>';
endif;
2- wp-content/themes/panoramic/style.css
Find a similar list and add this code there
.social-facebook,
.social-twitter,
.social-vk,
.social-instagram,
3- If when setting up the theme, in the social networks section, you will not see any desired, then add to the file – wp-content/themes/panoramic/customizer/customizer-options.php
Sample code (you can change it at your discretion)
$options['panoramic-social-odnoklassniki'] = array(
'id' => 'panoramic-social-odnoklassniki',
'label' => __( 'Odnoklassniki', 'panoramic' ),
'section' => $section,
'type' => 'text'
);
Change ‘Odnoklassniki’ and ‘-odnoklassniki’ on your preferred social network, for example –
'id' => 'panoramic-social-instagram',
or
'label' => __( 'Instagram', 'panoramic' ),
-
This reply was modified 5 years, 7 months ago by
Nikonn.