John Parris
Forum Replies Created
-
@baian66 we’ll have an update this week that adds a double opt-in option.
@nguyencongtoan The content inside the accordion is saved to the page’s content by WordPress like any other content. Lazy loading the content when the panel is expanded would require some custom development, which would likely involve doing a whole new custom accordion block to save that data somewhere other than where WordPress saves it by default.
Forum: Themes and Templates
In reply to: [Atomic Blocks] Email Newsletter Block Code Error<GWMW STYLE=”DISPLAY:NONE;”>looks like it’s coming from some other piece of software on your site. We don’t have anything like that in Atomic Blocks.Does it work correctly if you temporarily deactivate all plugins and switch to the default Twenty Nineteen theme?
If so, you can start turning things on one by one until you find what’s causing it.
@abrightclearweb this is something we’re working on now and will continue to work on in the coming months. We have a fix coming in version 2.0.1 that will reduce the amount of CSS by a pretty good amount. Keep an eye out for that. We’re aiming to launch that next week I think.
@renaisens yes, you can add blocks inside the accordion’s content area. Click the + sign the editor shows while you’re inside that area and you can choose any blocks you want there.
I have a more permanent solution for you so that you don’t have to keep editing the plugin’s files to remove the custom image size.
Add the following code snippet to your site to remove the image sizes registered by Atomic Blocks. If you’re not familiar with how to add code snippet to your site, we recommend using Pluginception to create a custom plugin, paste in the code, and activate your new plugin.
Here’s the code you need.
add_action( 'after_setup_theme', function () { remove_image_size( 'ab-block-post-grid-landscape' ); remove_image_size( 'ab-block-post-grid-square' ); }, 11 );Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Custom field in post gridIf you need to display something custom on the front end where the grid displays, you can use
the_excerptfilter. The block runs that core WP filter when displaying the excerpt.If that doesn’t work for you, let me know. We can consider adding custom hooks and filters in a future update.
Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Accordion close button@dantianhealth @swinggraphics this is something we have on our roadmap. I don’t have an expected release date yet, but we will be working on it.
Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Custom field in post grid@swinggraphics can you give more detail about what you mean specifically?
Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Nofollow tag for CTA block@sdyson A CSS class wouldn’t add the
nofollowattribute. You could do it as @madison4atx outlined, but that would prevent you from editing the block in the future unless you do it via HTML.I’ll add this request to our list and see about adding an option to the block for adding
nofollowin a future update.Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Formating Deleted@nattykoo which version of the following did you have installed when this happened?
– Genesis
– Monochrome
– Atomic BlocksDo you have any other plugins active, like the Gutenberg plugin?
If you open the Developer Tools console in your browser, do you see any errors there when this happens?
Hi @baian66
We’re aware of this issue and will have a fix soon. This is the theme forum, but there’s another support thread in the plugin forum here: https://ww.wp.xz.cn/support/topic/email-newsletter-auto-subscribes/
We’ll have an update as soon as possible.
We’re aware of this issue. We’ll have a fix in the very near future. Sorry for the inconvenience!
@braffenberg which versions of the following are you using?
– WordPress
– Gutenberg Plugin
– Atomic Blocks pluginAlso, if you’re familiar with how to do it, you can open your web browser’s developer tools console and look for any error messages. If you see any, please send some screenshots.
@prettiggeleerd Ah yes, I see what you’re saying now. Basically we need to not show a post in the grid if it’s being displayed within that same post.
Thanks for the report. I’ll add this to our list and see about getting it in an update in the near future.