Old (outdated) guide: http://danielsantoro.com/quickly-add-css-wordpress-website/
You can fix this by adding some custom CSS, either using a Child Theme or a plugin like Simple Custom CSS. Here is the code you would want to add:
| <?xml version="1.0"?> | |
| <RatingServiceSelectionResponse><Response><TransactionReference><CustomerContext>Rating and Service</CustomerContext><XpciVersion>1.0</XpciVersion></TransactionReference><ResponseStatusCode>1</ResponseStatusCode><ResponseStatusDescription>Success</ResponseStatusDescription></Response><RatedShipment><Service><Code>03</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>6.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>12.77</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>12.77</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery/><ScheduledDeliveryTime/><RatedPackage><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue> |
| stdClass Object | |
| ( | |
| [id] => | |
| [packed] => Array | |
| ( | |
| [0] => WC_Boxpack_Item Object | |
| ( | |
| [weight] => 1.13 | |
| [height] => 2.00 | |
| [width] => 2.00 |
| <?xml version="1.0"?> | |
| <RatingServiceSelectionResponse><Response><TransactionReference><CustomerContext>Rating and Service</CustomerContext><XpciVersion>1.0</XpciVersion></TransactionReference><ResponseStatusCode>1</ResponseStatusCode><ResponseStatusDescription>Success</ResponseStatusDescription></Response><RatedShipment><Service><Code>01</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>12.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>118.77</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>118.77</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery>1</GuaranteedDaysToDelivery><ScheduledDeliveryTime>10:30 A.M.</ScheduledDeliveryTime><RatedPackage><Transp |
Old (outdated) guide: http://danielsantoro.com/quickly-add-css-wordpress-website/
You can fix this by adding some custom CSS, either using a Child Theme or a plugin like Simple Custom CSS. Here is the code you would want to add:
| /** | |
| * Change Product Title on Page ID 184 | |
| */ | |
| function change_prod_title( $title ) { | |
| if ( is_single( '184' ) ) { | |
| return str_replace( __( 'Shop', 'woocommerce' ), 'Donate', $title ); | |
| } | |
| return $title; | |
| } |
| <?php | |
| /** | |
| * Looking to make a shipping class only eligable for a specific state | |
| */ | |
| add_filter( 'woocommerce_states', 'wc_sell_only_states' ); | |
| function wc_sell_only_states( $discountstates ) { | |
| $discountstates['US'] = array( |
| <?php | |
| /** | |
| * Thankyou page | |
| * | |
| * @author WooThemes | |
| * @package WooCommerce/Templates | |
| * @version 2.2.0 | |
| */ | |
| if ( ! defined( 'ABSPATH' ) ) { |
| <?php | |
| // Add Shortcode | |
| function list_wc_brands_plain() { | |
| // Code | |
| // Show brands in list | |
| $taxonomy = 'product_brand'; | |
| $orderby = 'name'; | |
| $show_count = 0; |
Here's what I'd suggest - it's very quick and is easier than removing the function altogether :)
First, she'd either want a child theme active or to use something like Simple Custom CSS so she can enter CSS and still be able to update. Then, she'd add the following:
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
display: none;
}
| PACKAGE 1 (0) | |
| stdClass Object | |
| ( | |
| [id] => | |
| [packed] => Array | |
| ( | |
| [0] => WC_Boxpack_Item Object | |
| ( | |
| [weight] => 6.00 | |
| [height] => 3.50 |