tlacaelelrl
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Custom post categories not being addedSo my problem ended up being that I had to use
add_action('init', 'codex_custom_init_pt');
instead of
codex_custom_init_pt();
This is weird because I used the other way before and it worked just fine
Forum: Themes and Templates
In reply to: Search page redirecting to home pageGot it working, thank you for all your help!!!
Forum: Themes and Templates
In reply to: Search page redirecting to home pageThank you, what I did is add a hidden value in the search form and check the $_GET to see if search is set, now I am trying to figure how to access the search results, I tried with have_posts() but I got no results
Forum: Themes and Templates
In reply to: Search page redirecting to home pageThe directory structure is like that basically is base/wordpress/wordpress/here are the inner wordpress files and folders, the rest of the site works just fine
Forum: Themes and Templates
In reply to: Search page redirecting to home pageTried the second
bloginfo(‘template_directory’);?>/search.php”and got
PHP Fatal error: Call to undefined function get_header()
so wordpress is not processing that
by the way, thank you for all your help!!!
Forum: Themes and Templates
In reply to: Search page redirecting to home pageI did what you recommended
“try action=”<?php bloginfo(‘url’);?>/search.php””
And this is what I got in the address barAnd got 404
Forum: Themes and Templates
In reply to: Search page redirecting to home pagethis is the search page, I am not doing any results output until I am able to render that page when I hit the search button that is why it is empty, just echo something to know I got there
<?php get_header(); echo "in the search page"; get_footer(); ?>
Forum: Themes and Templates
In reply to: Search page redirecting to home pagethe search page does exist search.php and even if I have the template only display header footer and a message in the body it goes to the home page, I am using this as the form action bloginfo(‘url’)
I also tried action=”<?php bloginfo(‘url’);?>search”
I also tried action=”<?php bloginfo(‘url’);?>/search”Forum: Themes and Templates
In reply to: Search page redirecting to home pagefwoan: It is right there in my first post it shows the full search form, the action is bloginfo(‘url’) is that what you asked for?