bobbingwide
Forum Replies Created
-
Ditto. The notice goes away if you switch to US English and/or disable WP_DEBUG_DISPLAY.
But, IMHO, it’s a bug that needs fixing.
- This reply was modified 1 day, 4 hours ago by bobbingwide.
Forum: Plugins
In reply to: [oik bwtrace] Function name conflict, too genericOops, I forgot to update this when I released oik-bwtrace v4.0.0. That’s similar to the solution I used in my fix. I also renamed
wp()
tobw_ep()
. But to avoid version dependency problems I changed all my plugins that usedwp()
to callbw_echo( '</p>' )
instead.Just to confirm @helgeopedal and @eberswine that I have submitted a support request to Timely to fix the problems associated with PHP 8.1 and above. Messages are not produced with PHP 8.0.
By copy @yenmer, I can confirm that the PHP error log gets swamped with PHP 8.1
There are 17 messages each time vendor/twig/Lexer.php is loaded.
One way to avoid these messages is to revert to an earlier version of PHP.
You’ll need to downgrade to PHP 8.0 or earlier.
Note that PHP 8.0 reached End Of Life (EOL) on 2023-11-26.
This plugin should be tested up to at least PHP 8.2
Forum: Plugins
In reply to: [oik bwtrace] Function name conflict, too genericThanks for the heads up. I wrote those functions in bobbfunc.php back in 2009, before I started writing any code for a WordPress plugin. In those days I didn’t know about namespaces and/or PHP classes.
Can you confirm the tweaks you needed to make?
Forum: Plugins
In reply to: [Elementor Addons by Livemesh] Elementor CompatabiltyI’m getting a message regarding compatibility of v8.3.7 with Elementor 3.22.0.
Time for another minor update?
- This reply was modified 5 months ago by bobbingwide.
Forum: Plugins
In reply to: [Weight zone shipping for WooCommerce] Free shipping limitYou can use the Free shipping shipping method as an alternative shipping method based on the cart price with a different value for the method per Zone
Hi, you can do this by setting a non-numeric shipping cost.
99999 | ZZZ | Use courier above 699g
Forum: Plugins
In reply to: [SB Chart block] Update throws a site critical errorSorry about that. The bw_trace2() function call is a debug tracing routine. The problem’s fixed in v1.2.3
Forum: Plugins
In reply to: [All Bootstrap Blocks] Column blocks not behaving responsivelyHi Miles, thanks for that. I’ve gone for a pragmatic approach implemented in my theme’s code. I dynamically replace the
col
class withcol-12
add_filter( 'render_block_areoi/column', 'nja_render_block_areoi_column', 10, 3 ); function nja_render_block_areoi_column( $content, $parsed_block, $block ) { $content = str_replace( 'col areoi-element', 'col-12 areoi-element', $content ); return $content; }
I did have to update other bits of my theme’s code. For an iPad Mini I found I needed
col-lg-n
rather thancol-md-n
Hi, just to confirm that I made two changes.
The second fix resolved the Notice for $file not set.
Example file:wp-includes/css/dashicons.min.css
The first fix effectively disables
the server_is_windows()
logicForum: Plugins
In reply to: [oik] Fatal ErrorHi, sorry for the delayed response.
Can you confirm which versions of oik, cookie-cat, WordPress and PHP you’re using
I’ve tested v4.1.1, 4.1.2 and 4.1.3 with cookie-cat v1.4.4 and v1.4.5 and not had a problem.
BTW: The new version of oik, v4.1.3, supports PHP 8.0. Coming soon
Forum: Plugins
In reply to: [Weight zone shipping for WooCommerce] wrong calculation in check out page.Hi. The shipping cost figures that you got are what I would have expected for a single shipper. The plugin calculates the shipping cost based on the total weight of the cart. When the total weight of the products is between 1.0 and 1.5 kilos then the cost is 940.
Your system has applied this cost twice.
The oik-weight-zone-shipping plugin doesn’t cater for multiple packages.
Is this a requirement?Forum: Plugins
In reply to: [Weight zone shipping for WooCommerce] Restrict shipping class does not workHi Marek, could you provide some more information regarding your problem?
The Allowed shipping classes select list shows the available shipping classes.
The Restrictions only take effect when you tick the Restrict shipping classes check box.
The you have to select the Shipping classes that you want to allow for the particular shipping method.See also https://www.oik-plugins.com/oik-faq/restrict-shipping-classes/