AntonioFajdiga
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Third Style] how i can see timestampAlso i want to see Post time next to post title
Here is that code
<?php if ( in_category( _x('gallery', 'gallery category slug', 'thirdstyle') ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'thirdstyle' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php thirdstyle_posted_on(); ?> </div><!-- .entry-meta -->
How to put time on the same line with title
Forum: Plugins
In reply to: [PAPERCITE] how to show Abstract and pdfyes i resolved that.
Forum: Fixing WordPress
In reply to: how to add new fontForum: Fixing WordPress
In reply to: how to add new fontthird style, i download it from wordpress
Forum: Fixing WordPress
In reply to: Remove Cetain Post Categories From Blog Sidebar Archive Listi also tried
define("EXCLUDED_CATEGORIES", '25,55,57'); add_filter( 'getarchives_join' , 'getarchives_join_filter'); function getarchives_join_filter( $join ) { global $wpdb; return $join . " INNER JOIN {$wpdb->term_relationships} tr ON ($wpdb->posts.ID = tr.object_id) INNER JOIN {$wpdb->term_taxonomy} tt ON (tr.term_taxonomy_id = tt.term_taxonomy_id)"; } add_filter( 'getarchives_where' , 'getarchives_where_filter'); function getarchives_where_filter( $where ) { global $wpdb; $exclude = EXCLUDED_CATEGORIES; // category ids to exclude return $where . " AND tt.taxonomy = 'category' AND tt.term_id NOT IN ($exclude)"; } // exclude categories on monthly archive pages function my_post_queries( $query ) { // do not alter the query on wp-admin pages and only alter it if it's the main query if (!is_admin() && $query->is_main_query()){ // alter the query for monthly archive pages if(is_archive() && is_month()){ $query->set('category__not_in', array(EXCLUDED_CATEGORIES)); } } } add_action( 'pre_get_posts', 'my_post_queries' );
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
but this exclude only the first cat_id, for example if i have ‘1,3,8’ it will exclude only cat_id=1. How i can fix this?
Forum: Plugins
In reply to: [JS Archive List] Shortcode option to exclude categorycan you help me. i install your plugin and i tried to exclude some of my categories, but nothing happend. here is my web site
https://dis.ijs.si/Copcams/see Something part on my right side. When i try to see my posts from only category Publications i see all the posts from all categories
Forum: Plugins
In reply to: [WP Publication Archive] Group publications by date, similar to posts archive@eric
Did you make that change already ? I also need that option, so i can see my posts like archieved postsForum: Fixing WordPress
In reply to: publications problemAnyone?
i want to have something like this
https://pro3d.eu/?m=201303
Publication menu to be on the right side of the pageForum: Themes and Templates
In reply to: full size pagei forgot to write the name of the theme.
Third StyleForum: Plugins
In reply to: how to see only one language with qTranslatei tried your code
.cf, #header-container, #contentwrap { position:inherit; } .forma { position:absolute !important; top:117px; right:0px; }
but now i cannot see my eng option on the screen. Is there any other trick to move eng button to the right and menu items to the left,i mean left to the left end, not like now
Forum: Plugins
In reply to: how to see only one language with qTranslateHey i didn’t try that, because i don’t have access on that page anymore. I will try that on monday. And if i want to put items from the menu line , for example Domov,Novice,Podatki projekta,… i have to make the same, just find their parent element/class and do the same like .forma(just left 0px ) right ?
If you have some time please see if this is the right parent class
.menu-navigation-container {And thank you anyway for your time and work
Forum: Plugins
In reply to: how to see only one language with qTranslatesorry but nothing has changed. i put
.cf, #header-container, #contentwrap { position:inherit; } .forma { positon:absolute !important; top:117px; right:0px; }
in my style.css at the end but now my language button is next to the menu items, now at the right side of my menu
If you want i can put my style.css file here
Forum: Plugins
In reply to: how to see only one language with qTranslatethank you very much. I have one more question i you have time of course, how to move that button to be right align, not like now
Forum: Plugins
In reply to: how to see only one language with qTranslateNow i have two options in my header, but i want to have only one, for example when i open my page i want to see web site in english only and to have in my have option to change to some other language for example spanish,franch or some other language
Forum: Fixing WordPress
In reply to: how to make my text left alignyes i know that trick, but i cannot find out how to put my menu items left align and when i resize window on my computer to see that change on the same place
something like padding-left:70% or auto, but this doesn’t work fine for me