Nikonn
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fasto] how disable Fixed/Sticky Header on ScrollForum: Themes and Templates
In reply to: [Fasto] how disable Fixed/Sticky Header on ScrollThe only problem is that the menu doesn’t display on mobile devices.
Forum: Themes and Templates
In reply to: [Fasto] how disable Fixed/Sticky Header on ScrollAnother option is to add additional styles to the theme settings. Go to-Appearance-Customize-Additional styles. Enter this code –
header#theme-header {position: static;}
Forum: Themes and Templates
In reply to: [Fasto] how disable Fixed/Sticky Header on ScrollYou can fix this only in the file styles, it is better to create a child theme and there to make changes. To change the sticky menu, you need to open the file /wp-content/themes/fasto/style. css in line 1167 find the value-position: sticky; and change its value-sticky to “static” or “unset”. So far, this is the only way to cancel the sticky menu.
/* 6.Header */ header#theme-header{ display:flex; padding:22px 70px; width:100%; margin:0 auto; z-index: 10; position: relative; border-radius:5px 5px 0 0; justify-content:space-between; position: unset; top:0; box-shadow: -1px 0px 16px 0px rgba(0, 0, 0, 0.07); }
Forum: Plugins
In reply to: [Кнопка ЮMoney] Ошибка в номере кошелькаЕсли проблема еще актуальна, то это ошибка на стороне Яндекса. В чем проблема? Скорее всего у вас установлен какой то плагин SMTP и рассылку через него яндекс считает спамом (наверное вам приходили такие сообщения на почту, которая привязана к сайту). В связи с этим на сайт или скорее всего на почтовый ящик, яндекс накладывает санкции и фильтры, именно по этому платежи не проходят и вы видите такое сообщение. Я пробовал устанавливать подобный плагин на разных сайтах и именно в интернет магазине он не работал с самого начала. Мой эксперимент прошёл так, я установил плагин на тестовом сайте где совсем другая почта и указал данные кошелька заблокированного интернет магазина. Был очень удивлен, когда платеж прошел и уже после этого обратился в техподдержку яндекса и они уже на своей стороне решали проблему в течении 24 часов (как они заявляют). Попробуйте сменить почту и посмотрите этот плагин на другом сайте.
Good, at the first opportunity, I will try to test your plugin after the update.
Hello. Thanks for the answer, but today I’m using an alternative plugin for AdSense. Your plugin is light and convenient, but I had to find another plugin to quickly solve the problem on the working site after waiting for a response. Thanks.
Thanks!
Forum: Themes and Templates
In reply to: [MH HealthMag] To reduce the width of the sidebarОК!
Forum: Plugins
In reply to: [WooCommerce] SyntaxError: Unexpected token < in JSON at position 0after upgrading to version 3.7.0. error when registering users on the order page is eliminated
Forum: Plugins
In reply to: [WooCommerce] SyntaxError: Unexpected token < in JSON at position 0Good.
Forum: Plugins
In reply to: [WooCommerce] SyntaxError: Unexpected token < in JSON at position 0Hello. I assumed that they would help me to understand this problem, but I haven’t made any updates yet. I’ll try to update and let you know. Thanks.
Forum: Themes and Templates
In reply to: [Panoramic] Using panoramic, social mediaI agree with you! The only drawback of this method is that after updating the theme you may lose all your changes. It is better to make changes to the child theme, so you will be sure that after the next update of the theme, all your changes will be saved.
Forum: Themes and Templates
In reply to: [Panoramic] Using panoramic, social mediaIn 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.
Forum: Themes and Templates
In reply to: [Panoramic] Using panoramic, social mediaThere are no other social networks in the free version of this theme. But, you can add them yourself, it will have to make changes to the 4 file theme panoramic.