baszer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Add category to custom post type@keesiemeijer (dutch? ?? )
thanks that did the trick, can you also tell me why you have to add that in front? Because I was able to add new people
Forum: Themes and Templates
In reply to: Duplicating a templatein windows ctrl + c and then ctrl + v and rename your new template copy?
Forum: Themes and Templates
In reply to: Text/shortcode over Featured Image in excerptsdo you have an vissual example? An image or website? Because its hard to imagine what you want.
Forum: Themes and Templates
In reply to: List current custom taxonomyanybody an idea?
Forum: Themes and Templates
In reply to: Custom posttype with list categoriesis there a way to delete/reset all the permalinks etc?
this is the url with the problem
Forum: Themes and Templates
In reply to: Custom posttype with list categorieshmmm, did not work. If i change my permalinks to something else I get only errors…
Forum: Plugins
In reply to: [Custom Post Type UI] [Plugin: Custom Post Type UI] Categories and lists@over3fly, i got it working now! Deleted the
//To make category archives display all posts, regardless of post type function any_ptype_on_cat($request) { if ( isset($request['category_name']) ) $request['post_type'] = 'any'; return $request; } add_filter('request', 'any_ptype_on_cat');
and added
query_posts( 'post_type=correct_type');
Thanks for answering me!Forum: Plugins
In reply to: [Custom Post Type UI] [Plugin: Custom Post Type UI] Categories and lists@over3rfly: https://pastebin.com/qS8U0xeP
Forum: Plugins
In reply to: [Custom Post Type UI] [Plugin: Custom Post Type UI] Categories and listsyes I know that, but I only want to change the amount of posts on this template. Not on my other pages.
Forum: Plugins
In reply to: [WP Bannerize] [Plugin: WP Bannerize] Widget & LanguageI saw you did an update? I already hardcoded into my theme. But the widget is working now too!
And also the translation is working now! Thanks for your plugin!
The only comment I can make so far is that there is something wrong with the randomisation. Lot of times there are the same banners displayed. I use four bannerspots and have 20 banners. So the chance of hitting three the same banners on one page should be very low.
Forum: Themes and Templates
In reply to: Cannot modify header informationYEAH! Rev. Voodoo, I just deleted the last rows after the php tag and the error is gone!
Thanks for helping!
Forum: Themes and Templates
In reply to: Cannot modify header informationthanks for your answer!
Can you look at my code because there is no line 317 :S
Forum: Themes and Templates
In reply to: Function Reference/previous post linkanybody an idea how to get rit of the » when you are on the last post?
Forum: Themes and Templates
In reply to: Twitter Tweet coded into themeow cool Jeremy, I also found another solution! ??
Thanks!
Forum: Themes and Templates
In reply to: Twitter Tweet coded into theme(the website is on a local server)
this was making the error
thanks for your answer.
For anyone who wants to code the tweet this into his theme (with short permalink):
<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script> <div> <a href="https://twitter.com/share" class="twitter-share-button" data-url="<?php echo get_bloginfo('url')."/?p=".$post->ID; ?>" data-text="<?php the_title(); ?>" data-count="vertical">Tweet</a> </div>