antoniorojilla
Forum Replies Created
-
Forum: Your WordPress
In reply to: New WP site, a bit different…Thank you to all for your comments!
Well, Jinsan, if you find the window too small you only have to click the Macro buttom and see what happens… BTW, the Macro buttom is that with a flower. There is a page about the different uses of the buttoms but it is spansh…
Again, thanks to all!
Forum: Fixing WordPress
In reply to: How to get self URI/URL?Thanks for your reply!
I tried that, but it gave me the full URI/URL. Hopefully I could find the exact element and I solved the problem with this code:
wp/index.php?<?php echo $_SERVER[‘QUERY_STRING’]; ?>
I’m new to this and it’s great to see people like you trying to help others! THANKS A LOT FOR YOUR TIME!
Forum: Fixing WordPress
In reply to: How to get self URI/URL?Ops! I wrote < b > tags instead of < strong >! Sorry!
Forum: Plugins
In reply to: Jump-to pluginMmmm… I forgot to say: THANKS FOR THE WORK!
Also, about my first question here, does anyone have any idea on how to get rid of the jumpto drop down form when printing a page? This is, how can I tell the plugin not to show that select list?
Thanks in advance!
Forum: Plugins
In reply to: Jump-to pluginOps! I didn’t notice you are the CG-PowerPack’s developer… I installed it sometime ago just for a test and right now I was navigating through the files and I found that PageName is included… Time to chek it!
Forum: Plugins
In reply to: Jump-to pluginHi David! I visited your site and saw your pagination method at this location:
http://www.chait.net/index.php?p=2&page=1
Nice work!
Is your code public? Can it be found in the codex or any plugin repository? I would like to give it a try…
Thanks in advance!
Forum: Plugins
In reply to: Jump-to pluginYes, I find it useful, but I have a problem with it: I’m trying to do a printable version of my posts and when a post have multiple pages I have used this code (I found it in these forums) to show all the content at the same time:
<?php if ($posts) { foreach ($posts as $post) { start_wp(); ?>
<?php $numpages; ?>
<?php the_title(); ?>
<?php for ($page = 1; $page <= $numpages; $page++) { ?>
<?php the_content(); ?>
<?php } } } ?>It works, but I get the drop-down box just after the cotent of everypage, so can you please help me?
How can I do so your plugin can know that the printable page is not multipage or how can I do so I can show in my posts the select form from a function so it is not always in the content? Something like this:
<?php jumpto(); ?>
I don’t know if you understan me, but I hope so! Thanks anyway for a gret plugin, I really like it!
Forum: Fixing WordPress
In reply to: How to show the excerpt only in the first page of a multipage post?WOW! THAT WORKS!
I used this code:
<?php if (get_query_var(‘page’) < 2) : ?>
<tr><td class=”excerpt”><?php the_excerpt(); ?></td></tr>
<?php endif; ?>
A fast and helpful reply! THANK YOU SO MUCH!