nickpdx
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Hacking 3.8.14.1 UPS Shipping to work in USAOh also, if you configure PayPal payments standard for your payment gateway, and you want to select Yes for Send Shipping Details to Paypal, just plan on wanting something else. A killer BMX bike, maybe, I don’t know.
Forum: Plugins
In reply to: [Plugin: PageSpot] Linking PageSpot to posts and categoriesThat would be great. Send me a svn patch when you’re done and I will check it over and apply it to the repo trunk.
Forum: Fixing WordPress
In reply to: [Plugin: PageSpot] Putting widgets in the sidebarI’m not familiar with widgets in the context of “widgetized” sidebars. My custom theme sidebar is not widgetized. If you have any insight into how to make PageSpot friendly with widgetized sidebars, I am all ears.
Forum: Plugins
In reply to: [Plugin: PageSpot] Planned or desired upgradesIs it possible at Post level?
I haven’t investigated, but it seems like a short way to go to include that feature. More a matter of removing certain restrictions that I put in place, than adding new functionality. I will keep this in my list. Thanks for your feedback!
Forum: Plugins
In reply to: [Plugin: PageSpot] Example Please?I do have a live, working example of this plugin, just not in a sandbox that I will let anybody play in. The screenshots I included are taken directly from that installation. If you have specific questions, please post them here or shoot me an email and I’ll answer as best I can.
Forum: Plugins
In reply to: Which hook will let me alter a Page template before it’s parsed?The init hook would work ok, I think, but it seems to be about the same as the “wp” hook.
I think that template_redirect will work better because the context that you’re dropped into (template-loader.php) appears to have the post data – $wp_query is in global scope with the post loaded up. So things like is_page(), get_the_ID(), etc. will return a value.
Now to figure out when and how to inject code into that template…
Forum: Plugins
In reply to: Which hook will let me alter a Page template before it’s parsed?That might work, I will try it and compare to another candidate I found – “template_redirect”.
thanks