Gantry
Forum Replies Created
-
Forum: Plugins
In reply to: [Gantry 5 Framework] Administration TranslationHi,
First of all – THANK YOU very much for your translation 🙂
I’m not exactly sure what you mean. Can you please explain this more?Thanks,
Jakub- This reply was modified 9 years, 1 month ago by Gantry.
Forum: Plugins
In reply to: [Gantry 5 Framework] Can “WordPress Posts” skip current post?Hi,
I’m very sorry for late reply. Do you still need support with this topic?
Thanks,
JakubForum: Plugins
In reply to: [Comments - wpDiscuz] Broken StyleAwesome 🙂
Forum: Plugins
In reply to: [Comments - wpDiscuz] Broken StyleHi,
One of the Gantry devs here. There’s an issue with your plugin and ours caused by the overbuffer. Both plugins are using it but in the wpDiscuz you clean it and discard it’s current content and this is where the issue comes from.
It’s an easy fix 🙂
In
plugins/wpdiscuz/templates/comment/comment-form.phpon line56replaceob_clean();with:
ob_get_clean();This should fix it 🙂
Thanks!
JakubForum: Plugins
In reply to: [Gantry 5 Framework] How to translate it?I think that only moderators can modify it.
Forum: Plugins
In reply to: [Gantry 5 Framework] How to translate it?Well it would be fine to use WP.org online tools, but unfortunately we aren’t able to put our themes into the WP.org theme repository as they can’t meet the theme directory requirements. One of the requirements is ie. that theme needs to be standalone and mustn’t require any separate plugins to make it work (Gantry 5 plugin in our case).
Sorry about that.
Forum: Plugins
In reply to: [Gantry 5 Framework] How to translate it?Hi,
Yes, for the front end, you need to translate the .pot file and save it in the same directory with a filename that is only a language country code so pt_BR.po and pt_BR.mo
With which things you exactly need help?
Thanks,
JakubForum: Plugins
In reply to: [Gantry 5 Framework] G-blocks in grids do not seem to be responsiveIt’s all being driven by CSS and media queries. That’s why it’s important to have these breakpoints values set 🙂
This is piece of code that handles it :
body [class*="size-"] { @include breakpoint(mobile-only) { @include flex-grow(0); @include flex-basis(100%); max-width: 100%; } }If you want to, you can contact me on Gitter (@newkind) chat and give me your admin access so I could take a look.
Jakub
Forum: Developing with WordPress
In reply to: Auto truncate blog post excerptsGreat 🙂
Forum: Plugins
In reply to: [Gantry 5 Framework] Offcanvas menu problem after Gantry 5.4.3 update@fx11 please try latest Gantry 5.4.5 and clear cache and recompile CSS too.
Thanks,
JakubForum: Plugins
In reply to: [Gantry 5 Framework] G-blocks in grids do not seem to be responsiveBy fixed width you mean 33.3%? Because you have set your content into 3 columns and this is the proper behavior. When the mobile breakpoint hits (set to 30rem on my screenshot) the code should auto switch from
max-width: 33.3%;tomax-width: 100%;filling the whole width without any additional CSS modifications. If it’s not doing this, then this means that something is set up wrong.Forum: Plugins
In reply to: [Gantry 5 Framework] Offcanvas menu problem after Gantry 5.4.3 updateOk, this issue should be fixed in the latest Gantry 5.4.4
I’m marking this as resolved. Let me know if it’s fixed for you.
Forum: Plugins
In reply to: [Gantry 5 Framework] Offcanvas menu problem after Gantry 5.4.3 updatePlease try again, I live in the Europe timezone so when you wrote to me, I was already gone for the night.
Thanks,
JakubForum: Plugins
In reply to: [Gantry 5 Framework] G-blocks in grids do not seem to be responsiveYou’re using Nucleus engine builtin into Gantry (you can disable it, but it provides the styling for many core elements and this would force you to implement your own sort-of engine) which is a responsive engine, thus the classes like
size-33-3to adjust the content of your site to the viewport size.The viewport size you’re asking about is a mobile view range. Can you please tell me what value you have set for the Mobile Breakpoint in Theme Settings > Style.

Depending on that value Nucleus should force
max-width: 100%;instead of the 33.3% value that you have on your site.Thanks,
Jakub