Raider000
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with responsive designIt’s a custom theme and it’s based on twitter bootstrap.
Forum: Fixing WordPress
In reply to: CSS: How to find out what makes my navi disappear?Thank you.
I needed to add the following:
@media (max-width: 979px) and (min-width: 768px) { .nav-collapse.collapse { height: auto; } }It works now! 🙂
Forum: Fixing WordPress
In reply to: CSS: How to find out what makes my navi disappear?It’s my own theme.
Forum: Fixing WordPress
In reply to: How to list child pages??Yes, everytime. But nevermind, I use the plugin Gecka Submenu to this now. Thanks anyway!
Forum: Fixing WordPress
In reply to: How to list child pages??There are 2. Normal posts and CPT.
Forum: Fixing WordPress
In reply to: How to list child pages??I use my own theme.
Forum: Fixing WordPress
In reply to: How to list child pages??Thanks but nothing changed. Still the same.
Forum: Fixing WordPress
In reply to: How to list child pages??Thanks but this won’t work. It still says NULL.
Forum: Fixing WordPress
In reply to: How to edit the list of my Custom Post Type?Ok, I think my question was not clear enough.
I try again…
I know already how to output and style the posts of my custom post types but there is a default page which lists all my posts automatically. E.g. when my CPTs name is ‘news’ I would find this page on mypage.com/news. I didn’t create this page but I would like to edit it. Is this possible?Forum: Fixing WordPress
In reply to: WooCommerce comes with weird contentThanks but I am not really sure about this. I don’t know what widget it could be and if it is really a widget, how comes it only gets activated for WooCommerce pages?
And I don’t have such a text in my footer.php, since I use my own theme.
Forum: Fixing WordPress
In reply to: WooCommerce comes with weird contentUhm … I was now able to remove the sidebar but how do I remove the footer?
I know how to use CSS to disable it but is there a php function for that?
Forum: Fixing WordPress
In reply to: WooCommerce comes with weird contentOh lol … this weird thing was the sidebar.
I fixed this now with
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);Forum: Fixing WordPress
In reply to: How to get variable from another function?Thanks, this helped!
Forum: Fixing WordPress
In reply to: possible to use is_page() for search?No I’m not using any plugins. You can change the look of the permalinks on wordpress, so did I. But the URL stays basically the same, it just looks different.
Forum: Fixing WordPress
In reply to: possible to use is_page() for search?Thanks but this won’t work.
I tried it with echo var_dump(is_search());
On every page I get bool(false) but when I’m on the search page nothing appears.