Maxaud
Forum Replies Created
-
Forum: Plugins
In reply to: How to add a Home Page link in the menuIn that case, why not just add the follwoing code where your navigation is:
<a href="<?php echo get_settings('home'); ?>">Home</a>Forum: Plugins
In reply to: Multi-site yet single-site solution?that will allow multiple blog installation into a database but they wont share any of the stored information.
Forum: Plugins
In reply to: Creating a plugin to use existing database helpI’ve read through your post a few times and am still not sure of exactly what you’re wanting to do.
You want a page to show a form? (ex: contact form/custom form)
(if this is the case I recommend cforms)I guess I’m just having a hard time visualizing what you want to do.
Forum: Plugins
In reply to: Multi-site yet single-site solution?also, just found this post which could help you accomplish this:
Forum: Developing with WordPress
In reply to: Credit Card Processingsorry for bringing up this month old post but you mentioned:
It’s not paypal’s fault (except for the huge per-transaction fees)… it’s just a symptom of being the people’s choice at the grass-roots level.
I don’t see their fees as much different then any other payment processor out there. I use both ECHO and Paypal, ECHO is 2.5%+.$.30 where Paypal is 2.9%+$.30 (both for non swiped, also Paypal doesn’t charge me a $5 monthly fee like ECHO). So that would be a difference of $.40 for a $100 purchase, not much to worry about IMO.
Forum: Developing with WordPress
In reply to: defining theme for multiple domains in wp-config.phpI’m not a pro at this type of stuff so I just want to clarify for those of us that aren’t coding inclined of what to change.
my understanding is that the following is what needs to be changed to match your theme location and website name?
'/path/to/public_html/wp-content/themes/'.$domain); define('STYLESHEETPATH', '/path/to/public_html/wp-content/themes/'.$domain); if ($domain == 'altsite.mobi') domain_theme($domain);thanks!
Forum: Plugins
In reply to: Need plugin or code to define links in sidebar from a static pageanother solution that came to me would be to make additional page templates for each airport and apply these to the pages they belong to. In the template call a different widgetized sidebar. In the sidebar widget section add only the corresponding bookmarks or html to the sidebar for that page.
kind of confusing and there are better ways to accomplish it but this is another option.
Forum: Plugins
In reply to: Need plugin or code to define links in sidebar from a static pageI’d say to use custom fields for the data but use a plugin like ‘custom write panel’ of ‘fresh post’:
http://wordpress.org/extend/plugins/fresh-page/then create a secondary loop from within your sidebar to extract the different items.
Forum: Plugins
In reply to: Multi-site yet single-site solution?what if you use a post plugin similar to wp-o-matic
http://wordpress.org/extend/plugins/wp-o-matic/install that in each of your sites and set it up to draw posts from your main account and filter them into different categories on your child wordpress installs.
Forum: Plugins
In reply to: How to add a Home Page link in the menuIf I understand correctly. You don’t need a plugin to accomplish this.
What about just just going into your wordpress admin menu and clicking on ‘settings’ and then ‘reading’
where it says ‘Front page displays’, choose ‘a static page’ and choose your page with the title of ‘home’ from the drop down as your ‘front page’Correct me if I’m wrong and this isn’t what you’re wanting to do.
Also, this is assuming that you’re using WP2.5+Forum: Plugins
In reply to: content management plugin?I would have to agree.
Custom write panel is amazing. Didn’t know freshpage existed. Thanks for posting!Forum: Developing with WordPress
In reply to: How to restrict file downloads to specific users?The below program would be a good plugin to use for this but it doesn’t work for wordpress 2.5.X
Forum: Developing with WordPress
In reply to: How to restrict file downloads to specific users?The best I can come close to is making a page for each client and using the below plugin to restict viewing of that page only to their user id.
Forum: Plugins
In reply to: List Authors by most recent posts?So, is there no way to do this?
Forum: Fixing WordPress
In reply to: Static Front page problemcheck your header.php file in your themes folder.
There’s probably something there that in a navigation div that is adding the “home”
It’s very common.