Vincent Robic
Forum Replies Created
-
Forum: Plugins
In reply to: [User Profile Picture] issue with wordpress 5.5+1 for this to be fixed ??
Bonjour Harasse,
Merci pour votre réponse.
Malheureusement, ni moi ni mon client n’avons réussi à déterminer comment reproduire le bug de fa?on systématique. Nous utilisons une plateforme de recette sur laquelle il arrive qu’on laisse tra?ner des paniers sans aller au bout de la commande. Les cas de test sont donc difficiles à reproduire.
Peut-être Marie saurait-elle nous indiquer sa fa?on de faire ?
à vous lire, j’imagine la solution suivante : rajouter une vérification sur le contenu du panier juste avant de déclencher l’affichage de la carte des points relais.
Ainsi, si une
chosen_shipping_methods
est présente mais que le panier ne contient que des produits virtuels, alors on n’afficherait pas la carte.Qu’en pensez-vous ?
Très bonne journée,
Vincent- This reply was modified 6 years, 10 months ago by Vincent Robic.
- This reply was modified 6 years, 10 months ago by Vincent Robic.
- This reply was modified 6 years, 10 months ago by Vincent Robic.
Bonjour,
J’ai le même problème. Est-ce un cas qui n’a pas été prévu par le plugin, ou est-ce un simple soucis de paramétrage ?
Merci beaucoup,
VincentWe use your plugin on some of our client’s projects and I’m sad that you won’t do anything since I gave the fix. Should a bug be ignored if only one user encountered it?
A quality plugin should plug in every WordPress setup, whether core widgets has been unregistered or not.
Hope you’ll reconsider your choice.
Cheers,
VincentThat’s fine, I’ve added a star to reward your willingness.
I feel bad about my first comment and I’ll clarify to apologize.
I’m a part of a development team, and although I’m not very into third party plugins, someone in my team installed yours just to avoid wasting time on the social sharing features.
Since I’m always suspicious with catchy plugins, I got pissed off when this one didn’t work within minutes. At this moment, it didn’t look ultimate to me.
I will not open any issue because we couldn’t get it to work out of the box in our theme that is still under development. Maybe it was a theme issue, I didn’t have enough time to investigate.On this project, we only need Facebook, Twitter and LinkedIn share buttons. That’s why I ended up with developing it myself.
As a developer, I always prefer plugins that provide an API, for yours it could be functions like
the_share_buttons();
orthe_facebook_share_button();
. We need full control over the HTML and such functions make it a lot easier than hooks (when available) to customize HTML.The UI is not a big deal, but it could look more professional with the look and feel of WordPress core UI. For example, I never saw an accordion in the WordPress core admin UI, nor those custom checkboxes and radio buttons.
- This reply was modified 7 years, 6 months ago by Vincent Robic.
Yes, I’m so sorry! I edited my review.
You’re welcome! It’s a very specific case, and not very common to unregister all widgets.
Forum: Plugins
In reply to: [UmanIT Update URLs] Further help requiredHi,
Can you paste one of these broken links ?
First of all, you need to manually update an URL in the database. The most reliable way to do this is to access your database with a tool like phpMyAdmin. This point is not very handy. A new version is coming this year, you will be able to skip this step. Instructions for use will also be clarified.
So, dump the database (just in case!) and run :
UPDATE wp_options SET option_value='https://www.mynewdomain.com' WHERE option_name='siteurl';
This query will make you able to access the administration on the new domain. Then, go to
https://www.mynewdomain.com/wp-admin/tools.php?page=umanit-update-urls/updateurls.php
, fill both old and new URL fields, tick all the checkboxes and click on the “Update URLs” button.You can run the plugin twice or more, using an old URL with
www.
and without it, to be sure there are no old URLs remaining.Forum: Plugins
In reply to: [Google Maps GPX Viewer] Map cached by GoogleHi Bernd,
It’s not a client side cache, it’s Google’s side ??
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Disable ajax on add to cartA quick workaround, without hacking WP E-Commerce core :
Open these files (located in your current theme) :
- wpsc-grid_view
- wpsc-list_view
- wpsc-products_page
- wpsc-single_product
And find the product form in each of them :
<form class="product_form" ... >
All you need to do is to add within this form is :
<input type="file" name="fake_file_to_disable_ajax" style="display: none;" />
Why this workaround ? The Javascript function in wp-content/plugins/wp-e-commerce/wpsc-core/js/wp-e-commerce.js verifies that there is not file field before starting the ajax request.
Forum: Plugins
In reply to: edit wptexturizeFor example, to convert the & #8211; (less the space) back to a double dash make another plugin that runs your filter last.
Here’s the Pastebin for that too. https://pastebin.com/HWYGHDc7
That new function mh_un_en_dash get added to those filters at a priority of 50 so they should end up running well after the wptexturize filter.
That’s what I’ve been looking for a while ! I was trying fill the global $wp_cockneyreplace array and merge keys.
Forum: Fixing WordPress
In reply to: UAM – Child pages inherit access rights of parentHi
I also need this feature. Will it be available in a future release ?
Thanks.