Reüel
Forum Replies Created
-
Forum: Plugins
In reply to: [Pronamic Google Maps] Map Interface Looks uncleanI just had a look and it seems the following part of your CSS is affecting the map images:
#content img, #content p img { max-width: 100%; padding: 4px; border: 1px solid #E6E6E6; -moz-box-shadow: 10px 5px 5px #ccc; -webkit-box-shadow: 5px 5px 5px #ccc; box-shadow: 5px 5px 5px #ccc; }
You’ll either need to make sure the CSS Selector does not affect elements of the map, or reset the attributes for
#pgm img
.Forum: Reviews
In reply to: [Pronamic Pay] good support!Thank you for rating us and the kind words, we really appreciate that!
Forum: Plugins
In reply to: [Pronamic Pay] Pronamic iDEAL limitedThank you for your reply. We’re glad it’s solved!
Always update the software ??
Forum: Plugins
In reply to: [Pronamic Google Maps] show the specific map on category/archive pageI copied it straight from my functions.php, so I assume you’re doing something wrong. Without error messages, it’s hard to guess what exactly is going wrong ??
Please see https://codex.www.ads-software.com/Debugging_in_WordPress to enable displaying error messages in WordPress.
Forum: Plugins
In reply to: [Pronamic Google Maps] show the specific map on category/archive pageTo show the map on category pages, you can for example filter the_content. Include the following code in the functions.php of your theme.
if ( function_exists( 'pronamic_google_maps' ) ) {
function custom_pronamic_google_maps_the_content( $content ) {
$content .= pronamic_google_maps( array(
'width' => '100%',
'height' => 500,
'echo' => false
) );return $content;
}add_filter( 'the_content', 'custom_pronamic_google_maps_the_content', 9 );
}Forum: Plugins
In reply to: [Orbis] Add Due time and Assignee to Projects ?I’ve added due date for projects as a new feature request (see https://github.com/wp-orbis/wp-orbis/issues/12).
Please install the plugin Posts 2 Posts to assign persons to a project. When the plugin is activated, you will find a meta box “Involved persons” on the projects’ edit page.
Forum: Plugins
In reply to: [Pronamic Pay] iDeal API License KeyPlease e-mail your license key and website URL to [email protected]. I’ll check the status of your license, maybe the URLs don’t match or your license has expired.
Forum: Plugins
In reply to: [Pronamic Google Maps] Full sizeGlad you like the Pronamic Google Maps plugin!
1) To make the map display over the full width of the container element, just set the parameter “width” to 100%. Of course, you need to make sure the container element is shown over the full width also.
2) Color overlays, or Styled Maps (https://developers.google.com/…/docu…/javascript/styling), are not supported.
3) You can use HTML to display images in the info popup (add <img src=”[the_url]”> to the description).
Forum: Plugins
In reply to: [Pronamic Pay] Pronamic iDEAL limitedWe don’t limit functionality of the plugin for users of the free version of Pronamic iDEAL, so the notice about the license key is not the reason you’re having issues.
Just to make sure that WC 2.2.8 should work, I just installed this version of WC in our test environment. Pronamic iDEAL is displayed as a payment method option in WooCommerce ? Settings ? Checkout.
That implies something must be wrong with your WordPress, WooCommerce or Pronamic iDEAL installation. Did you recently change or update something which might have broken your setup? Is it working after updating your software to the latest versions?
It’s hard to guess what the issue exactly is. Maybe there are hints in the server error log about what’s going wrong?
Forum: Reviews
In reply to: [Pronamic Google Maps] Excellent pluginAndy, thanks for your kind words and beautiful stars!
Enjoy using Pronamic Google Maps ??
Forum: Plugins
In reply to: [Pronamic Pay] Pronamic iDEAL limitedHi,
Which version of WooCommerce do you use? Pronamic iDEAL is supposed to appear in checkout settings.
Did you already add an iDEAL configuration through iDEAL ? Configurations?
Reüel
Forum: Plugins
In reply to: [Pronamic Google Maps] Array in latitude, longitude not being setI’m really sorry, but I’m unable to reproduce the centering error. I tested from different locations from all corners of the world through a VPN connection. I used 3 different browsers for each location. I got the correct center in all cases, and therefore it’s quite difficult to debug this issue, as I can not discover what is different exactly.
Of course we’d be more than happy to solve this issue, except we just don’t can.
If you discover something that might be related to this issue, please let us know.
I’m really sorry, but I’m unable to reproduce the centering error. I tested from different locations from all corners of the world through a VPN connection. I used 3 different browsers for each location. I got the correct center in all cases, and therefore it’s quite difficult to debug this issue, as I can not discover what is different exactly.
Of course we’d be more than happy to solve this issue, except we just don’t can.
If anyone discovers something that might be related to this issue, please let us know.
Forum: Plugins
In reply to: [Orbis] Demo Or Guide?Orbis Persons and Companies are registered in WordPress as Customer Post Types. Thus, connecting them is possible with the use of a plugin such as Posts 2 Posts.
Forum: Plugins
In reply to: [Orbis] Demo Or Guide?Ah, that’s beautiful Dutch indeed ?? I added this as an issue on Github: https://github.com/wp-orbis/wp-orbis/issues/11
The templates are loaded from the /templates/ folder. I think you’ll be able to translate them from there.