ursulaniamh
Forum Replies Created
-
Bruna, thanks for the reply.
Heres what seems to be happening in my WordPress build:
A welcome newsletter is only sent to a named email address one time – this rule is not changed by deleting the subscriber in the dashboard or by rejoining that subscriber to the list again.
Once sent to a subscribers email that “Welcome Email” cannot be sent again even if I delete, reload and re-subscribe that same subscriber. Is that right ?
From a devs POV thats a PITD ( pain in the derrière ) – because I test on my single gmail account time and time again until things look right…
Forum: Plugins
In reply to: [Block Lab] BlockLab via custom post type args….yep, that worked…
‘template’ => array(
array( ‘core/image’, array( ‘level’ => ‘5’, ‘align’ => ‘wide’),
array( ‘core/paragraph’, array( ‘level’ => ‘5’,’className’ => ‘float-test-para’ ) ),
array( ‘block-lab/bloggrid’, array(‘level’ => ‘5’) )
)Forum: Plugins
In reply to: [Block Lab] block.css not loaded in live pageis this the suggested fix maybe:
add_action( ‘block_lab_render_template_anchor-block’,
static function() {
wp_enqueue_style(
‘example-stylesheet-slug’,
// Path to stylesheet
);
}
);Forum: Plugins
In reply to: [Block Lab] block.css not loaded in live pageBUT , let me say its a great approach to block building, just what Gutenberg needs.