Replace woocommerce | (pipe) separator in product variation to , or another character?
Type Alt + 124 for the vertical pipe symbol instead of changing language
Type Alt + 124 for the vertical pipe symbol instead of changing language
I was able to find the solution. This is so simple and I can’t believe I did not just do this first, but there you are (duh), I thought it was more complex than that… My solution is below: Copy woocommerce template to my theme to override single-product/add-to-cart/variable.php editing variables.php, change the <?php echo esc_url( … Read more
in comments I propose to make the order as public but I found a easier way to display a order : with a shortcode i try this in a plugin : add_shortcode(“view_order”, function ($atts, $content = “”, $tag) { if (!isset($_GET[“order_id”])) { return “no id”; } $order = get_post($_GET[“order_id”]); if ( !isset($order) || (“shop_order” !== … Read more
It’s not working because: get_the_terms( $post->ID, ‘product_cat’ ) yields an array of objects, to test against those objects you have to run a loop and pull a $term_id property out of each object. WordPress to the rescue! WordPress has a helper method for that… has_term(330,’product_cat’, $post); Use the has_term method to satisfy your conditional.
Oh god…I just tried to “Update Translations” and now it just magically works…so frustrating… So if this happens to anyone, you don’t need to download anything…just set your language in wordpress under General, go to the Updates section and at the bottom you will see language updates. Update those files and the WooCommerce language files … Read more
If you have an education website LearnDash could be a good choice. It’s a good plugin but doesn’t include a free version. Users can register as teacher and sell their courses. Other option could be the combination of WooCommerce and a marketplace plugin like Dokan or YITH WooCommerce Multi Vendor. Both has nearly same features. … Read more
You can certainly code your own shopping cart – but ultimately that code should live inside a custom plugin (or plugin functionality housed in a custom theme). So the short answer is “no” – one way or another you need to write or use a plugin. Please note that plugin recommendations are off-topic on this … Read more
http://www.rvoodoo.com/who-are-the-voodoo-empire/ Something like that I assume? That’s a CPT displayed as sort of a grid. Basically, you wrap the loop in a div. Set the width of that div. Say your overall width is 900px for your page. You could set the post width as 250. so 3 of them will be 750 wide, that … Read more
wpsc_the_product_title is just a wrapper for get_the_title, and it doesn’t take any arguments. Call setup_postdata( $item[‘prodid’] ) at the start of your foreach loop, and then the function should perform as expected.
Have you tried to flush the theme cache? Found at Settings > Store > Presentation in the right column at the bottom.