WPIntell

Source evidence

Great plugin

Fixed Bottom Menu · review · 2020-09-18T12:26:00+00:00

praisesentiment
mediumseverity
0.5relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

7 / 29 rows with source links

24.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

22 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

review · 5 stars
mosmictz unresolved
Thank you for an amazing plugin, works great! Please add the polylang integration, It will be great for sites with multi-languages @mosmictz Thanks your review ! Multilingualization is possible using filters. Add the following code to your child theme’s function.php For example: Change the text to be displayed in the fifth column when the language is Italian. For the filter, use fbm_column_value_ . It will end with the value of the column. /** ================================================== * Column values filter for Fixed Bottom Menu * * fbm_column_value_ * @param array $column_value column_value. */ function fixed_bottom_menu_column_value_5( $column_value ) { $locale = get_locale(); if ( 'it_IT' == $locale ) { $column_value['text'] = 'Indirizzo'; } return $column_value; } add_filter( 'fbm_column_value_5', 'fixed_bottom_menu_column_value_5', 10, 1 );

Comments

1 shown
Katsushi Kawamori 2020-09-21T09:26:00+00:00

@mosmictz Thanks your review ! Multilingualization is possible using filters. Add the following code to your child theme’s function.php For example: Change the text to be displayed in the fifth column when the language is Italian. For the filter, use fbm_column_value_ . It will end with the value of the column. /** ================================================== * Column values filter for Fixed Bottom Menu * * fbm_column_value_ * @param array $column_value column_value. */ function fixed_bottom_menu_column_value_5( $column_value ) { $locale = get_locale(); if ( 'it_IT' == $locale ) { $column_value['text'] = 'Indirizzo'; } return $column_value; } add_filter( 'fbm_column_value_5', 'fixed_bottom_menu_column_value_5', 10, 1 );