thirstcard
Forum Replies Created
-
The plugin does seem to support registration out of the box. Try it, it does work
Forum: Plugins
In reply to: [WooCommerce] Remove fields on Edit AddressPut this into your theme’s functions.php
add_filter( 'woocommerce_billing_fields', 'custom_woocommerce_billing_fields' ); function custom_woocommerce_billing_fields( $fields ) { $fields['billing_first_name'] = array( 'label' => __('Name', 'woothemes'), 'placeholder' => __('Name', 'woothemes'), 'required' => true, 'class' => array('billing-first-name') ); $fields['billing_phone'] = array( 'label' => __('Phone', 'woothemes'), 'placeholder' => __('Phone', 'woothemes'), 'required' => false, 'class' => array('billing-phone') ); return $fields; }As you can see this allows you to change the billing address fields. My code example above sets the label, placeholder text, required, and class for both the first name and phone fields. You can do the same for:
billing_first_name, billing_last_name, billing_company, billing_address_1, billing_address_2, billing_city, billing_postcode, billing_country, billing_state, billing_email, billing_phone
Source: https://gist.github.com/1860056
1.2.8.7 works for me too
Forum: Plugins
In reply to: WooCommerce – Converting Dropdowns to Radio on Single ProductI have been trying to do this too. I get to the stage where i’ve edited variables.php so that radio buttons display instead of the option list but then the jQuery event doesn’t trigger on click.
If you find a solution grateful if you can post it here.
Forum: Plugins
In reply to: [Twit Connect] Register on BuddyPress via Twit Connect?it worked out of the box for me. i just installed the plugin and voila. sorry i can’t be much more help.
Forum: Plugins
In reply to: [Twit Connect] Register on BuddyPress via Twit Connect?I installed the plugin and it seems as though it is possible!
Thanks for getting back to me.
I did try reinstalling at the time. Going back to the previous previous version solved the issue for me. Am happy to stay on this version for now.
:}
@rahman.ashiq
Did you find out how to redirect to the change-avatar page after login?
I have now resolved. Need to keep an eye on my copy and pasting skills. Copied the wrong file by mistake :}
I get the redirect error with the two most recent versions of WordPress HTTPS. However, after rolling back to 3.0.1 it resolved the problem.
However, this version caused a massive drop in my Google ranking as it stopped Googlebot from being able to crawl my whole page as it said ‘cookies’ were mandatory (I am assuming Googlebot crawls with cookies disabled).
In short, I cannot use 3.0.3, 3.0.2 and 3.0.1. I believe the plugin to be a great plugin, it is just causing me problems lately.
To everyone out there, WordPress HTTPS is the best HTTPS plugin for WordPress, i’ve never had issues in the past, just on this occasion.
@mvied – do you have a patch for version 3.0.1 that makes my site content crawlable by the cookies disabled Googlebot?
Hope you can help.
Forum: Fixing WordPress
In reply to: Deactivate archive for specific custom taxonomy@thor Brink
Thanks but your solution only makes it possible to deactivate a post type archive.
I need to deactivate a custom taxonomy archive.
Forum: Fixing WordPress
In reply to: wp_list_categories to display terms without hyperlinksScribu doesn’t seem to be available right now so I had to scrap using his tutorial for the time being. I ended up doing it like this:
<ul> <?php $iterms = wp_get_post_terms($post->ID, "TAXONOMY"); ?> <?php foreach($iterms as $iterm) : ?> <?php if($iterm->parent > 0) { ?> <li class="second-level-item"><?php echo $iterm->name; ?></li> <?php } else { ?> <li class="top-level-item"><?php echo $iterm->name; ?></li> <?php } ?> <?php endforeach; ?> </ul>@egado – thanks for your help
Forum: Fixing WordPress
In reply to: wp_list_categories to display terms without hyperlinksI have used Scribu’s tutorial to extend the category walker so do need to use wp_list_categories to display the terms as I want to maintain the “top-level” and “second-level” hierarchy.
Forum: Fixing WordPress
In reply to: wp_list_categories to display terms without hyperlinksThanks for the suggestion, this works for displaying categories. The problem I have is I am trying to display terms from a custom taxonomy I have set up.
The code I have is as follows
<ul> <?php wp_list_categories($post->ID, 'taxonomy=MYTAXONOMYNAME&hide_empty=1&title_li='); ?> </ul>Using this on single.php this displays the taxonomy terms as hyperlinks. I’d like to display the taxonomy terms without hyperlinks.
Forum: Fixing WordPress
In reply to: taxonomy.php template displaying top-level and second-level termsAnyone have an idea how I could do this?