vladff
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Moesia] Visual editor looks different after Moesia Theme updateIt’s not from the theme update, it’s from the Page Builder update. Get 2.07 from here until we update the theme please: https://wordpress.org/plugins/siteorigin-panels/developers/
Forum: Themes and Templates
In reply to: [FlyMag] Remove the word "category" orm page titleCool. Feel free to mark this topic as resolved. Reviews are also appreciated 🙂
Forum: Themes and Templates
In reply to: [FlyMag] Remove the word "category" orm page titleRemoving that line won’t help cause it will also remove the category title. Add this in your child theme’s functions.php file:
add_filter( 'get_the_archive_title', 'flymag_remove_cats_label'); function flymag_remove_cats_label($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } return $title; }Forum: Themes and Templates
In reply to: [FlyMag] Remove the word "category" orm page titleYou’ll need to have a child theme in order to do this. Do you have/are you willing to make one?
Forum: Themes and Templates
In reply to: [Moesia] Change menu colorI’m sorry, I’m looking in Chrome and they’re not moving for me. Try to clear your cache.
Forum: Themes and Templates
In reply to: [FlyMag] Mobile theme shows nothing but sidebar contentJust wanted to let you know that support for the mobile theme from Jetpack cannot be added. It can only display one widget area so it cannot work with the theme’s front page which has 3 widget areas in total.
Forum: Themes and Templates
In reply to: [Moesia] Change menu colorThe menu is grey because there is a dark background behind it. Use this in a custom CSS plugin:
.top-bar { opacity: 1; }I’m not seeing the images moving. In what browser are you seeing this?
Forum: Themes and Templates
In reply to: [Moesia] Change menu colorHey,
It seems you haven’t posted the correct link to your website.
Forum: Themes and Templates
In reply to: [FlyMag] WordPress Galleries aren't shown full-widthThose are Jetpack galleries if I’m not mistaken. They’re set at the maximum $content_width declared in the theme, which is 860. I’ll add some checks in the next version, meanwhile you can open up functions.php, search for 860 and replace with something like 1160.
Forum: Reviews
In reply to: [FlyMag] A great start with some cool optionsThanks a lot for your feedback.
1) If by non-automatic you mean that there isn’t a built-in list for fonts, then yeah, we’re using a lightweight method to let you choose any font from Google. I belive the video is clear enough, suggestions to improve it are more than welcome if there’s something I’m missing.
2) Will look into it.
3) I answered this on the forum, not much to do with the theme. Feel free to check the our demo with all the widgets there and you’ll see them displayed.
Forum: Themes and Templates
In reply to: [FlyMag] Mobile theme shows nothing but sidebar contentI see what you mean and I’ll have to see what this module from Jetpack needs from the theme to work properly. But I don’t really see it as an issue, just disable that module and let the theme handle your mobile view instead of letting Jetpack do it.
Forum: Themes and Templates
In reply to: [FlyMag] Reduce site title size in mobile screen?Hey,
Yeah, it can be done and it will also be added in the next update. For now install a custom CSS plugin and add this code (adjust if you need):
@media (max-width: 460px) { .site-title { font-size: 32px; } }Forum: Themes and Templates
In reply to: [Moesia] Row's theme background image not responsiveYou need to use an image with a bigger height. Yours isn’t big enough to cover the whole row on small screens when the row becomes longer. Responsiveness has nothing to do with this.
Forum: Themes and Templates
In reply to: [Moesia] icon in project sectionThose classes are not part of the theme, that’s why you can’t locate them.
You have a plugin which adds them and messes up the icon. Nothing to do with 1.26.Forum: Themes and Templates
In reply to: [Moesia] Hide header image in posts and pagesYeap. Go to Customize > Welcome area and you’ll see an option there.