webaware
Forum Replies Created
-
Forum: Plugins
In reply to: [SSL Insecure Content Fixer] Http to Https: unsecure due to font issue?Are you saying that you still have a problem when you are logged in? If you view the browser console in Chrome, what is it warning about?
Ctrl-Shift-J or ⌘-Shift-J to view the console.
Do you have the admin bar showing on the front end? Might be something from that, e.g. your avatar. I have some code to clean up avatars, but maybe something on your site is getting around it.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Http to Https: unsecure due to font issue?G’day gustoandgecko,
I’ve looked through the site, and all seems to be OK now — well done. What problem are you seeing, and on which page?
Also, I can see now why Capture didn’t fix it, so thanks for helping me find a bug!
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Http to Https: unsecure due to font issue?You can login to your admin with HTTPS on this link:
https://gustoandgecko.com/wp-admin/
Always interact with your site on HTTPS, it will save you grief!
I can see the link to your font right there in the page header, so it should be being caught by this plugin. My guess is that whatever is adding the link to the font (e.g. your theme) has hard-coded it as http: in the code.
It looks like your theme is loading other CSS properly, so I’m wondering if you have a plugin that is loading the Google web font. Or perhaps you have a child theme doing it? If you can track it down, you can get it fixed. Search your website files for
https://fonts.googleapis.comA simple solution should be to change the fixer settings to Capture. You can find them in your admin:
Settings > SSL Insecure Content
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Http to Https: unsecure due to font issue?G’day gustoandgecko,
That domain name doesn’t resolve, I can’t look at your website. I suggest that you renew your domain name!
As to your original question, the font face URL is likely buried somewhere in a CSS file, perhaps one generated by your theme. I recommend that you always login to your admin with HTTPS, and then edit / save your theme settings to see if that fixes your problem.
Let me know if you get your domain name working again.
cheers,
RossG’day krishkusuma,
Look at your Settings > General
It might be that your WordPress Address (URL) and / or Site Address (URL) are set to use HTTPS: https://lomboknews.id/
Since your website doesn’t have a valid certificate, best to have the URLs as just http://lomboknews.id/
If that’s not it, look for plugin or theme settings that say something like Force HTTPS, and turn that off.
cheers,
RossForum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] bzip2 no longer availableG’day @duongcuong96,
Thanks for the quick response, and my apologies for getting back to you so late.
It’s a pity that bzip2 has gone; I particularly like it for db backups where it can squeeze another 25% off the archive size.
But I still love the plugin, and have finally added a review — thanks for the prompt, have been meaning to!
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] one page shows as not secureG’day Ferris,
That page loads fine on HTTPS, so it’s just that your link to it is HTTP. Edit the page that links to that page, and fix the link.
This plugin fixes insecure content, it doesn’t go changing links (which could be problematic).
cheers,
RossForum: Plugins
In reply to: [Eway Payment Gateway] Recurring PaymentsNo worries, good luck with the subscriptions!
cheers,
RossForum: Plugins
In reply to: [Eway Payment Gateway] Recurring PaymentsG’day Nicki,
You can do that via another plugin that supports token payments:
https://ww.wp.xz.cn/plugins/woocommerce-gateway-eway/
cheers,
RossForum: Plugins
In reply to: [Eway Payment Gateway] Place Holder ChangeG’day Dhruvit,
That is indeed my plugin. I don’t know why you’re having trouble, this code below works fine form me.
/** * change some WooCommerce labels * @param string $translation * @param string $text * @param string $domain * @return string */ add_filter('gettext', function($translation, $text, $domain) { if ($domain == 'woocommerce') { if ($text === 'CVC') { $translation = 'CVS'; } } return $translation; }, 10, 3);cheers,
RossG’day Matt,
Yeah, I noticed that. Shame they haven’t gotten on top of it yet, but I understand prioritising (have probs of my own there). Was happy just to get it working again, it’s a wee ripper. Thanks for putting it up here for us!
cheers,
RossForum: Plugins
In reply to: [Eway Payment Gateway] Place Holder ChangeG’day 12054d,
You haven’t provided a link to the website, and I even had to guess that you were using WooCommerce. If you want more help, you need to provide more information… at least a link to the page where I can see this please. For all I know, you might be using someone else’s eWAY integration (I should be able to tell if you can provide a link!)
cheers,
RossI don’t know why, but this magnificent plugin isn’t just working any more. But it’s easy to get going again.
Add this code snippet to a simple plugin, or your theme’s functions.php:
/** * allow FooGallery Owl Carousel Template to be found as a template */ add_action('after_setup_theme', function() { if (class_exists('Owl_Carousel_Template_FooGallery_Extension', false)) { new \Owl_Carousel_Template_FooGallery_Extension(); } });You will then be able to pick the Owl Carousel as a template in galleries, or as the default gallery template.
cheers,
RossForum: Plugins
In reply to: [Flexible Map] Plugin returns Map address returns error: ZERO_RESULTS🎉
Forum: Plugins
In reply to: [Flexible Map] Plugin returns Map address returns error: ZERO_RESULTSG’day volodika,
Google Maps doesn’t know in which region to search, so it’s going with… USA! And failing.
Try adding
region="nl"to your shortcode, so it knows to look in The Netherlands. That should fix it.cheers,
Ross.