gambitph
Forum Replies Created
-
In the current version, the accordion blocks are created individually and have no interaction with other accordion blocks.
We’ve created an entry in GitHub for you https://github.com/gambitph/Stackable/issues/48
If you have more ideas of other features that need to be in Stackable, we encourage you to post them here: https://github.com/gambitph/Stackable/ It will help us and our other users to gather them up for the updates. 🙂
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] CSS variables – IEHi @anderthalb ! When you’ve mentioned that since CSS variables are ignored by IE/EDGE, do you mean that your container block (or what’s inside) settings aren’t being applied?
We’ve tried creating a sample page via sandbox and viewed it using EDGE and IE11, but we’re not able to see it. There might be a particular setup needed to see this problem.
Hope you can guide us through on how to replicate this. Thanks!
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Enhancement: TestiominalsThe current Testimonial block was made with a particular design in mind. If you have any suggestions or block requests for Stackable, we highly encourage to post them via GitHub instead: https://github.com/gambitph/Stackable
About the questions:
1. It’s currently not possible to set different style defaults or option available for different users/roles.
2. This isn’t possible also in Stackable without modifying how blocks are registered to the block editor. However, the block editor has a
blocks.registerBlockTypeJS filter that fires right before blocks are registered. You can use that to override some of the block’s settings. There’s also ablocks.getBlockDefaultClassNamefilter that can be used to change the classNames generated for the blocks.Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] accordion in wp column blockWhat I mean is to create two individual blocks with the same content as your column-accordion setup. Like, we make two different contents: one is only visible to the desktop, the other is only visible to tablet and mobile.
Here are further details on how to do so:
1. Duplicate your entire column setup so you end up having two of them.
2. On your first setup, this one will be the one visible for the desktop only. Your two-column setup can remain as is. All you need to do is to go to your column’s Advanced tab and add your Custom Class (example: custom-class-1): https://i.imgur.com/q5gwtnR.png after that, you add this Custom CSS:
@media only screen and (max-width: 1024px) { .custom-class-1 { display: none; } }Adding this will hide your two-column accordion when your screen-width is 1024px and below, which will also avoid the alignment issues coming from Block Editor’s two columns.
What comes next is that, since the two-column accordion is now missing, how are we gonna make a setup that’s for the tablet? This is where the duplicate comes into place.
3. Before you proceed with your second setup, create a Container block and add all your accordion in there. This will help grouping all the accordions into a one column container. This will save a lot of time as you’ll only need to label one block for the Custom CSS.
4. Similar to the two-column accordion, we’re going to use a Custom Class (example: custom-class-2) and add a CSS to make it only visible to tablets:
@media only screen and (min-width: 1025px) { .custom-class-2 { display: none; } }This one, on the other hand, will hide your accordion with one-column if your screen width is 1025px and above.
Hope that this explains it clearly. This is only a workaround since Block Editor’s columns don’t seem to align properly for tablets.
- This reply was modified 7 years, 3 months ago by gambitph.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Button IconsSorry, this problem doesn’t seem to happen in our end. We tried to replicate this by adding a button and checking on the icons, the icon preview works and we’re able to add one. Are you using the latest version of WordPress and Stackable by any chance? Does the page you’re working on have any other blocks added?
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Feature grid background colourThe background color for Feature grid will be added in the next versions. 🙂
If you want though, you can still add this CSS via Additional CSS to add a background color to your Feature Grid. Here’s a sample:
.ugb-feature-grid__item { background-color: #000000 !important; }Hope this helps!
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] How to get Font Awesome IconSorry, currently, we don’t have a standalone icon or a similar block to the one you showed us. Thanks for showing us the sample though. I’ll let our developers know about this. Icon with text will definitely be useful! 🙂
- This reply was modified 7 years, 3 months ago by gambitph.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] accordion in wp column blockHi @theart8 ! We checked on this and looks like it’s an issue with Block Editor’s columns. We tried a similar setup but only with normal text and the same alignment issues happen. We would honestly suggest changing your setup to one column for now till the issue has been addressed.
If you’re familiar with using Custom CSS though, I think you can try making a duplicate of your column accordions. Set one to do a two column, the other being one column. Then, we can use Media Query to assign which will show up for desktop or tablet. This can work as a simple workaround. 🙂
The accordion can only add texts at the moment. Thanks for letting us know about your interest though, I’ll let our developers about your idea and see if we can add this in the future. 🙂
Hey @danielgm ! 🙂 Sorry, this problem doesn’t happen in our end. It’s possible that your site may have a theme or styling that changed the notification’s shadows/border-radius. Hope you don’t mind showing us the page with the notification, we’ll check it out and see what happened.
Also, before you proceed further, please make sure that you have the latest version of Stackable. Letting us know the browser (and version) you’re using and how to replicate this problem helps as well.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Image Size in Feature GridYou’re right about the image sizes in the Feature Grid. They’re based from the container’s size, thus the image sizes were overridden
If you want to resize your images, you can use Custom CSS in the meantime. Here’s a sample for reference:
.ugb-feature-grid__image { height: 150px; width: 150px; margin: 0 auto; }Please make sure that you’re using version 1.11 to achieve the results.
You may also include an Additional CSS class from the settings if you only want this in a specific grid. 🙂
- This reply was modified 7 years, 3 months ago by gambitph.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] DevelopmentThis will be available in the next version! 🙂
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Header block – SuggestionThanks for the feedback @yor1ck. No worries, we have this in our lists to update. 🙂
In the meantime, you can use the Block Editor to edit your button as HTML (via Edit as HTML) and add the target=”_blank”. This should do as a workaround.
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] DevelopmentSorry, not yet. As of the moment, the source files are already included in the plugin, but some of the necessary assets and files for you to build it aren’t in there.
Rest assured, this is something we really want to tackle moving forward. Right now we’re concentrating on a few huge updates, and probably after this gets released we’ll have the time to move the repo 🙂