-1
votes
0answers
15 views

How to add custom jquery to wordpress? [closed]

At my woocommerce site site im getting syntax errors, when im trying to add a custom function, so i must have implemented the function wrong. The code sample below is my functions.php file, where i ...
0
votes
1answer
23 views

Search Woocommerce product titles only

Limiting post search to titles only is a breeze, but WooCommerce's post types don't abide by this rule. I have tried modifying the code below to be specific to products but am not having any luck. ...
0
votes
0answers
32 views

How to add X number of products to woocommerce cart at once

I am trying to add x number of products input and button to my catalog page so I can select a number, then hit add to cart. Is it possible to add in this function? The user will provide a number ...
0
votes
1answer
118 views

WooCommerce Tabs

In my theme, I have the WooCommerce plugin installed and would like to rename the "Catalog" tab, located under the WooCommerce > Settings submenu page. Am I able to do this from my functions.php ...
-1
votes
1answer
158 views

Adding a second email address to a completed order in WooCommerce

Before I ask this question, I know there is a (legitimate) hesitation to answer questions here about Woo products since they have their own support and their users should be encouraged to use that. I ...
0
votes
1answer
603 views

WooCommerce - Want to show multiple currency for a single product

Am using woocommerce - and want to show multiple currency for a single product. I know there is a currency converter widget extension. But am not able to buy it for now. So if can some one assist me ...
0
votes
3answers
60 views

Display additional page templates and a sidebar on plugin activation

I'm developing a child-theme off of the Twenty Twelve (1.1), using Wordpress (3.5.1) and the Woocommerce plugin (1.6.6). I've noticed that the problem with creating the online shop, single product ...
-2
votes
1answer
231 views

how can I hide the label 'reviews' on each product tab in woocommerce" [closed]

I do not want to edit the .php files. I want to add css code display:none to hide the wording reviews on the product tabs. What is the name I tell css to display: none?
1
vote
0answers
49 views

How to call a funcion via a dropdown or a input? (Woocommerce funcion)

This is the function I want to call function test() { echo "test"; add_filter('loop_shop_per_page', create_function('$cols', 'return 24;')); } And I call it like this <?php test() ?> So ...