maxcdr
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Review Slider] Shortcode does not show upThanks for your reply.
You’re right the shortcode is hidden, I can see it in “inspect” (screenshot here https://imgur.com/a/xK7JfcR)
Here is console window screenshot: https://imgur.com/a/X9jDHU3
It says: “blablabla is obsolete since version 5.5.0. Use wp.i18n instead”Thanks for your reply. Of course I understand, no problem ??
It does do the trick! Thanks!
Sorry, I didn’t search deep enough before asking the question.
I have found the answer here
That is very sad. I am almost ready to go live with this good plugin but I am not sure that it is worth upgrading to Pro just not to have this limitation.
Forum: Plugins
In reply to: [VikRestaurants Table Reservations and Take-Away] UTC time in cartI finally solved the issue by choosing “Paris” instead of “UTC+1” in WordPress timezone setting…
Forum: Plugins
In reply to: [VikRestaurants Table Reservations and Take-Away] UTC time in cartCorrection : it is not in the cart but in take away confirmation page.
Forum: Plugins
In reply to: [VikRestaurants Table Reservations and Take-Away] Frontend languageThanks lot for your support and quick reply.
Works like a charm with the .po file!
Cheers
Forum: Plugins
In reply to: [Great Restaurant Menu WP] change of currency sideHi,
Waiting for this option, I have found the way to do that by modifying the code.
1. Go to folder /wp-content/plugins/best-restaurant-menu-by-pricelisto/templates/func-temp
2. Open the PHP file correponding to your theme template.
3. Search for this line
<div class="brm-item-price"><?php echo esc_html( stripslashes ( $currency . $item->price ) ); ?></div>
4. Replace it by
<div class="brm-item-price"><?php echo esc_html( stripslashes ( $item->price . $currency ) ); ?></div>