zabavljaev
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astra] Как вставить тег в описание рубрики?@rikitikitari Этот код для вставки в functions.php. Однако работать он не будет. Вы и сами убедились в этом, пробуя с другими темами. Надо поискать в теме Астра. Подождите, пожалуйста, ответа разработчиков.
Forum: Themes and Templates
In reply to: [Astra] Как вставить тег в описание рубрики?This is not from WordPress. Not only because of WordPress.
Forum: Themes and Templates
In reply to: [Astra] Changing the viewport meta in the sectionThis is built into header.php. You can modify header.php and put it in a child theme.
Forum: Themes and Templates
In reply to: [Astra] fonts/astra.woffIt is impossible. The code solves this problem: first it disables the fonts, and then preloads it. The result is especially noticeable for mobile devices. Test results PageSpeed Insights may vary.
Forum: Themes and Templates
In reply to: [Astra] A few questions about Menu OptionsTry it this way. This will remove the user menu item with icons on devices with a display resolution greater than 768px.
@media (min-width: 768px) { .astra-widget-social-profiles { display: none; } }
Paste this code: Appearance → Customize → Additional CSS
or@media (min-width: 768px) { .ast-header-widget-area { display: none; } }
- This reply was modified 4 years, 9 months ago by zabavljaev.
Forum: Themes and Templates
In reply to: [Astra] A few questions about Menu Options1) I do not see social icons in your top menu. It can be shown as “Last Item in Menu” using the “Text HTML” or “widget”. You can hide it using media queries. The code depends on how you display the social network icons.
2) Appearance → Customize → Header → Primary Menu → Toggle Button Style → MinimalForum: Plugins
In reply to: [Spectra - WordPress Gutenberg Blocks] Multi Buttons on MobileMany thanks, Sweta! Please forgive me! I have not seen this setting before.
Forum: Themes and Templates
In reply to: [Astra] Support WarningI sometimes look at asked questions and answers to them. If the solution is obvious, then it will be published without any request for access to the admin panel. Great tech support. I received answers in a short time to all the questions I asked.
Forum: Plugins
In reply to: [Spectra - WordPress Gutenberg Blocks] Parallax BackgroundsThanks a lot, Vrunda!
Forum: Themes and Templates
In reply to: [Astra] Astra icons in the footer not showing in job pagesIndeed! They care about us and forget about themselves.
Forum: Themes and Templates
In reply to: [Astra] Astra icons in the footer not showing in job pagesHello! It seems you have no Font awesome connected.
Forum: Themes and Templates
In reply to: [Astra] How to remove the ? ?Thanks friends! I already realized that this cannot be done. I wanted to remove the “?”, but at the same time keep in touch with the translation file.
$read_more_text = apply_filters( 'astra_post_read_more', __( 'Read More »', 'astra' ) );
Forum: Themes and Templates
In reply to: [Astra] How to remove the ? ?Thanks a lot, Fahim Murshed! But I mean the Read More link, not the Breadcrumb.
Forum: Themes and Templates
In reply to: [Astra] Class for read-more linksI wrote a filter that added a class to the a tag. But you are right: an empty attribute does not interfere. Perhaps it does not need to be hidden if it is not set.
Forum: Themes and Templates
In reply to: [Astra] Class for read-more linksThanks so much for such a detailed explanation!