Te Calleja
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Remove free word in shipping method labelThe code above is for removing the word “Free!” when your product price is 0.
To remove the word (Free) in shipping, use thisadd_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_local_pickup_free_label', 10, 2 ); function remove_local_pickup_free_label($full_label, $method){ $full_label = str_replace("(Free)","",$full_label); return $full_label; }Found the solution here http://stackoverflow.com/questions/22353854/woocommerce-custom-function-for-free-shipping-label
Forum: Fixing WordPress
In reply to: Dashboard CSS not loadingThis
define( 'CONCATENATE_SCRIPTS', false );
worked for me. Just make sure you’re using the ‘ (the straight one) and not the ’ (the curly one) — I think one is an apostrophe, the other is a single quote. It made all the difference in my case.Forum: Plugins
In reply to: [WooCommerce] Add Extra Fields on User Registration?To add custom fields for the buyers, use this http://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/ (Lesson 3, adding custom special field).
To add fields for user registration, use this https://codex.ww.wp.xz.cn/Customizing_the_Registration_Form
Hope this helps!
Forum: Fixing WordPress
In reply to: "Some" Enquiries Not Being Received via Contact Formbeen a while since i used contact form 7 — i think you add a shortcode to your contact page or the page where you want the form to show up.
Forum: Fixing WordPress
In reply to: "Some" Enquiries Not Being Received via Contact FormMaybe some of the emails landed on your Spam folder?
To install a plugin
1. go to your dashboard, then click on Plugins > add new2. Near the top, you will see:
Install Plugins
Search | Upload | Featured | Popular….3. click on Choose File and select the zip file from your computer
4. click install now button
5. after it installs, click activate
Hope this helps!
Forum: Fixing WordPress
In reply to: How do I change the footer text?replace this line:
& copy; <?php the_time('Y') ?> <?php bloginfo('name'); ?>with:
& copy; Stepford Digital <?php the_time('Y') ?>(remove the space between & and copy; )
Forum: Fixing WordPress
In reply to: How do I change the footer text?This line:
& copy ; <?php the_time('Y') ?> <?php bloginfo('name'); ?>
defines what shows up on the footer.& copy ; displays the copyright symbol
<?php the_time(‘Y’) ?> displays the current year
<?php bloginfo(‘name’); ?> displays the titleForum: Fixing WordPress
In reply to: Color of Posts and "posted by"on your style.css file, add:
.date { color:#F00; }to make the “Posted by” red in color
Forum: Fixing WordPress
In reply to: Woocommerce return to shop navigationI have yet to check if you can edit where the “Return to Shop” button goes, but maybe you can try this for the meantime: use the /all-products/ page template as the template for the /shop1/ page that was created. Would that work?
Forum: Plugins
In reply to: [WooCommerce] Send Customer Email When Order is Set to Processing?If you don’t mind doing an extra step, maybe you can also add in a Customer note that the order is being processed — it sends an email to the customer when you add a customer note.
Forum: Fixing WordPress
In reply to: Post error establishing a database connectionI’m not sure if this will solve your problem, but every time I move my installations, I do these:
1. Update the wp-config file with the new db details.
2. Log into wp-admin and make sure that the WordPress Address and Site Address in the General settings tab is correct.
3. Go into phpmyadmin and check that all URLs are updated.
Maybe you can also try setting the permalinks to default first?
Hope this helps.
Forum: Plugins
In reply to: How do I set featured products in WooCommercehaha its just that star! saved me a lot of time too, thank you spiderplant0!
have you set a featured image along with your product? maybe that’s why its not showing up on the featured products panel.
Forum: Fixing WordPress
In reply to: Root redirectWhat I did before was move everything to the root (say, from http://www.mydomain.com/wp/ to http://www.mydomain.com). Then I edited the phpmyadmin wp_options table — I looked for all instances of http://www.mydomain.com/wp and changed it to http://www.mydomain.com.
Forum: Fixing WordPress
In reply to: How to change the background color of the menu bar?insert this line:
color: #ffffff;
before the closing bracket } if you want to change the text to white (use the hex value of the color you want to use).
Forum: Fixing WordPress
In reply to: How to change the background color of the menu bar?From your dashboard, go to Appearance > Editor
Edit the css file of your template — you’re using twentyeleven, right? Change the background values of #access and use the colors that you want.