Marko Hoven
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Tax (formerly WooCommerce Shipping & Tax)] 3.0.6 breaks installdito!
I rolled back from 3.0.6 to the 3.0.5 version from the overnight backup.
Activated that version and site works again…Now it’s up to Woo to fix!
- This reply was modified 10 months, 1 week ago by Marko Hoven. Reason: update with 'solution'
- This reply was modified 10 months, 1 week ago by Marko Hoven.
Forum: Plugins
In reply to: [Attachments] TypeError when permanently deleting a Media Library fileHad the exact same problem today!
I solved it with:// since we have an array for our fields, we need to loop through and sanitize
if ($params['fields']) {
for ($i = 0; $i < count($params['fields']); $i++) {
$params['fields'][ $i ] = sanitize_text_field($params['fields'][ $i ]);
}
}Did it with this check, because there is a similar one at line 129
Forum: Themes and Templates
In reply to: [OceanWP] Custom font not working with 4.40Last updates went flawless, so for me all problems have been solved.
I cannot reproduce this either; Only if I would go back to older backups, but there is no reason to do so.
Thank you!~
These plugins are now up to date:
– Ocean Extra (from version 2.4.1 to 2.4.2) : https://ww.wp.xz.cn/plugins/ocean-extra/These themes are now up to date:
– OceanWP (from version 4.0.1 to 4.0.2)Forum: Themes and Templates
In reply to: [OceanWP] Custom font not working with 4.40Just to give you the full timeline of what happened with my websites:
- 16 October – automatic updates
These plugins are now up to date: - Ocean Extra (from version 2.3.0 to 2.4.0) : https://ww.wp.xz.cn/plugins/ocean-extra/
These themes are now up to date: - OceanWP (from version 3.6.1 to 4.0.0)
=> After this update, Google fonts were no longer visible on the website(s)
=> ‘Enable Google Fonts’ setting was set to ‘disabled’
=> Manually enabled the setting ‘Enable Google Fonts’ and Published
=> Google fonts were visible again on the website(s)- 21 October – automatic updates
These plugins are now up to date: - Ocean Extra (from version 2.4.0 to 2.4.1) : https://ww.wp.xz.cn/plugins/ocean-extra/
These themes are now up to date: - OceanWP (from version 4.0.0 to 4.0.1)
=> After this update, Google fonts again were no longer visible on the website(s)
=> ‘Enable Google Fonts’ setting was set to ‘disabled’ again
=> Manually enabled the setting ‘Enable Google Fonts’ and Published
=> Google fonts were visible again on the website(s)I just hope with the next update the setting will stay ‘enabled’.
Thank you for all your support so far.Marko
Forum: Themes and Templates
In reply to: [OceanWP] Custom font not working with 4.40Hi @skalanter,
“Works on my computer” …
Don’t know what I do different, but I did have to enable this setting again this morning for 15 different websites…. (yes, I do like OceanWP)
I do not have ‘Local fonts’ enabled.
All my updates last night (and this morning) were from v4.0.0 to v4.0.1 and v2.4.0 to v2.4.1
Hope that helps you in finding the problem.- This reply was modified 1 year, 7 months ago by Marko Hoven. Reason: versions added fyi
Forum: Themes and Templates
In reply to: [OceanWP] Custom font not working with 4.40UPDATE:
I had one website that did not update yet, so I did that one manually.
Looks like the update of Ocean Extra did not break the loading of Google fonts, but after the update of the theme itself, the setting of “Enable Google Fonts” was switched to OFF again. (After my manual fix last week where I had to switch them ON for all my websites.)
So had to go into customize again and enable it again:Go to WP Dashboard > Appearance > Customizer > Typography > Google Font Settings and enable Google Fonts and Publish!
Forum: Themes and Templates
In reply to: [OceanWP] Custom font not working with 4.40Don’t know how you guys ‘corrected’ this, but last night all my websites were updated and LOST THEIR GOOGLE FONTS AGAIN!
~
These plugins are now up to date:
– Ocean Extra (from version 2.4.0 to 2.4.1) : https://ww.wp.xz.cn/plugins/ocean-extra/These themes are now up to date:
– OceanWP (from version 4.0.0 to 4.0.1)Forum: Themes and Templates
In reply to: [OceanWP] Custom font not working with 4.40@skalanter Thank you!
I signed up for the newsletter, so hopefully I will get the notifications in the future.Marko
Forum: Themes and Templates
In reply to: [OceanWP] Custom font not working with 4.40Same issue!
All websites using OceanWP lost their Google fonts after the up-date to version 4.0.
I had to manually enable the fonts again!
Looks like someone at OceanWP forgot to check backwards compatibility.
Go to WP Dashboard > Appearance > Customizer > Typography > Google Font Settings and enable Google FontsAlso posted here: https://markohoven.com/2024/10/17/oceanwp-v4-0-loses-google-fonts/
- This reply was modified 1 year, 7 months ago by Marko Hoven.
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP Header background image shows black area!My function was:
function my_page_header_bg_img($bg_img) { if (is_singular('post')) { $bg_img = '/wp-content/uploads/2023/10/hero2023-08.jpg'; } else { $bg_img = '/wp-content/uploads/2023/10/hero2023-01.jpg'; } return $bg_img; } add_filter('ocean_page_header_background_image', 'my_page_header_bg_img');But that stopped working, so I had to change it to:
function my_page_header_bg_img($bg_img) { if (is_singular('post')) { // $bg_img = '/wp-content/uploads/2023/10/hero2023-08.jpg'; $bg_img = 1169; } else { // $bg_img = '/wp-content/uploads/2023/10/hero2023-01.jpg'; $bg_img = 1162; } return $bg_img; } add_filter('ocean_page_header_background_image', 'my_page_header_bg_img');