gbivingsDC
Forum Replies Created
-
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Server Error: List-ItemsHi @keraweb
It’s be great if you could take a look at the issue I’m having with Pods-List Items. Let me know if you need anything else. Many thanks.Thank you very much. Surprising that the Pods Framework site doesn’t have a little of these.
Forum: Plugins
In reply to: [WP Speed of Light] webpagetest api keySo where do you add the Google PageSpeed API key? Dashboard only has option for WebPageTest API key.
Forum: Plugins
In reply to: [Flexible Map] Map not working on HTTPS siteWill look into that. Thanks.
Forum: Plugins
In reply to: [Flexible Map] Map not working on HTTPS sitePlease ignore. Now seems to be working.
Forum: Reviews
In reply to: [Pro Categories Widget] likeI am using your plug-in and like it, but I have one question. I need to categorize a blog post with categories A and B. A is to show the post on the blog, B to show it on the homepage.
I don’t want category B to be listed on the blog page. But when I exclude category B in your widget, the post doesn’t show up at all on the blog page, even though I’ve added category A to show it there.
Is this clear? Telling me how to fix this would be great.
Thanks.
Forum: Plugins
In reply to: [Flexible Map] Multiple maps to show in one iframeRoss,
Hi there. Let me explain a little further because my jQuery skills leave a lot to be desired.Here’s what I’d like. Set the map with the coordinates for the main office as default on the Contact Us page and then have the flexible map in the window change when someone clicks on an address link (not a tab, just a link). Perhaps that’s what your saying I can do with jQuery UI tabs.
You can see the page here: https://newsite.blancopc.com/contact/ For example, want the link for the Miami office to open in the map window and not a new Google Map tab as it does now.
Thanks.
GaryForum: Fixing WordPress
In reply to: Using query_post ()When I tried that (and tried it again) I get the error message “Nothing Found”?
Forum: Fixing WordPress
In reply to: Post Display on HomepageThat worked. Many thanks! One quick follow on question: What do I add to this statement so that the home page just shows one Book blog post (whereas the other pages will show 3 since I’ve set Settings > Reading = to 3). That’s the last question, promise.
Forum: Fixing WordPress
In reply to: Post Display on HomepageI did. Thank you. I used your reference to change the pagination buttons.
The problem remains in that the query_post is breaking the pagination –“Older posts” link doesn’t work.
Here’s the code from my index.php:
‘<?php query_posts(‘category_name=Books’); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?><div class=”nav-previous alignleft”><?php next_posts_link( ‘Older posts’ ); ?></div>
<div class=”nav-next alignright”><?php previous_posts_link( ‘Newer posts’ ); ?></div><?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>’Thanks.