mithadriel
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Category List?Typically I found the answer moments later …
<?php //list terms in a given taxonomy using wp_list_categories (also useful as a widget if using a PHP Code plugin) $taxonomy = 'genre'; $orderby = 'name'; $show_count = 0; // 1 for yes, 0 for no $pad_counts = 0; // 1 for yes, 0 for no $hierarchical = 1; // 1 for yes, 0 for no $title = ''; $args = array( 'taxonomy' => $taxonomy, 'orderby' => $orderby, 'show_count' => $show_count, 'pad_counts' => $pad_counts, 'hierarchical' => $hierarchical, 'title_li' => $title ); ?> <ul> <?php wp_list_categories( $args ); ?> </ul>Forum: Fixing WordPress
In reply to: wp-login.php just refreshes the form fieldsI hope that when you copied that code your noticed that it was commented. I should have uncommented it but didn’t. Forgot, I guess.
I did yes thanks 🙂
I’ll forge on with a fresh install and see how it goes.
Forum: Fixing WordPress
In reply to: wp-login.php just refreshes the form fieldsI did try with a download from 2.8.6 initially but that just made the page appear with only the username field available for input. I’ve used the version from 2.7.1 as this is the version which is installed currently.
Debug is switched on, there are no errors showing at the moment.
Could I install 2.8.6 as a seperate instance and import the data from the 2.7.1 version?
Forum: Fixing WordPress
In reply to: wp-login.php just refreshes the form fields
Viewing 4 replies - 1 through 4 (of 4 total)