narcopastello
Forum Replies Created
-
Forum: Plugins
In reply to: [File Away] reverse order in list modeme too, please!
i’ve got files named by year and i’d like to show the latest first, like:
2017
2016
2015
…thanks in advance!
Forum: Plugins
In reply to: [File Away] how to display multiple sub-directories?sorry to disturb again.
is it possible to display all the sub-directories at once, instead of listing them in the “onlydirs” attribute?
Forum: Plugins
In reply to: [File Away] how to display multiple sub-directories?thanks!
just for knowledge, what’s the “recursive” attribute?Forum: Plugins
In reply to: [List category posts] Display thumbnail before category titlei need the same! any help?
Forum: Themes and Templates
In reply to: [Customizr] CSS path in category pagesthanks, i was just misspelling “.catmycategory” without “-“
dumb question, sorry ??
Forum: Themes and Templates
In reply to: [Customizr] CSS path in category pagesi don’t want to hide it everywhere, only on a single category page..
Forum: Plugins
In reply to: [Collapse-O-Matic] row-fluid span only for titleit works, thanks.
but is it possible to use plugin attributes in the div?
for example, in the shortcode i used “trigpos” or “swaptitle”: can i use them also with the roll-your-own method?
Forum: Plugins
In reply to: [Collapse-O-Matic] row-fluid span only for titlei’ll explain with an example:
https://www.baserunningteam.it/mezzamaratona/row-test
i’m trying to make extended contents 1 and 2 as wide as 3, but keeping titles on the same line… is it possible?
Forum: Themes and Templates
In reply to: [Customizr] Disable Menu Responsivenessplease, help me to get rid of the responsive menu!
Forum: Themes and Templates
In reply to: [Customizr] Disable Menu Responsivenessanyone?
Forum: Themes and Templates
In reply to: OnePage layout – Menu linkssorry :p
Forum: Themes and Templates
In reply to: [Customizr] minimal search form in navbar?in the end i created a copy of /parts/class-header-header_main.php in my child theme… and i edited from line 298
else { //when hooked on __navbar $html = sprintf('<%1$s class="%2$s inside site-description">%3$s</%1$s>', apply_filters( 'tc_tagline_tag', 'h2' ), apply_filters( 'tc_tagline_class', 'span7' ), apply_filters( 'tc_tagline_text ', __( esc_attr( get_bloginfo( 'description' ) ) ) ) ); }
with
else { //when hooked on __navbar $html = sprintf('<form role="search" method="get" id="searchform"; > <div><label class="screen-reader-text" for="s"></label> <input type="text" placeholder="Cerca" name="s" id="s" /> <input type="submit" id="searchsubmit" value="🔍" /> </div> </form>' ); }
… and some css.
Forum: Themes and Templates
In reply to: [Customizr] Hide widgets on front pagethanks to a friend i modified the snippet and i solved it like this
// Adds a widget area #1 if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Extra Header Widget Area 1', 'id' => 'extra-widget-area', 'description' => 'Extra widget area after the header', 'before_widget' => '<div class="widget my-extra-widget">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } // Adds a widget area #2 if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Extra Header Widget Area 2', 'id' => 'extra-widget-area-2', 'description' => 'Extra widget area after the header', 'before_widget' => '<div class="widget my-extra-widget-2">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } // Adds a widget area #3 if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Extra Header Widget Area 3', 'id' => 'extra-widget-area-3', 'description' => 'Extra widget area after the header', 'before_widget' => '<div class="widget my-extra-widget-3">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } // Place the widget area after the header add_action ('__after_header', 'add_my_widget_area', 0); function add_my_widget_area() { if (is_home()) { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area 1'); } } if (is_page( 'xxx' )) { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area 2'); } } if (is_page( 'yyy' )) { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area 3'); } } }
Forum: Themes and Templates
In reply to: [Customizr] minimal search form in navbar?i’m already using the extra widget for scrolling news after the header and thanks for that!
i was looking for a way to display the searchform IN the header.
with my basic knowledge i’d change
__after_header
with__after_navbar
in this part// Place the widget area after the header add_action ('__after_header', 'add_my_widget_area', 0); function add_my_widget_area() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area'); } }
and this works, i have my searchform IN the header…
but very bad looking… is there another__after_something
to put it on the same line of the menu?besides, if you have any other suggestion to style the searchform the simpler as possible, something like this
Forum: Themes and Templates
In reply to: [Customizr] Adding post categories into separate pages@electricfeet: i think it’s more or less what i asked you here
the category-menu option works, but how can we make the same result appear by clicking one of the featured pages in home page?