vladff
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Amplify] show link to comments in each post's header or footerYou can open up a new thread and ask what you need when it’s case, I’ll be around 🙂 Meanwhile please mark this one as resolved.
Forum: Themes and Templates
In reply to: [Amplify] show link to comments in each post's header or footerWhat I meant is you can see the function in that file.
See if you can create a functions.php file with one of those plugins and simply add the code I gave you in your child’s functions.php and that’s it. Make sure there is an opening <?php tag in that file.
Forum: Reviews
In reply to: [Amplify] Love!Thank you for the review. That’s not a bug, it’s just a design choice 🙂
I replied on the support forum with a solution.Forum: Themes and Templates
In reply to: [Amplify] show link to comments in each post's header or footerThis should be done with a child theme.
See /inc/template-tags.php, there’s a function called amplify_posted_on() from lines 73 to 97. Replace it with this: http://pastebin.com/67aY6rzW
Might need some extra styling but we’ll get to that after.Forum: Themes and Templates
In reply to: [Moesia] bug on movilAdd this in your custom CSS please:
@media only screen and (max-width: 600px) { .service, .employee { background: transparent; } }Forum: Themes and Templates
In reply to: [Moesia] Section Title Color@apottlh: replace .panel with .so-panel in that code.
@bronzriri: you should probably open a new topic with your issue and be a little more specific. It doesn’t seem related to this topic.Forum: Themes and Templates
In reply to: [Fara] Adding Social Icons to Fara ThemeYeap, you have a CORS issue which is not theme related. Switch your address to the non-www version from Settings > General.
Forum: Themes and Templates
In reply to: [Fara] Adding Social Icons to Fara ThemeSure, create a menu that contains all your social links and assign it to the social position. This way you will have a social menu that works with a lot of themes out of the box. Have a look at the demo to see where and how it’s displayed: http://demo.flyfreemedia.com/fara
Forum: Themes and Templates
In reply to: [Moesia] How to edit projects pageHi,
There are no options for this but you can customize it by adding this to a custom CSS plugin:
.project-name, .project-desc, .single-projects .widget-area { display: none; } .single-projects .content-area { width: 100% !important; }Forum: Themes and Templates
In reply to: [Moesia] Call to action button disappearsHi,
That’s not a site description 🙂
Both that description and the button are hidden below 600px, mostly because they won’t fit.
Here’s how to make them show:@media only screen and (max-width: 600px) { .welcome-desc, .welcome-button { display: block; } }Forum: Themes and Templates
In reply to: [Moesia] Making the menu smallerThere are options for this in the theme. Simply go to Customize > Menu and adjust there.
Forum: Themes and Templates
In reply to: [FlyMag] Image templateYou might have Photon activated then. Could also try regenerating your thumbnails, though I don’t think it will help.
Forum: Themes and Templates
In reply to: [FlyMag] Image templateMost likely it’s because you’re loading the images from the WordPress servers instead of your own. This happens by default if you’re using Jetpack galleries. You can try with a regular image (non-gallery) to see if it’s correct.
In your case you might as well hide the sizes by adding this to a custom CSS plugin:.images-sizes { display: none; }Forum: Themes and Templates
In reply to: [FlyMag] Image templateI’m pretty sure it works. See this post on the demo page, the image from the bottom of the post: http://demo.flyfreemedia.com/flymag/fusce-ut-lorem-elit/
The image is linked to the attachment page which is handled by image.php.Can you show me a post on your website where this doesn’t work?
Forum: Themes and Templates
In reply to: [Moesia] Border pictures latest newsIn your child theme then. See right above the border code, you have a missing closing } for that last media query. That stops the border code from running.