moxyma
Forum Replies Created
-
Martin, if you see this can you please tell me where to insert that preload attribute. I am having the exact same issue and I cannot figure out how to stop my audios from autobuffering or starting… Nothing I have done seems to work… please help!! π
Forum: Fixing WordPress
In reply to: Help with pagination on custom page??Hi Steve.. Just wanted to let you know that I THINK I have it working!
I just removed the line of code – $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
and I installed a plugin named wp-paginate and it seems to be working! Still testing. π I’ll keep ya posted.
Forum: Fixing WordPress
In reply to: Help with pagination on custom page??Sure. Here is the link that I got from Pastebin.
I hope this helps. Thank you so much STV :d)
Forum: Fixing WordPress
In reply to: Help with pagination on custom page??I am not seeing the third post. :(. This is what I have done so far in the last 30 minutes. I created two additional posts now having a total of 5. They are all published and in category 49. I named them Post 1, Post 2, Post 3, Post 4, and Post 5.
Right now I see on my blog page “Post 5” and “Post 4”. I see on my address bar BEFORE I click on Older entries a url that looks like this: ?page_id=4 when I click on Older Entries my url in the address bar changes to this:
?page_id=4&paged=2. And then on that new page is still only see Post 5 and Post 4. I guess I didn’t do it right?The code that I have in my custom blog page is the last code that you provided to me. π
Forum: Fixing WordPress
In reply to: Help with pagination on custom page??Hello. Ahh, well that makes sense that it was getting overwritten. Thanks again STV π It looks like I’m getting a lot closer with your help and making progress. I have three posts and only two posts show from category 49 (because of “posts_per_page=2&cat=49&paged=$paged” I see at the bottom of my custom blog page “Older Entries” which it looks like is using the below code from my theme.
<div class="alignleft"><?php next_posts_link('<span class="back"></span><span class="backnext">Older Entries</span>')?>I click on “Older Entries” but it looks like it just refreshes the page. I’m not taken to a page where I can see all of the posts from category 49. I figured since I have three posts and only two posts show on my custom blog page that once I clicked on Older Entries I would be taken to a page where all three would show up in descending order. I’m sure I’m missing something. This is only my third month using WordPress so I still have a lot to learn. π
Forum: Fixing WordPress
In reply to: Help with pagination on custom page??Hi stvwlf. Thank you for recommending that. I tried placing it right after where you indicated but it didn’t seem to work :(.
<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('posts_per_page=2'.'&paged='.$paged); query_posts( 'cat=49' ); while ($wp_query->have_posts()) : $wp_query->the_post(); ?>That is the code I have so far. I used query_posts to only retrieve a certain category for my custom blog page and it works. But I can’t get it to only show say 2 posts and then the pagination starts. AND I also need those posts in that category to now show on my default/main blog template.
Forum: Fixing WordPress
In reply to: Using shortcodes and plugins in a custom pageI hope this helps someone else who may be having the same issue. I’m surprised I didn’t see more people asking it. LOL Oh well.
Thanks again Swanson! Greatly and much appreciated π
Forum: Fixing WordPress
In reply to: Using shortcodes and plugins in a custom pageOh wait Swanson, oh my gosh oh my gosh wait it is working!!! I misunderstood your your code.
You gave this which is perfect – <?php echo do_shortcode(‘[shortcode]’); ?>
So then I have this now –
<?php echo do_shortcode(‘[MY SHORTCODE FROM THE PLUGIN]’); ?>
I was trying to put that in just like you typed it. But then I realized that you have to put in the actual shortcode for the plugin inside of the php code where it says ‘shortcode’. LOL
Oh my gosh thank you so much!!!
Forum: Fixing WordPress
In reply to: Using shortcodes and plugins in a custom pageOh I see. Okay, I put in the code you provided using the admin section of WordPress (Appearance –> WordPress –> Custom page). Doesn’t look to be working :(.
Forum: Fixing WordPress
In reply to: Using shortcodes and plugins in a custom pageHmm, I’m not sure what you mean by html view. I don’t have that option on my custom page. I built it using Dreamweaver.
Forum: Fixing WordPress
In reply to: Using shortcodes and plugins in a custom pageHi Swanson,
Thank you! I’ll try this and see if it works and post back, okay? π
But if the plugin I’m using does require that my custom page be in the loop is there anything I can do?