Laurent Olivares
Forum Replies Created
-
Forum: Plugins
In reply to: [Media Library Assistant] Bulk language editing not workingSuper, thanks a lot for your time.
Forum: Plugins
In reply to: [Media Library Assistant] Bulk language editing not workingOk here I am, I installed the dev version and the results are :
– If the Polylang media option is deactivated, the bulk modifiy tool says it’s ok but nothing happend, like it was before, :/
– If the Polylang media option is activated, the bulk modify tool worked. \o/I tried on my 3 media test files but I will go further, if i find a bug I’ll tell you.
Forum: Plugins
In reply to: [Media Library Assistant] Bulk language editing not workingHello,
I’m really sorry for not having replied to your first message, I was traveling abroad and really busy ??
I will try your dev version asap.
Regards.
Forum: Plugins
In reply to: New RSS URL after switching to Polylang – not recognizable by Bloglovin?i found a solution by mixing code put it in your functions.php or plugin :
/**
Réactiver le flux RSS principal
* Created by Daniel Roch
* Modified by Laurent Olivares for Polylang
*/
function neameta_feed_link( $args = array() ) {
$defaults = array(
/* translators: Separator between blog name and feed type in feed links */
'separator' => _x('?', 'feed link'),
/* translators: 1: blog title, 2: separator (raquo) */
'feedtitle' => __('%1$s %2$s Feed'),
/* translators: %s: blog title, 2: separator (raquo) */
'comstitle' => __('%1$s %2$s Comments Feed'),
);
$args = wp_parse_args( $args, $defaults );
echo '<link rel="alternate" type="application/rss+xml" title="' . esc_attr(sprintf( $args['feedtitle'], get_bloginfo('name'), $args['separator'] )) . '" href="' . home_url() . "/" . pll_current_language() . "/feed/\" />\n";
}
add_action('wp_head', 'neameta_feed_link');
Forum: Plugins
In reply to: New RSS URL after switching to Polylang – not recognizable by Bloglovin?Same here, I’m on it but I didn’t found any solution yet.
Forum: Plugins
In reply to: [Max Mega Menu] Mega Menu and PolylangHello,
thanks for your answer.I applied your dev version and everything is ok now, well done.
Laurent.
Forum: Plugins
In reply to: [Bogo] Bogo and no '/category' in the URLHi,
i have the exact same problem, did you resolved it ?