Moritz83
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Archive for each categoryokay, here is the quick fix:
change
<?php query_posts( 'cat=5' ); ?>
to
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('cat=5&posts_per_page=5&paged=' . $paged); ?>
and add
<?php twentytwelve_content_nav( 'nav-below' ); ?>
maybe not the best solution but it’s working until I get home ??
Thanks anyway
Forum: Plugins
In reply to: [Postie] Image non-clickableFound it … just remove
<a rel="attachment wp-att-{ID}" href="{PAGELINK}">
from the template in the “Image” tab
Forum: Themes and Templates
In reply to: Style last nav itemGreat!
Thank you very much!
Forum: Fixing WordPress
In reply to: Free Cookie Domain -> Problem with child themeokay, I found the problem and maybe the solution will help some other playing around with this:
If you ever configure a sub-domain like “cnd.yourdomain.com” make sure you don’t have any file paths inside the CSS file. This may cause problems ??
Forum: Themes and Templates
In reply to: [Twenty Twelve] Exclude page from navigation barWell I don’t want to create a new custom menu ??
Whatever, someone asked the same thing and this is what “alchymth” responded and it’s working, you just have to put this inside the child functions.php and change the id’s you want to exclude ??
function twentytwelvechild_page_menu_args( $args ) { $args['exclude'] = '2,4,37'; return $args; } add_filter( 'wp_page_menu_args', 'twentytwelvechild_page_menu_args', 20 );
thanks anyway ??
Forum: Themes and Templates
In reply to: [Twenty Twelve] Exclude page from navigation barWell I thought the bar is automatically generated and the menu you can define in the admin menu
Forum: Themes and Templates
In reply to: [Twenty Twelve] Exclude page from navigation barhttps://www.moritzjuergensen.info
sorry, forgot the link … reffering to “Home – Africa – ….”
I would like to publish a new page but it shall not appear on this barForum: Themes and Templates
In reply to: [Twenty Twelve] Exclude page from navigation barMenu? I am talking about the navigation bar on top below the header ??
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] Right align last item in navigation barlol …. guess what:
Your code already contains the fix for mine which is not working ??
I wrote “text-align: right” and it should (according yours) be “float: right”!
thanks a lot ??
Forum: Fixing WordPress
In reply to: Insert JavaScriptWell solved it.
Created a separate page template for each map and inserted it into the header part.
Forum: Themes and Templates
In reply to: CSS & PHP –> how to center a div containerokay, thanks anyway ??
Forum: Themes and Templates
In reply to: CSS & PHP –> how to center a div containerThis is the code I am using right now so the image with the controls is nearly in the middle of the slideshow.
Forum: Themes and Templates
In reply to: CSS & PHP –> how to center a div containerDo you have a solution?
It’s like I am sitting in front of a wall :/
Forum: Themes and Templates
In reply to: CSS & PHP –> how to center a div containeryeah normally I don’t have a problem with this kind of stuff but I can’t get this one working so I do need help before I go crazy ^^
Forum: Themes and Templates
In reply to: CSS & PHP –> how to center a div containerWell tried to do this by using the width of the image but it failed.
I know I have to use % but I don’t get it …. and the author is not available. Wrote him a mail a few days ago :/