xac369
Forum Replies Created
-
Forum: Plugins
In reply to: [Webflow Pages] webflow plugin stopped workingHi, with this plugin, you need to use a API v1 key.
To generate API v1 key, see video :
Forum: Reviews
In reply to: [Webflow Pages] How to connect the CMS items?Hi, with this plugin, you need to use a API v1 key.
To generate API v1 key, see video :
Forum: Plugins
In reply to: [Social Slider Feed] Patch for instagram service updateHej,
Patch of trunk version, now only wp_remote url
### Eclipse Workspace Patch 1.0
#P instagram-slider-widget
Index: instaram_slider.php
===================================================================
— instaram_slider.php (revision 1420166)
+++ instaram_slider.php (working copy)
@@ -882,9 +882,9 @@
$user_opt[‘attachment’] = $attachment;if ( ‘user’ == $search ) {
– $response = wp_remote_get( ‘http://instagram.com/’ . trim( $search_string ), array( ‘sslverify’ => false, ‘timeout’ => 60 ) );
+ $response = wp_remote_get( ‘https://www.instagram.com/’ . trim( $search_string ), array( ‘sslverify’ => false, ‘timeout’ => 60 ) );
} else {
– $response = wp_remote_get( ‘http://instagram.com/explore/tags/’ . trim( $search_string ), array( ‘sslverify’ => false, ‘timeout’ => 60 ) );
+ $response = wp_remote_get( ‘https://www.instagram.com/explore/tags/’ . trim( $search_string ), array( ‘sslverify’ => false, ‘timeout’ => 60 ) );
}if ( is_wp_error( $response ) ) {
Forum: Plugins
In reply to: [Social Slider Feed] Patch for instagram service updateHi Jetonr,
Instagram changed two things :
– url need https and www in instagram url
– instagram add a parameter on filename (i remove it to find the right extension of image)Forum: Plugins
In reply to: [Social Slider Feed] Patch for instagram service updateJust debugging 🙂