Alex Cragg
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Login form in sidebarForum: Themes and Templates
In reply to: How to widgetize two sidebars?try this code in the functions.php file
<?php if ( function_exists('register_sidebar') ) { register_sidebar(array('name'=>'Left Sidebar')); register_sidebar(array('name'=>'Right Sidebar')); } ?>and this in the sidebar – make sure to change it to ‘Right Sidebar’ in your second div
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Left Sidebar') ) : ?> <?php endif; ?>the beauty of this is that you can name your sidebars – makes for easier editing
Forum: Fixing WordPress
In reply to: Widgets – don’t validate links in xhtmllook in the widget php file and find the part that has id=”links”, and change it to class=”links” wherever it occurs. Classes can be defined more than once.
now change your css from #links to .links
Forum: Plugins
In reply to: Ecommerce and ssl questionsdont forget though that using paypal etc, their servers are secure, and that is where the transactions take place, not on your own site.
Forum: Fixing WordPress
In reply to: Widget Ready Theme now broken!2.2 has widgets built in, so you don’t need to download the plugin. Does your theme have a functions.php file? what is in it? Also do your sidebars have something like
<?php if (function_exists('dynamic_sidebar')) {dynamic_sidebar(); } ?>? i guess they must do if it worked before…?Forum: Themes and Templates
In reply to: Static Page and WidgetsAre you altering this using the widgets admin panel? If so, wherever that sidebar is called for, the changes will show up.
Forum: Plugins
In reply to: Ecommerce and ssl questionsYou can use other gateways than paypal, but at the moment they are all New Zealand, like the company making wp e-commerce. In one of the next releases they are integrating google cart, which you can use if you are in USA or UK.
I run the shop without ssl/certs etc, no warnings come up.
Forum: Plugins
In reply to: stats not recording the last two daysI appear to be having a problem with the WP.com stats plugin too; i know ive had visitors cause ive had comments, but the stats page isn’t showing any visits at all.
Also google analytics shows visits.
any ideas?
Forum: Everything else WordPress
In reply to: API Registration number access?do you mean for Akismet and Stats? head to wordpress.com and sign up, they supply the required API key.
Forum: Fixing WordPress
In reply to: Synchronise local and “live” installshave a look at Adobe’s Apollo, you could build some software yourself like the ebay model?! an easy option would be to just write in wordpad and copy it over when your connected. But seriously, if you build a desktop version of wordpress on Apollo, a lot of people will love you!
Forum: Fixing WordPress
In reply to: Archives and Category Exceprtin your archive.php and category.php look for
<?php the_content(); ?>and edit it out, making sure you have<?php the_title(); ?>stillForum: Everything else WordPress
In reply to: HTML tagsthe tags that are allowed are defined in wp-includes/kses.php
Forum: Plugins
In reply to: Problem with Google AJAX Search Pluginyou can configure the search on the options panel, it has its own admin sub-panel.
You can choose what sort of search to do, web, blog or other such as flicker.
Its a google service that Dan made this plugin for, so the results are google searches like normal, so include the sponsored links.
Forum: Plugins
In reply to: Problem with Google AJAX Search Plugini dont see what the problem is…looks ok to me. Could you describe what you see?
Forum: Themes and Templates
In reply to: Theme Toolkit conditionalssorry, thought people would know about it.
http://planetozh.com/blog/my-projects/wordpress-theme-toolkit-admin-menu/
it basically lets you add an admin page for your theme when someone activates it for the blog.any ideas how i can achieve what i wanted?
thanks