gambitph
Forum Replies Created
-
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Unexpected error Image BlockHi @evabo!
Thanks for reporting us this issue. As it turns out, the reason why the block error happened was because of the Open in New Tab setting. We’ll address this as soon as possible.
In the meantime, not ticking the Open in New Tab will avoid the block error and will keep the image block editable. If you tick the Open in New Tab, that’s where the error happens. It shouldn’t affect your actual site though. The image block will be editable again once we release the fixes.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Blog Posts Excerpt lengthCurrently, the posts block will show the entire excerpt. Since excerpt length will be useful, we’ll consider adding this setting. 🙂
We also added a GitHub entry for it here: https://github.com/gambitph/Stackable/issues/101
Hello @imemodvd,
The gradient menu and homepage are done using Custom CSS. If you’re familiar working with CSS and want to give it a try, here’s a sample for the menu:
/* Gradient Menu */ .site-header { background: linear-gradient(to right, #ab5af1, #fb6874) !important; }The same thing works with other blocks and contents on your page. You need to find the selector from your page though. Selectors for the page depends on your contents and where do you want to add the gradient.
If you want to know more about how Linear Gradient works, you can also check this out: https://www.w3schools.com/css/css3_gradients.asp
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Expand / Show more Block (Custom)Hi there! 🙂
Expand / Show more block can’t have buttons at the moment. Great idea though! I’ll add your idea to our suggestions list. 👍
Hi there!
This feature is in our suggestions list. We’ll consider this in the future version. 🙂
If you have any ideas that you can add for the accordion capabilities, you may also do so here: https://github.com/gambitph/Stackable/issues/50
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] CPT, Toolset IntegrationCustom Post Type’s custom fields may be complicated to implement especially that there will be many different third party plugins involved. As possible, we want to implement features with Stackable that will be compatible with most of the other plugins.
Thanks for letting us know about your idea though. We’ll have a look at this feature and see if it’s possible without causing an issue.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Custom Post Types fieldsHi @irixzafra,
Thanks for sharing us your thoughts. Adding Custom Post Types for the posts block is definitely a must add. We’re including this in our suggestions and in the GitHub repo issues here: https://github.com/gambitph/Stackable/issues/94 🙂
Thanks for heads up @evabo! 🙂🙂🙂
Hi Eva,
Sure, you can send me a link via e-mail at alyssa@gambit.ph
Anyway, if you feel like giving another try, please make sure to add
!importantfor the background color so it will override the default white background./* Change Feature Grid background color */ .ugb-feature-grid__item { background-color: #ff0000 !important; }This is a sample of how it will look like: https://i.imgur.com/xK0QJej.png
You can use hex colors to replace the background and text colors.If you apply the custom CSS via theme, the color will be applied on all Feature Grid blocks in your site. But you can always use a Custom CSS plugin to specifically add the styles in one page. 🙂
Hi @evabo!
The background and text color for Feature Grid block are in our suggestions list. 😊
In the meantime, this is currently achievable using CSS.Here’s a sample CSS for them:
/* Change Feature Grid background color */ .ugb-feature-grid__item { background-color: #ff0000; } /* Change Feature Grid title color */ .ugb-feature-grid__title { color: #00ff00 } /* Change Feature Grid description color */ .ugb-feature-grid__description { color: #00ff00 }Hi Manuela,
Thanks for letting us know about the issue. I’ve listed this down in our issues via GitHub repository here https://github.com/gambitph/Stackable/issues/90
As a workaround, if you don’t mind removing the entire link behavior for your image box, you can add this CSS to disable it.
.ugb-image-box__overlay { pointer-events: none; }You can also add your Custom Class if you want to disable a specific image box only.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Adding stackable to mesmerizeHi Alex,
Stackable blocks will work with any theme as long as the theme would allow you to use the Block Editor. We do also recommend using Gutenberg ready themes for additional customizations. 😊
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Container Sizes are not workingHello @wpaim,
We saw your container (with icon list) and it’s set in full-width. Is this the default size you’re referring to by any chance?
Aside from the block settings, it’s possible that your theme may influence the width of your container. In an example, if you’re using a template that has content width, the block width may only extend up to your theme’s content width. Which is also a factor in case you can’t have your container in a certain width.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] OnePage Express Theme BugHi @macgab,
Thanks for showing us your site! 😊 Looks like your current theme is adding a
display: table;on the image block. Anyway, we’ll provide you a Custom CSS to reverse this exclusively for Stackable blocks.You can add this in your Theme Customizer’s Additional CSS:
[class*="wp-block-"]:before { display: none; }Hi there!
The frontend_blocks.css is needed since this is where the block styling is.
Can you tell us more about the error you encountered? What is the error prompt and how can we replicate this? Thanks!