wildhalf
Forum Replies Created
-
Also estimating if there is any way to use PayPal express for my one time only paymet product and the normal PayPal for subscription payment
Thanks for your reply.
Is there anyway I can place this button in say a short code so I can put on any page I want
I Love how easy it was to setup your plugin and get it to work for a once off payment. But i have two questions
1) Is there anyway say to setup an Order button that goes striaght to paypal rather than go through the checkout/cart page.
2)Is there anyway to get it to work with woocommerce subscriptions or for a paypal subscription payment.
Has this been updated to work with buddypress???
Guess i should give it a try
Forum: Plugins
In reply to: Best Gallery PluginAnybody……………
Forum: Fixing WordPress
In reply to: Does anyone know how i can do the followingI suppose i may have to change my theme then…
I was wondering if there was a plugin or a guide out there to show you how to display the thumbnails on the homepage… I do want a redirector when clicked i want the post to be displayed.
thanks
Forum: Fixing WordPress
In reply to: Category Post CountMichael
Thanks for all your help. I have one more question when the category count is 0 there is nothing printed. Is there any way i can print out the categories with 0 posts also
Forum: Fixing WordPress
In reply to: Category Post Countcan i use the category name instead of the id
Forum: Fixing WordPress
In reply to: number of posts in one categoryMicheal
This works for what i am trying to do but how could i modify it to get the count for each of my categories…
Forum: Everything else WordPress
In reply to: Robots Meta Name problemHate when this happens….
Just found the answer..
You need to go to Settings; Privacy. And change the Blog Visibility thing is what you want. Choose
I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers
and click save changes
Forum: Fixing WordPress
In reply to: Sidebar Drops Down in Internet Explorer 6 and lowerI managed to fix the probelm… My Theme had a CSS file for IE7, so i copied this and kept adding things to it till i got IE6 working.
I found the following code to the Header.php file
<!--[if ie 7]> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_directory'); ?>/ie-win.css" /> <![endif]-->
This code displays a different CSS file if you are using IE7. So i added the code below under this which displays a different CSS file again for any version of IE less than 7 (i.e lt = less than)
<!--[if lt ie 7]> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_directory'); ?>/ie_style.css" /> <![endif]-->
I then changed the following code adding ‘overflow: hidden;’ to #content-wrapper and adding in #content, #sidebar-wrapper and #sidebar from my main style.css also. And last but not leaast i had to change the width on #content-wrapper to 73% and the width on #sidebar-wrapper to 25%
#content-wrapper { width: 73%; overflow: hidden; } #content pre { width: 360px; overflow: hidden; } #content { float: left; overflow: hidden; } #sidebar-wrapper { width: 25%; float: right; margin-top: 20px; overflow:hidden; } #sidebar { float: right; padding: 0px 15px 10px 10px; width: 200px; margin-right: 15px; margin-top: 0px; overflow:hidden; }