Cyril Batillat
Forum Replies Created
-
Forum: Plugins
In reply to: [FAQ Block For Gutenberg] Schema JSON not workingHi,
\Faq_Block_For_Gutenberg::gutenberg_faq_block_parse_blocksusesparse_blocks()function, which returns an array of first-level blocks. The fact is that each block may contain nested block(s) where FAQ may reside.So, to parse the entire post content, I think you need to make this function recursive.
Something like that:private function gutenberg_faq_block_parse_blocks($blocks = null) {
global $post;
$block_data = array();
if( empty($blocks) && $post ){
$blocks = isset( $post->post_content ) ? parse_blocks( $post->post_content ) : array();
}
if( !empty($blocks) ){
foreach( $blocks as $block ){
if( 'faq-block-for-gutenberg/faq' === $block['blockName'] ){
$block_data[] = $block;
continue;
}
// Search in nested blocks
if( !empty($block['innerBlocks']) ) {
$block_data = array_merge( $block_data, $this->gutenberg_faq_block_parse_blocks($block['innerBlocks']) );
}
}
}
return $block_data;
}Forum: Plugins
In reply to: [All Bootstrap Blocks] Post Featured Image as Card imageGreat! I’ll give it a try.
Thank you Miles!Forum: Plugins
In reply to: [All Bootstrap Blocks] Make buttons support .btn-linkAmazing, Miles.
Thank you very much. Keep on going 🤘!Forum: Plugins
In reply to: [All Bootstrap Blocks] Make buttons support .btn-linkHi Miles, thank you for your feedback.
It would be great to have a filter hook in there, to be able to put some additional-custom-stylished variations, or to remove existing ones that we don’t want to be used on the website.Regards,
As my issue is fixed, I close this topic.
Thanks again Vladimir.Sorry Karnabal, but bidirectional relationship is definitively out of the scope of this plugin! My plugin only tends to simplify the post creation process in a relationship context.
Bidirectional relationship is a case by case problem, which can be handled on your own, using the tutorial provided on the official documentation.
Thanks anyway for your review.
Same here.
Visual Composer v4.12
Yoast SEO v 3.3.2There may be a collision with some other plugin(s). Can you try to deactivate some ?
Which version of WP are you running on ?Forum: Plugins
In reply to: [Gravity Forms User Restrictions] Plugin HooksHi,
I must admit that I didn’t looked at this plugin for a while…
Anyway, it includes some hooks that you can use to add you custom restrictions :Use filter “gravityforms_limit_user_entries_by” to declare additional restriction types (line 91)
Method
is_limit_reached()(line 296) contains some useful filters to check is the limit of form submissions is reachedHi,
Glad you like the plugin.
You will find more informations about your request in this thread : https://wordpress.org/support/topic/determine-password-entered?replies=2Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Whitelist IPsThanks for this precision Jeremy.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Whitelist IPsHi,
Seems like IPs have changed since your last post.
I guess we don’t need to whitelist all IPs listed at http://whois.arin.net/rest/org/AUTOM-93/nets, right ?
Which one can we use to whitelist Jetpack ?Thanks
Please send me a mail to contact [at] bazalt.fr
We will find a solution, if you’re ready to give me an access to your site.The manipulations specified in my previous post are just a way to figure out where the dysfunction comes from.
To enable WP_DEBUG, see https://codex.wordpress.org/WP_DEBUG
Also, did you follow the installation procedure ?
Hi,
Sorry but http://nabu-llc.com/devhome/ show me nothing but a “Enter” link, which doesn’t work.
Anyway, at first please be sure that password protected posts work fine WITHOUT the P5 plugin: there may be something wrong in your server configuration with cookies for example.
After that, please enable WP_DEBUG and WP_DEBUG_LOG, and see if there’s something wrong in wp-content/debug.log
Also check your JS console for errors, both in frontend and backend