Luke Carbis
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Blocks] Random Order for “Genesis Block Post and Page Grid”?@anth0ny No, this isn’t possible at the moment. It’s good suggestion though – I’ll keep an eye out to see how much of a demand there is for it. We’ve got a pretty heft roadmap of requested features to work through at the moment.
Forum: Plugins
In reply to: [Genesis Blocks] Remove Atomic Blocks migration messageYou could do this with WP CLI:
wp option delete genesis_blocks_migrate_from_atomic_blocks
- This reply was modified 3 weeks, 5 days ago by Luke Carbis.
Forum: Plugins
In reply to: [Genesis Blocks] Remove Atomic Blocks migration messageHi @sitebymike – try deleting the
genesis_blocks_migrate_from_atomic_blocks
andgenesis_blocks_has_content_to_migrate
options from your database.- This reply was modified 3 weeks, 5 days ago by Luke Carbis.
- This reply was modified 3 weeks, 5 days ago by Luke Carbis.
Forum: Plugins
In reply to: [Genesis Custom Blocks] bug core wordpress when using genesisHi Ugo, thanks for reporting this. Could you please post your template code?
Do you see any error messages in the Javascript console when you insert your custom block?
Forum: Plugins
In reply to: [Genesis Blocks] Can it write to meta / custom fields?Hi @wpfan1000 – you might be looking for Genesis Custom Blocks. This is the Genesis Blocks support forum.
The answer to your question is, yes, a Genesis CUSTOM Block can read and write custom field values. There’s a great tutorial on using WP_Query with custom blocks here: https://studiopress.blog/how-to-build-a-custom-post-grid-block-for-custom-post-types/
Hi @emilymoran84 – thanks for the question. You can find all the docs on what to change in your CSS and PHP over here: https://developer.wpengine.com/genesis-blocks/migrate-atomic-blocks-to-genesis-blocks/#update-css
Forum: Plugins
In reply to: [Genesis Blocks] Genesis blocks have a bottom margin! I will dont use it!@v0van Thanks for this feedback!
You’re right, some Genesis Blocks add a bit of bottom margin, as well as some other default positional styling. This is so that the blocks have some reasonable default styling out of the box for users who don’t know CSS or aren’t creating their own themes.
That said, having a common classname for all Genesis Blocks would be very helpful, and would allow you to remove the margin consistently.
That said, not every Genesis Block has bottom margin applied, and those that do don’t all have the same amount. For example, you might find that removing the bottom margin from the Call to Action block makes the Accordion block look a little off.
The best practice for removing margin will be styling each block type individually. Something like this:
.gb-block-cta { margin-bottom: 0; } .gb-block-sharing { margin-bottom: 0; } .gb-block-post-grid { margin-bottom: 0; }
Each blocks style can be found here https://plugins.trac.wordpress.org/browser/genesis-blocks/trunk/dist/blocks.style.build.css (though you might need to prettify it with a tool like https://www.prettifycss.com/).
Lastly, there is actually a way of targetting all Genesis Blocks at once, even though, like I said, it’s not really best practice. You can use this selector:
div[class^='gb-block-'] { … }
Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Profile Box Equal Height@lcokolat Forcing the profile boxes to be 300px high shouldn’t affect responsiveness (which is width-based). Generally, though, that’s an area that your theme should be able to handle.
@k8thegreat This is going to vary from site to site, theme to theme. My best advice is to mess around a bit more with Custom CSS in the customiser to see if you can get things just right.
Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Profile Box Equal Height@lcokolat One option is to add some custom CSS. In your Customiser, navigate to the page where the block is placed, and add the following Additional CSS:
.wp-block-atomic-blocks-ab-profile-box { height: 300px; }
You might need to tweak that height value to get everything perfect. Note also that this will effect all profile blocks on your site, not just the ones on the current page. You can use the Custom CSS Class feature in the Advanced section of the editor to make the changes specific to this one block.
@k8thegreat One option is to mess around with the Padding settings for the bottom-most block in each pricing column (usually the Buy Now button). By tweaking the bottom padding, you should be able to align the heights equally.
Another option is to add some custom CSS. In your Customiser, navigate to the page where the block is placed, and add the following Additional CSS:
.gb-block-pricing-table-inside { height: 500px; }
You will need to tweak that height value to get everything to line up right for you. Note also that this will effect other pricing table blocks on your site. You can use the Custom CSS Class feature in the Advanced section of the editor to make the changes specific to this one block.
@dpsaha It looks like there’s some excerpt interference happening on your site via something called “AddThis Advanced Settings”, “AddThis Share Buttons”, and “AddThis Related Posts”.
Could this be a plugin? Could you try disabling it?
Forum: Plugins
In reply to: [Genesis Blocks] Post and Page Grid – No Tag filter?Hey, @piksel – no release date as of yet
Forum: Plugins
In reply to: [Genesis Blocks] Disappearing Social Icons@wanderingappalachia Have you tried maybe switching out to a default theme?
Forum: Plugins
In reply to: [Genesis Blocks] Post and Page Grid – No Tag filter?Hi @piksel – thanks for the suggestion. I can confirm that it’s on our radar. 🙂