Bob the web builder
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Emails HTML BrokenI had the same problem, and the code from @danielrufde solved it. Thanks!
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] plugin conflict with new divi updateI’ve been chatting with Divi support about this just now, they said “most likely the issue will be fixed in the next version of the theme”.
However, it is Divi of course so I wouldn’t hold my breath ??
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backup not found / size 0Yes, I’m using 1.16.21
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backup not found / size 0Unfortunately yes. I also have one site (on the same server) where older backups do work, but UpdraftPlus only makes database backups, no file backups even though the settings say it should do that weekly.
Forum: Plugins
In reply to: [Autoptimize] FontAwesome icons don’t show on desktopNever mind, I just used AO to include all CSS in the HTML. That solves the glitch problem and boosts the Pagespeed score to 93 ??
Forum: Plugins
In reply to: [Autoptimize] FontAwesome icons don’t show on desktopHi Frank,
Thanks for your quick respons. Yeah, I just added the icons as images, problem solved ??
Now I have to figure out which CSS I have to load above the fold to prevent the page showing without styling in the first second. Any idea how to find that out?
Forum: Plugins
In reply to: [Autoptimize] FontAwesome icons don’t show on desktopHi Frank,
Thanks for your quick response. Excluding wp-content/themes/Divi/style.css doesn’t fix the problem. Any other ideas? Otherwise I’ll just use images instead of icons.
Groeten uit Nederland ??
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backup not found / size 0Hi Bryle,
When I do that, only 6 or 7 backups remain, and the oldest 2 don’t work (they don’t have a log either). See this screenshot.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backup not found / size 0Hi Bryle,
Thanks for your quick response. I uploaded 2 log files of 2 different websites.
https://www.bobdewebbouwer.com/log.902c2ddcac24.txt
https://www.bobdewebbouwer.com/log.f95b7e5ee038.txtThese log files belong to backups that work fine though. The backups that give an error don’t have a log file.
Forum: Themes and Templates
In reply to: [Customify] Adding extra CSS in customizer works really slowI did some more testing, the problem isn’t related to Customify. I’m experiencing the same problems with Divi sites as well now. Sorry for the inconvenience.
Forum: Reviews
In reply to: [Customify] Great theme with a nice header/footer builderHi @pressmaximum my pleasure, thank you for making a theme with such great functionality available for free ?? Works perfectly with Elementor (as you already know, since your own website is built with Elementor too ??
I just hope you keep updating the theme, since the last update was 3 months ago. I haven’t experienced any bugs so far though, so there’s probably just no reason to update at the moment.
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] UpdatesSo… are you going to return? ??
- This reply was modified 6 years, 5 months ago by Bob the web builder.
Forum: Plugins
In reply to: [FG Magento to WooCommerce] Can’t connect to databaseThanks for your quick respons, but I think you misunderstood me. I am trying to import just 1 Magento web site, but your plugin can’t connect to the database.
So I tried your alternative solution, to import the Magento database to the same database as WordPress. But if I try that, the plugin says there are no products or pages.
PS I also tried cart2cart, that does work…
Hi Cais,
I already solved it by putting the NGG shortcode in a parallax post type as well, then it works fine.
When I put the NGG shortcode on a page like I normally would, so not in the parallax post type, and there’s also a parallax post type on the page, it will give this error.
Thanks!
YourLiVe
Forum: Plugins
In reply to: [WooCommerce] Product title doesn't link to product page anymoreHi Claudio,
Thanks for your quick respons. I did some more testing, it wasn’t a plugin conflict but a conflict with a little bit of custom code in my theme’s functions.php.
For others with the same problem, I used the code below to make the featured image link to the post, but that seems to conflict with WooCommerce 2.6. I’ve been using this code for years with WooCommerce before, never a problem, but since WooCommerce 2.6 it is a problem ??
add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 ); function my_post_image_html( $html, $post_id, $post_image_id ) { $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>'; return $html; }