Tooster
Forum Replies Created
-
Ok found the issue!
There was an ampersand in the url and it got replaced by & in the shortcode.
Thnx for the quick support!
Hi,
But the import does work manually when I go to Bookings > Settings > Sync > Import
That tells me it’s not the server config issue you suggest because then it wouldn’t work there as well.It’s when I go to oPlugins Panel > Manage .ics
and I insert the URL and press ‘Show Events’It doesn’t work there or in the shortcode.
Hi,
Thank you for the fast response!
1) rechecked the url. Not solved
2) disabled all plugin and set to default theme. Not solved
3) Checked all error logs and there are no errors.Might it be because the url that is provided to me ends with parameters instead of ‘.ics’?
Hi,
I’m using the official Woocommerce Product Bundles
https://woocommerce.com/products/product-bundles/I’m glad to assist you with this issue. I would love to get it working for Product Bundles. Is there a github I can fork from?
I added the following to the front-end css:
If you could please remove the !important from the .hidden class.
It’s unnecessary and discouraged to use !important..product-type-bundle .hidden { display: inline; visibility: visible; } .product-type-bundle .tawcvs-swatches{ display: none; } .hidden { display: none; visibility: hidden; }Thank you
Forum: Plugins
In reply to: [BJ Lazy Load] Placeholder image dimensionsI was trying to achive the same so I styled these classes:
//while loading reduce size and center position .lazy:not(.lazy-loaded){ position: absolute; top: 50%; left: 50%; max-height: 50px !important; max-width: 50px !important; margin-top: -25px; margin-left: -25px; //placeholder for woocommerce single product image &.attachment-shop_single { margin: calc(50% - 25px) !important; position: static; } }Forum: Plugins
In reply to: [WP Store Locator] SSL / HTTPSEmptying transient cache solved the problem.
Forum: Plugins
In reply to: [YITH Essential Kit for WooCommerce #1] Not working on product bundleHow’s it going? I had fixed it temporarily and now foolishly updated and it’s broken again.
Forum: Plugins
In reply to: [Facebook Events Importer] Page not foundForum: Plugins
In reply to: [YITH Essential Kit for WooCommerce #1] Not working on product bundleActive YITH plugins:
- badge mgmt
- label & colors
- custom order statusses
- social login
Forum: Plugins
In reply to: [jQuery UI Widgets] Datepicker on checkoutI understand that you can’t help debug specific cases.
I Have checked for JS errors but there are none..
adding the datepicker inline on a div does work so I did it like that.URL: stage.skili.be
location of datepicker is at checkoutForum: Plugins
In reply to: [Mollie Payments for WooCommerce] Doesn't work with WPML~ didn’t read previous posts, ingore ~
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Doesn't work with WPMLThis did the trick in abstact.php line 690
/** * @param WC_Order $order * @return string */ protected function getReturnUrl (WC_Order $order) { $return_url = WC()->api_request_url('mollie_return'); $return_url = str_replace('http://www.skili.be/',home_url(), $return_url); $return_url = str_replace('https://www.skili.be/',home_url('','','https'), $return_url); $return_url = add_query_arg(array( 'order_id' => $order->id, 'key' => $order->order_key, ), $return_url); return $return_url; } /** * @param WC_Order $order * @return string */ protected function getWebhookUrl (WC_Order $order) { $webhook_url = WC()->api_request_url(strtolower(get_class($this))); $webhook_url = str_replace('http://www.skili.be/',home_url(), $webhook_url); $webhook_url = str_replace('https://www.skili.be/',home_url('','','https'), $webhook_url); $webhook_url = add_query_arg(array( 'order_id' => $order->id, 'key' => $order->order_key, ), $webhook_url); return apply_filters(Mollie_WC_Plugin::PLUGIN_ID . '_webhook_url', $webhook_url, $order); }Will you include something similar in the next update? else I’ll have to update it again manually. Don’t know how and didn’t have the time to make a child-plugin
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Doesn't work with WPMLI’m using multiple WPML plugins but I don’t know exactly which does what but WPML does have a “go global”-program for plugin and theme owners.
https://wpml.org/documentation/theme-compatibility/go-global-program/
They’ll work together with you and setup a site with their plugins and yours to work on. Plus I think it’s a nice change since there are many payment plugins who don’t support WPML and one that does had an edge on the competition ;).I’ll have a try at making it compatible and post my findings here
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Doesn't work with WPMLfound this in the logs aswell:
08-26-2015 @ 05:12:40 - mollie_wc_gateway_mistercash: Create payment for order 5466 08-26-2015 @ 05:12:40 - mollie_wc_gateway_mistercash: Payment tr_fU3fzsaWXt (test) created for order 5466 08-26-2015 @ 05:13:27 - Mollie_WC_Plugin::onMollieReturn: Redirect url on return order mollie_wc_gateway_mistercash, order 5466: http://www.skili.be/nl/afronden/order-received/5466?key=wc_order_55dd3cb7eaedd&utm_nooverride=1