french5000
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Suspicious COVID-19 Banner!You probably have the “Cookie Notice” plugin. Go to the settings page of this one to disable it ??
- This reply was modified 4 years, 7 months ago by french5000.
Forum: Plugins
In reply to: [WordPress Social Login] Facebook problemsSame problem here. Have you found a solution or a transparent alternative for users?
Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] WP HTML Mail CompatibilityHi,
It works ?? Here’s what the author say : “Advanced shipment tracking uses the same WooCommerce hook as the payment instructions so you can insert the placeholder “payment instructions” in your emails.
When the email is sent WooCommerce and Advanced Shipment tracking decide which information should be displayed at this placeholder.I’m aware this isn’t the most obvious way to solve this ??
best regards, Hannes”Works great, thank you ??
Forum: Plugins
In reply to: [WooCommerce] WC()->cart is null in custom REST API@vasikgreif , where to put this ?
Forum: Plugins
In reply to: [WordPress Social Login] PHP Warning: session_start() in error logHello,
So, you must change this line :
session_id() or session_start();
with your code ?
Thank you!
Forum: Plugins
In reply to: [BP Avatar Suggestions] No longer worksVery interresting ??
Do you plan to release this on github or www.remarpro.com ? Or will you keep this private ?
Forum: Plugins
In reply to: [BP Avatar Suggestions] No longer works@shivam1521 for me the solution was this one : https://github.com/miled/wordpress-social-login/issues/263
Forum: Plugins
In reply to: [WordPress Social Login] facebook login dosen’t works( Sorry, wrong reply, i had not the same problem )
- This reply was modified 6 years, 6 months ago by french5000.
Forum: Plugins
In reply to: [WordPress Social Login] Facebook new API 2.3Same question, did you find any answer ?
Forum: Plugins
In reply to: [BP Avatar Suggestions] Compatibility with wpml-mediaYes, exactly.
I’v solved my problem by “forking” the plugin and do some dirty hacks in bp-avatar-suggestions.php :
– In setup_globals, i replace
$this->avatar_post_id = bp_get_option( 'bp_avatar_suggestions_post_id', 0 );
with this :
$this->avatar_post_id = icl_object_id(bp_get_option( 'bp_avatar_suggestions_post_id', 0 ), 'post', false,ICL_LANGUAGE_CODE);
– In is_avatar_suggestion (very dirty solution, my website has only 2 languages) :
// Update to the 'All type' if ( empty( $has_meta ) ) { $second_lang = ICL_LANGUAGE_CODE == 'fr' ? 'en' : 'fr'; update_post_meta( $attachment_id, '_bpas_avatar_type', 1 ); update_post_meta( icl_object_id($attachment_id,'attachment',true, $second_lang), '_bpas_avatar_type', 1 ); }
I’ve also replaced the add_action( ‘bp_loaded’ … by add_action( ‘bp_init’, …
Forum: Fixing WordPress
In reply to: Can't edit in ChromeSame problem here…
Forum: Plugins
In reply to: [AddToAny Share Buttons] Share buttons now showing at some pagesSame problem here…
Forum: Plugins
In reply to: [Post Comments as bbPress Topics] Include featured imageGreat !
Thank you ??