Ignacio Nelson
Forum Replies Created
-
gunnakal
Have you tried clicking on “Screen options” at the upper right corner of the screen? There you will find a checkbox for each panel/option you can enable on that particular backend page (for example, you could go to the edit post screen and deactivate the autor meta box).
You might find an option to add AIOS there again.
Done. I solved it by adding
header(‘Content-Type: text/html; charset=UTF-8’);
in custom-field-template.php right after the php tag opens.I believe that It would be great if the plugin author could add an option to the plugin for this. A simple input box where you can specify the charset you want to use.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Repeating custom fieldsHi cugok. You are opening and closing a fieldset with different names. That might be the problem.
Try changing the name of the opening or closing tag to match the other one. It might be a good idea to name them founder_fieldset.
Forum: Themes and Templates
In reply to: FREEmium theme parse errorFor anyone that is having this problem, I fixed all of this theme’s error by replacing the php shorttag <? with the full <?php tag on every file that had it.
Forum: Fixing WordPress
In reply to: Use page as category?thanks a lot for your help!
i finally solved it.if someone needs to do this, here´s the solution.
i was using k2 as theme, so i made a new template file like this:<?php /* Template Name: Category id 5 */ ?> <?php get_header(); ?> <div class="content"> <div id="primary"> <div id="current-content" class="hfeed"> <?php query_posts('cat=5&showposts='.get_option('posts_per_page')); ?> <?php include('theloop.php'); ?> </div> <!-- #current-content --> <div id="dynamic-content"></div> </div> <!-- #primary --> <?php get_sidebar(); ?> </div> <!-- .content --> <?php get_footer(); ?>as you can see, i used the query_posts to limit it to category 5. then, i created a new page in wordpress that is almost empty, but on the bottom i selected this template file.
as easy as that!
Forum: Fixing WordPress
In reply to: Use page as category?One would be to really just have a custom category page that pulls only posts from a single category.
that´s exactly it!
but even though i read the articles you sent me (i really did), i couldn´t figure out how to do that. i know it should be really easy, but the loop examples don´t show how to limit it to a category, but how to exclude one…any further info will be really appreciated! 🙂
i would recommend opening WP Shopping cart files and doing a search for products_page_container since it looks like this id is generated by that plugin.
it might also be an error in page.php or single.php of your template. i would start by doing the id search. there are great apps that can open all files you want and perform the search on all of them, so you don´t have to go 1 by 1 (i do that on dreamweaver for example).
hope that helps, but i know it´s not much…
good luck!Forum: Developing with WordPress
In reply to: Display posts from TODAYYou, my friend, are genious.
thanks a lot for your help!Forum: Developing with WordPress
In reply to: Display posts from TODAYit worked like a charm!!!
aahhhhhhhhh what a reliefthere´s only one more thing i´d like to do but it will sound like throwing a bomb here. i apologize in advance for such a php newbie question…
now i finally have the index showing all posts from today using your code. and then there comes the loop itself to style and show each post.
can i make it so:first 3 news
<?php this style (the complete theloop.php one) ?>next 10 o 15
<?php this style (less stuff than the other) ?>all others
<?php this style (title only) ?>maybe it´s some code after
if ( have_posts() ) {
?Forum: Developing with WordPress
In reply to: Display posts from TODAYi´m about to try that solution
i´ve been strugling with the loop to find the query on the index and as a result, now i´m nuts 😀i also got rid of the rolling archives, i don´t need to show posts from older days anymore. so your solution seems perfect for this case!!!
let me try and come again, but thanks A LOT in advance!
Forum: Developing with WordPress
In reply to: Display posts from TODAYNope, just didn´t work. It displayed a number only. Maybe k2 functions are messing with that. Looks like i have no luck on this matter 🙁
Forum: Developing with WordPress
In reply to: Display posts from TODAYthanks a lot!
i´ll try this right now!
can´t believe i missed that in my searches