Ruslan.Khakimov
Forum Replies Created
-
Forum: Plugins
In reply to: [Stella plugin] FlagsThanks for Rafał Lach. He makes plugin for Stella, which add new widget with flags.
Forum: Plugins
In reply to: [Stella plugin] the_title bypass, need help to restore it?Hi, hmmm.
What is the reason to use apply_filters( ‘the_title’, get_the_title() ) ?
get_the_title function already has ‘the_title’ filter.Forum: Plugins
In reply to: [Stella plugin] category localization supportHi,
Categories – is premium edition feature.
To localize menu visit appearance->menus.Forum: Plugins
In reply to: [Stella plugin] ! WP_CONTENT_URL !Hi, yes, good idea to use this constant. I will fix it.
Forum: Plugins
In reply to: [Stella plugin] Conflicts with OptionTreeHi, thanks for this notice.
Forum: Plugins
In reply to: [Stella plugin] FlagsYes, good idea
Forum: Plugins
In reply to: [Stella plugin] [Plugin: Stella free] server requirementsNothing really special. Capability to create aliases or virtual hosts (if you are going to use hosts mode). In general, requirements the same as wordpress has.
Forum: Plugins
In reply to: [Stella plugin] Getting right language for listing child postsYes, localization of categories is full version feature.
Forum: Plugins
In reply to: [Stella plugin] Getting right language for listing child postsCan you check this code if with fixed $this_cat? Is it work? (for me – yes )
Forum: Plugins
In reply to: [Stella plugin] Getting right language for listing child postsThere are you calling this code? (May be Stella is not initializated )
What is the Stella version?Forum: Plugins
In reply to: [Stella plugin] [Plugin: stella plugin] show languages on frontpageMiguel Gaia,
Of course, you need to customize your theme css file in order to style widget.
This a structure of widget html<div class="widget widget_lang_widget"> <h2 class="widgettitle">Language</h2> <ul> <li class="active"><a href="...">English</a></li> <li><a href="...">Russian</a> </li> </ul> </div>Hi,
Use
echo get_the_title( $menuItem->post_ID );
instead
echo $menuItem->post_title;Здравствуйте,
Какая у вас версия Стеллы? Пробовали изменять параметр “Transfer
default language content”?Как я понимаю у вас одна картинка на оба языка?
Forum: Plugins
In reply to: [Stella plugin] [Plugin: stella plugin] show languages on frontpagejust insert it in your theme
<?php the_widget( "Stella_Language_Widget"); ?>Please, try this one:
add_action('after_setup_theme', 'stella_functions', 1000); function stella_functions() { $current_lang = stella_get_current_lang(); $langs = stella_get_lang_list(); }