Sander
Forum Replies Created
-
Forum: Plugins
In reply to: [Recras WordPress plugin] Recras plugin turns PHP display errors OnWe’ve disabled this functionality in version 5.4.0
Forum: Plugins
In reply to: [Recras WordPress plugin] Recras plugin turns PHP display errors OnOur plugin sets display_errors to On when WP_DEBUG_DISPLAY is on, which is a setting in wp-config.php.
If you don’t want to see errors (on a production site I assume), WP_DEBUG_DISPLAY should be off.
We’re not against changing it, but the easy way of fixing this would be to disable WP_DEBUG_DISPLAY.
Forum: Plugins
In reply to: [Plugin for Google Reviews] Missing Dutch translationsUpdate: I regenerated the MO file from POEdit and now it works fine…
Forum: Plugins
In reply to: [Plugin for Google Reviews] Missing Dutch translationsDone! Thanks in advance ??
Forum: Plugins
In reply to: [Plugin for Google Reviews] Missing Dutch translationsThanks for the clarification on
reviews_lang
. As I said, the language of the website is Dutch (nl_NL) but the text isn’t translated. Other plugins (such as Contact Form 7) are translated just fine.Forum: Plugins
In reply to: [Plugin for Google Reviews] Missing Dutch translationsI’m using 1.8.7 on a website. WordPress language is set to Dutch, my shortcode includes
reviews_lang="nl"
, but the text “Based on … reviews” isn’t translated. What am I missing?Forum: Everything else WordPress
In reply to: New account in limboThanks, will do!
Hi,
ah thanks, I didn’t know gtag loads analytics.js. I will see if that helps me integrate the plugin.
Thanks!
Sander+1
I’m experiencing the same notice on a local site (production sites shouldn’t display notices)
- This reply was modified 5 years, 11 months ago by Sander.
Forum: Plugins
In reply to: [Mollie Forms] Update Mollie API librarySorry, my bad!
It appears https://github.com/mollie/mollie-api-php/blob/master/src/Mollie/API/Client.php still lists its version as 1.9.1 even though it’s 1.9.4.FWIW, I hacked it together using this for now:
function tweetHack() { $content = do_shortcode('[custom-twitter-feeds]'); $content = str_replace( 'Twitter_normal.jpg', 'Twitter_200x200.jpg', $content ); $content = str_replace( 'width="48" height="48"', 'width="75" height="75"', $content ); echo $content; } add_shortcode('tweethack', 'tweetHack');
Forum: Plugins
In reply to: [Woo Default Attributes] Default Attributes not sortedTo fix this, edit the file
class-wdat-admin.php
, and find the line that says'position' => "$1",
.
Change this line to'position' => $i,
and it works as expected!Forum: Plugins
In reply to: [WordPress Beta Tester] Can't test 4.4RC using Beta Test PluginWorks fine here, so it could be an issue with your setup instead of an issue with the plugin.
Forum: Plugins
In reply to: [10WebFAQ] Disable ratingsAwesome! Our project won’t go live until a few weeks from now, so I’ll just wait for a new version ??
Thanks for your quick replies!
Forum: Plugins
In reply to: [10WebFAQ] Disable ratingsBut the shortcode isn’t used on individual questions ??
I created a single-faq_wd.php with this code (more or less)
<?php $post = get_post(); ?> <h1><?php the_title(); ?></h1> <?php echo apply_filters('the_content', $post->post_content); ?>
And it outputs a div with class
faqwd_vote_option
.