ZaddKeefer
Forum Replies Created
-
Forum: Hacks
In reply to: Custom Post Type for TV Shows, Seasons, EpisodesHow can I use register_post_type() and set hierarchical to true (default: false). with the rewrite argument > with_front to prepend /series/ ?
I really need help on all this, thanks in advance
Forum: Fixing WordPress
In reply to: Possible to do Post Relation in a Episode Guide?Any help on this would be appreciated
Forum: Fixing WordPress
In reply to: Possible to do Post Relation in a Episode Guide?Something similar to this, if not identical to this post:
https://wordpress.stackexchange.com/questions/20125/tv-show-database-best-way-for-structuring-itBut I have no idea how to set it up
Forum: Fixing WordPress
In reply to: Put form select into URLNever mind, it worked out.. I was on the wrong page
Thanks again
Forum: Fixing WordPress
In reply to: Put form select into URLThanks for the fast reply, I changed it up quickly but it doesn’t seem to have effect in the url.. It still order by the selections, but does not seem to send it to the url
Any solution on this? This might be more simple than I know of lol
Forum: Fixing WordPress
In reply to: My url ?tag=example doesn't order posts with custom queryNobody got a solution for this?
Forum: Fixing WordPress
In reply to: Search Query Not Working, just refreshes content?Nevermind.. solved it on my own with global function:
global $orderby; $original_query = $orderby; $orderby = null; $orderby = new WP_Query( $args );
Forum: Fixing WordPress
In reply to: Search Query Not Working, just refreshes content?Can ANYBODY help with this
Forum: Fixing WordPress
In reply to: Search Query Not Working, just refreshes content?Found out the search query works without my custom query:
Normal while:<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>
But I want it to work my custom while:
<?php if ($movies->have_posts()) : ?> <?php while ($movies->have_posts()) : $movies->the_post(); ?>
I tested if the function had anything to do with the custom query.. It hadnt, so it might be the form that need to be found in my custom query?
Forum: Fixing WordPress
In reply to: My url ?tag=example doesn't order posts with custom queryI really need help on this, this having trouble finding a solution for this..
Forum: Fixing WordPress
In reply to: Exclude child_cat from archive & make form work outside loopbump
Forum: Plugins
In reply to: [IMDb Connector] Get the frontend/output of meta_valueAs I said your template works fine, and does EVERYTHING I want it to do :P, I want this to also work on my index, might just need to use the template code from the template source or adjust the template code to my index right?
Forum: Plugins
In reply to: [IMDb Connector] Get the frontend/output of meta_valueYes this is actually what I wanted! And it worked perfectly on a template/page, it came out just what I wanted – But what I am trying to achieve, is a sort filter on the main page $_POST[‘select’], like
&order=DESC&meta_key=year&orderby=meta_value
etc.. except with your imdb rating – I want it to work with the template file you shared, so instead of an entire template of that exact outcome, I want it to work in my select->option.. Really tried everything to make this working in a dropdown – Like if they clicked on the <option> Rating</option> it will only show posts sorting by the rating, just like on your working template :)!Thanks for all this mate!
Forum: Plugins
In reply to: [IMDb Connector] Get the frontend/output of meta_valueOne of the problems might be because of “,” between decimals in the rating, such as “8,3” and not “8.2”.. I tried to manually sort by a number like “8.2” and not “8,2” and it worked.. IF YOU can find a way to replace the , with . might be the workaround!
Forum: Plugins
In reply to: [IMDb Connector] Get the frontend/output of meta_valueRizon is what I use as well, will be on there around 17:00 hopefully! I live in Denmark so it’s same timezone
Thanks for your patience, after all you are the one trying to help out!