Samy RABIH
Forum Replies Created
-
@crazygo an update of the plugin will be published to fix the problem (Mondial Relay has made changes on their side so it blocked the plugin)
@crazygo it is Mondial Relay-related (all their webservices return the same error), it is not linked specifically to this plugin
@crazygo I asked the developer about it he will check it ASAP ?? I will post here the result of its investigations
Forum: Plugins
In reply to: [Modern Footnotes] Don’t understand how to add footnote contentThanks Sean ! It is now clear for me ??
But I have another issue : the footnote is not saved.If I select a sentence and I choose “Add a footnote” in dropdown menu, the text is turned into gray (it is normal)
But if I save the article (in fact a page, and I save it as a draft, I do’nt publish it) : the grey text is now without grey, like if I did’nt use the plugin ??
Forum: Plugins
In reply to: [Orbit Fox by ThemeIsle] Contact Form widget mail content translationThanks Vytis !
Forum: Everything else WordPress
In reply to: Can you reset my Slack account ?@thewebinart can you retry ?
Forum: Everything else WordPress
In reply to: Can you reset my Slack account ?@thewebinart the WPFR slack admin has been alerted but he’s not able to do anything before monday (but on Monday he will be able to help you ??).
Have a good weekend !
- This reply was modified 4 years, 4 months ago by Samy RABIH.
Forum: Plugins
In reply to: [Social Slider Feed] Unable to select accountAnd the console displays an error about https://cm-wp-storage.s3.eu-west-2.amazonaws.com/images/ssw_vertical.jpg which returns a 403
Forum: Plugins
In reply to: [Social Slider Feed] Unable to select accountI tried this test version, it sends me to https://instagram.cm-wp.com/#access_token=SECRET_TOKEN (i do not reproduce publicly this token ??
This page only contains a <script> tag for jQuery script, and nothing else
Forum: Plugins
In reply to: [Social Slider Feed] Unable to select accountThe instagram account is a “Creator account” (was a personal account, migrated to a “pro account”, and finally a “creator account”)
Hi Matty
Where can I send you the updated French translation for Subscribe2 v7.0.1 ?I was able to make this plugin working with some changes (in fact, for unknown reasons, get_pagenum_link() doesn’t execute in the right way the following test :
if ( !$wp_rewrite->using_permalinks() || is_admin() ) {
So, I duplicate this function in my theme :
function get_pagenum_link_custom($pagenum = 1,$force=true) { global $wp_rewrite; $pagenum = (int) $pagenum; $request = remove_query_arg( 'paged' ); $home_root = parse_url(home_url()); $home_root = ( isset($home_root['path']) ) ? $home_root['path'] : ''; $home_root = preg_quote( trailingslashit( $home_root ), '|' ); $request = preg_replace('|^'. $home_root . '|', '', $request); $request = preg_replace('|^/+|', '', $request); if ( $force==true) { $base = trailingslashit( get_bloginfo( 'url' ) ); if ( $pagenum > 1 ) { $result = add_query_arg( 'paged', $pagenum, $base . $request ); } else { $result = $base . $request; } } else { $qs_regex = '|\?.*?$|'; preg_match( $qs_regex, $request, $qs_match ); if ( !empty( $qs_match[0] ) ) { $query_string = $qs_match[0]; $request = preg_replace( $qs_regex, '', $request ); } else { $query_string = ''; } $request = preg_replace( '|page/\d+/?$|', '', $request); $request = preg_replace( '|^index\.php|', '', $request); $request = ltrim($request, '/'); $base = trailingslashit( get_bloginfo( 'url' ) ); if ( $wp_rewrite->using_index_permalinks() && ( $pagenum > 1 || '' != $request ) ) $base .= 'index.php/'; if ( $pagenum > 1 ) { $request = ( ( !empty( $request ) ) ? trailingslashit( $request ) : $request ) . user_trailingslashit( 'page/' . $pagenum, 'paged' ); } $result = $base . $request . $query_string; } $result = apply_filters('get_pagenum_link', $result); return $result; }
And I modified the WP-pagenavi plugin to use this function in _wp_pagenavi_single().
It should be useful to post a patch for this problem ??