Klokwerk-design
Forum Replies Created
-
Issue solved here now for these two plugins – thanks for taking action so quickly.
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Extra charges per gatewayHi Dave – just tested your solution and it works like a charm. Thank you so much. I updated everything but the other two plugins just gave the same error. I will stick to this one now because Mollie is the prefered payment route in the Netherlands.
best regards!
KeesForum: Plugins
In reply to: [Mollie Payments for WooCommerce] Extra charges per gatewayHi Dave – thanks for waking me up ;).
Didn’t have time for that one last two weeks so freezed the updates. I will get into this on monday and test your tips and the plugin. I’ll keep you posted.best regards,
KeesI have the same issue, returning after updating to the last version. Is there any follow up on this issue? Miss Mahii, did you find a cure? ??
Forum: Plugins
In reply to: [Invoices for WooCommerce] Custom template cant be savedI’m having the exact same issue. I’m using the pro version of the plugin.
Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Markers shown for posts in “concept”btw I’m using the pro-version
And in the frontend the billing and shipping fields are doubled as well…
I’m having the exact same issue, as well in the users>profile fields, as in WC4BP>Buddypress xAccount. Plus I keep getting the notion ‘This theme requires the following plugin: WC4BP -> WooCommerce BuddyPress Integration. Begin installing plugin’, white the base plugin (free version) is already installed.
Tried to reset, deinstall, delete, reinstall, turn off all other plugins except BP and Woo, switched themes, verified account email address… no banana…
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] How to get a list of user subscriptions?I’m curious on this one: is there any tool to do this via a link on the website and not via an email?
Added to this: it is imposible to filter the CRM or export CSV’s either when the PDF plugin is turned on. Could you please give assistance?
Maybe it’s useful for others to share my code:
<!-- First, fix the address and display it on two lines --> <?php $address = $post->_gmb_address; if ($address!="") { $Chunks = explode(",", $address); echo $Chunks[0]."<br />"; echo $Chunks[1]."<br />"; } ?> <!-- Placeholder for the Google Map --> <div id="map" style="height: 200px; margin-bottom: 24px;"> <noscript> <!-- https://code.google.com/apis/maps/documentation/staticmaps/ --> <img src="https://maps.google.com/maps/api/staticmap?center=1%20infinite%20loop%20cupertino%20ca%2095014&zoom=16&size=512x512&maptype=roadmap&sensor=false" /> </noscript> </div> <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> // Define the address var address = <?php echo json_encode($address); ?>; // Locate the address using the Google Geocoder var geocoder = new google.maps.Geocoder(); geocoder.geocode( { "address": address }, function(results, status) { // If the Geocoding was successful if (status == google.maps.GeocoderStatus.OK) { // Create a Google Map at the latitude/longitude returned by the Geocoder. var myOptions = { zoom: 13, center: results[0].geometry.location, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map"), myOptions); // Add a marker at the address. var marker = new google.maps.Marker({ map: map, position: results[0].geometry.location }); } }); </script>
It took me some time but it’s working fine ;).
I see I was too fast: on your priority support forum I saw a post just one month old by anyone asking the exact same thing. And a link to a GitHub page with some interesting information. Thanks a lot for your answers, and good luck developping this plugin!
Wow, that was really quick, thank you.
However, I think my first question was not very clear, sorry for that. What I’d really want, is to have a map appeared in the single post page, and if possible the address lines. So, a map containing that specific marker only. I guess the map would take some more functionality, because obviously a post-location is not a map yet, but maybe there’s a way that I can call the address-line that’s visible in the backend at the individual post?
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] PDF templatesHi Anton,
This works great, thank you. Now I have the full control I wanted and call anything, that’s great. Also I noted that the templates are indeed far more comprehensible, great work.
In general: I had some doubts beginning with this plugin, due to comments of poor support and documentation and the fact that it seemed a bit bunky, but took the gamble for it was just what I needed for functionality. I see you’re getting by on support, the plugins are the more the better programmed, and if you update the documentation I think you have a winner here. I will say that in my rating of the plugin.
Thanks again, I’ll mark the topic as resolved.
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] PDF templatesThanks for your answer, but I copied the code and pasted it in my document, and it returns nothing. I hope you made a mistake?
Don’t you really have an overview of the variables you pass on? I think it should be available online…