jgasba
Forum Replies Created
-
A second optional time of day can be set to have a channel generating and sending two newsletters in a day. It is sometimes used by magazines or news sites that want to send two updates, one in the morning and the other one sometime in the afternoon.
Found the answer in the docs.
It would be way easier if it was explained directly in the UI of the plugin though.Thanks for taking the time. That’s what I feared 🫠
indeed Gmail does not support SVG nor base64.
Simple png it is then.Thanks !
For now I’m trying to convert my small image into a base64 and include it into my template.
I’d appreciate it, thanks. I stay tuned.
Nevermind, this was managed at admin level in
/wp-admin/admin.php?page=newsletter_subscription_formThanks a bunch @michael-travan. I created my own footer block and it worked like a charm. Perfect!
Forum: Plugins
In reply to: [bbp style pack] Plugin adding 12 CSS requests to my siteFixed it too. 👍👍 Thanks. Have a good one
Forum: Plugins
In reply to: [bbp style pack] restrict_manage_posts makes website super slowFixed it! 👍
Thanks for the work on the plugin!Forum: Plugins
In reply to: [OOW PJAX] Is it compatible with Buddypress?Ahah ok sorry, thanks for the answer. I’ll dig into the code and test things and come back at you if need be. Have a good one.
Forum: Plugins
In reply to: [OOW PJAX] Is it compatible with Buddypress?Was that answer ChatGPT or something similar ?
Forum: Plugins
In reply to: [bbp style pack] Plugin adding 12 CSS requests to my site(buggy editor duplicated post)
- This reply was modified 1 year, 1 month ago by jgasba.
Forum: Plugins
In reply to: [bbp style pack] Plugin adding 12 CSS requests to my siteAny minuscule gain is good to take when you serve 10000s of users daily (not counting the spam bots -_-) with the cheapest server possible to cut costs.
I don’t know if you take contributions.
I simply added a check for filesize before including the files in generate_css.phpforeach ( $block_css_array as $slug => $css_filename) { // if file exists, enqueue with custom URL location if ( file_exists( $src . $css_filename ) ) { if ( filesize( $src . $css_filename ) >= 2 ){ return; } //$location = home_url().'/'.$location ; wp_enqueue_style( $slug, $src_url . $css_filename, array(), get_option( 'bsp_version' ) ); } // else, enqueue with default URL location else { if ( filesize( bsp_default_full_block_location( 'url', 'css' ) . $css_filename ) >= 2 ){ return; } wp_enqueue_script( $slug, bsp_default_full_block_location( 'url', 'css' ) . $css_filename, array(), get_option( 'bsp_version' ) ); } }Thanks for adding the switch! Much appreciated. Thanks for taking the time to listen to feedback
Happy that could have helped detect that. Have a good one!
I do have it enabled and indeed I have no more bug when I put it to false.
That’s a bit annoying when you dev blocks and plugins yourself :/I have used bbpress default shortcodes for now