zetoun17
Forum Replies Created
-
Forum: Reviews
In reply to: [Mailjet Email Marketing] v6.1 created critical error on my siteto help the devs, here is the critical error message :
PHP Fatal error: Uncaught Error: Class “MailjetWp\MailjetPlugin\Front\Mailjet” not found in /wp-content/plugins/mailjet-for-wordpress/src/front/MailjetPublic.php:84Forum: Plugins
In reply to: [Mailjet Email Marketing] custom properties not visiblehere is 2 screenshots:
1) widget settings : add a property
screenshot 12) on front page only the email is displayed, the field labelled ‘Nom’ is missing
frontpage captureHope this help
Forum: Plugins
In reply to: [Mailjet Email Marketing] Vendor conflict GuzzleHello
its probably a conflict with another plugin (BackwpUp 3.10.0 im my case)
to find which plugin cause the conflict :
-disable all your plugins except mailjet,
-reactivate one plugin at a time until the error show again
-ask plugin’s author to udpate guzzlehttp/guzzle/src (7.4.5 works fine) or replace the pluginextend-wp-http-timeout.zip does not work on my multisite installation, the timeout stay at 2sec.
The workaround is to use ‘http_request_args’ filter and check the dropbox’s url to avoid changing the timeout globally
If dont upload to dropbox you can check if $parsed_args[‘user-agent’] contain ‘BackWPup’add_filter( 'http_request_args', 'custom_http_request_args' ,10,2); function custom_http_request_args( $parsed_args, $url ) { if($url==='https://content.dropboxapi.com/2/files/upload_session/append_v2') { $parsed_args['timeout']=60; } return $parsed_args; }
Hello
same issue here ??
wp-content/plugins/backwpup/src/Http/Client/WpHttpClient.php: API DropBox : cURL error 28: Operation timed out after 2000 milliseconds with 0 bytes receivedi have to revert to v3.9.0 to be able to send to dropbox.
im using itheme securityif curl dont work on some hosts cant you add a fallback ? (it was working well on v3.9)
Forum: Plugins
In reply to: [ACF OpenStreetMap Field] Custom marker in version 1.3.0?you can use this filter :
add_filter('acf_osm_marker_icon', function($icon) { $icon=array( 'iconUrl' => '/wp-content/themes/mytheme/img/marker-icon.png', 'iconRetinaUrl' => '/wp-content/themes/mytheme/img/[email protected]', 'iconSize' => [25, 41], 'iconAnchor' => [12, 41], 'popupAnchor'=> [1, -30], 'shadowUrl' => '/wp-content/plugins/acf-openstreetmap-field/assets/css/images/marker-shadow.png', 'shadowSize' => [41, 41], ); return $icon; });
see acf-openstreetmap-field/Core/Core.php line 99
/** * Return leaflet icon options. * * @see https://leafletjs.com/reference-1.3.2.html#icon * * @param $icon_options false (leaflet default icon or HTML icon) or array( * 'iconUrl' => image URL * 'iconRetinaUrl' => image URL * 'iconSize' => array( int, int ) * 'iconAnchor' => array( int, int ) * 'popupAnchor' => array( int, int ) * 'tooltipAnchor' => array( int, int ) * 'shadowUrl' => image URL * 'shadowRetinaUrl' => image URL * 'shadowSize' => array( int, int ) * 'shadowAnchor' => array( int, int ) * 'className' => string * ) */ 'icon' => apply_filters('acf_osm_marker_icon', false ),
- This reply was modified 3 years, 10 months ago by zetoun17.
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] bug http error 302 after submitAJAX enabled : yes
WP REST API enabled : yes
forcing CF7 javascript to only load on certain pages : yes and wpcf7_load_js() return falseForum: Plugins
In reply to: [Yoast SEO] metabox section content blanknot resolved,sorry but im not available to proceed a conflict check for now. may be in 2 weeks
Forum: Plugins
In reply to: [Yoast SEO] metabox section content blankupdated to Yoast 8.3 , tried with Chrome 69.0.3497.100 and Firefox 62.0.2 and same issue
thanks for your replies and for your great support
Forum: Reviews
In reply to: [BackWPup – WordPress Backup & Restore Plugin] cant open archive !Hi
i have written that i cant extract a Tar archive made by backwpup with 7-zip anymore
thats weird do you use a special version of the tar format ?Forum: Reviews
In reply to: [BackWPup – WordPress Backup & Restore Plugin] cant open archive !sorry cant install winrar on my machine
the archive files generated by backwpup should be able to be opened with any program managing the tar format , no ?
you can do a DB search & replace with searchreplacedb2 (i use it to migrate from stage to live site)
copy this script to your wordpress root folder :
searchreplacedb2.phprun it eg https://www.mysite.com/searchreplacedb2.php
and follow the instructions- This reply was modified 7 years, 9 months ago by zetoun17.
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] wpcf7_add_shortcode deprecated noticeHello
i have the same error on my website with the plugin currently running@wfalaa yes, this is exactly what i was looking for, thank you.
“live traffic” should be named “logged traffic”