Chritchan
Forum Replies Created
-
Ho yes it’s possible! I’ve just found the solution.
I hope that will help someone…Compatible with CMP Version 4.1.2 and WP All Import Version 4.7.3
function before_xml_import( $import_id ) { if ( class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) { update_option('niteoCS_status', '1'); CMP_Coming_Soon_and_Maintenance::cmp_purge_cache(); } /** * Do your other stuff */ } add_action('pmxi_before_xml_import', 'before_xml_import', 10, 1); function after_xml_import( $import_id, $import ) { if ( class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) { update_option('niteoCS_status', '0'); CMP_Coming_Soon_and_Maintenance::cmp_purge_cache(); } /** * Do your other stuff */ } add_action( 'pmxi_after_xml_import', 'after_xml_import', 10, 2 );
Forum: Plugins
In reply to: [WooCommerce Cart Stock Reducer] How to remove_actionThanks for your reply.
I’m using Goya. I’ve dropped your snippet in the function.php of the child theme and here is the error :Fatal error: Uncaught Error: Call to a member function get_integration()
Forum: Plugins
In reply to: [ACF to REST API] ACF Options field values?Omg you safe my life!
Forum: Plugins
In reply to: [ACF to REST API] Filter Options not visible in ACFSame for me … I’m very disapointed
@halpernmr I’ve found my problem… my Google API Key hasn’t the Direction API activated. You have to activate this API (follow this tutorial).
Forum: Plugins
In reply to: [The GDPR Framework By Data443] Custom FormHi there,
Have you fixed the probleme ? do you want more details ?Forum: Plugins
In reply to: [Search Meter] Please support translationGreat ! I hope my work will help you.
Forum: Plugins
In reply to: [Search Meter] Please support translation@bennettmcelwee i do some modifications and i mail you during this journey
That’s a pleasure !
@webpdq @iniblogbudi @fcprac @tkutscher@juliobox can you upgrade your plugin to fix it ? ?? Thanks bro !
Forum: Plugins
In reply to: [Search Meter] Please support translationGuys, i’ve allready prepare this plugin for localization to translate it in French.
@bennettmcelwee are you interested in ?
- This reply was modified 8 years, 1 month ago by Chritchan.
Hy guys !
if you have a blank page after the redirection, i’ve posted a fix here
I hope that help you !
Forum: Plugins
In reply to: [Shortcodes in Sidebar Widgets] Not working for MyGPmaps shortcodeHey bikesonshow,
I’had the same problem and my poor solution was to call directly the function like this :
echo mygpGeotagsGeoMetatags_getMap();
Create and return map (based on current post) !
Hope this trick is helping you !
Forum: Plugins
In reply to: [GD Star Rating] Display average of a multiple rating in loopHi Joe,
Yes my code is still working. I’m in WordPress 3.6 and GD Star Rating 1.9.22$gp_gdsr = wp_gdsr_rating_multi(); if($gp_gdsr->rating != "0"){ wp_gdsr_multi_rating_average(); echo $gp_gdsr->rating; }
You’re inside of outside the loop ?
Forum: Plugins
In reply to: [GD Star Rating] Display average of a multiple rating in loopmmh … here is the awnser …
Display a numeric value average
$gp_gdsr = wp_gdsr_rating_multi(); echo $gp_gdsr->rating;
Display a rating star average
wp_gdsr_multi_rating_average();
Forum: Plugins
In reply to: [Redirection] [Plugin: Redirection] Unable to export CSVI had to downgrade to 2.2.1O for export my datas ??