TA003
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ajax formThe problem seems to be solved.
I have re-written the code, sometime the best solution apparently.I still don’t know the mistake, but I’m glad it works.
Thanks for help.Forum: Fixing WordPress
In reply to: ajax formMy webserver is configured to send emails, and I have installed firebug. Firebug shows no errors en the ajax succes is shown, it just doesn’t send the email or outputs any data I put on the mail.php file.
Can’t figure out where it is going wrong.
Thanks for the reply.Forum: Fixing WordPress
In reply to: Custom meta boxI fixed it. The problem was the position of the meta box.
When the meta box is in the sidebar, it changes the url.
If the meta box is below the editor everything works fine.
Verry strange.Forum: Fixing WordPress
In reply to: Custom meta boxWhen I print the code the html for the form looks fine, so i can’t figure out where it goes wrong.
This is the function I use to get the slug:
function the_slug() { $post_data = get_post($post->ID, ARRAY_A); $slug = $post_data['post_name']; return $slug; }
This is the output of the wp_query:
<select name="region"> <option value=" ">-- Select option -- </option> <option value="test1">Test 1</option> <option value="test2">Test 2</option> <option value="test3">Test 3</option> </select>
Forum: Fixing WordPress
In reply to: Update 3.8.1.It also broke the screen options and blocks on the detail of a post or page.
I think you can intall the plugin on the netwerk and then you can activate them separately on each site. You can active this by going to Options > Multisite User Registration Manager > Select ‘Activate on this blog’.
Hope this helps.
Forum: Plugins
In reply to: [TT Extra Fee Option for WooCommerce] Checkbox if user wants to add feeHi, I didn’t succeed. I used a different methode because i didn’t needed to add an amount.
Forum: Plugins
In reply to: [Widget Content Blocks] Compatible with 'advanced custom fields'?Great! Just what I needed!
This saved me a lot of time!Thanks!
Forum: Plugins
In reply to: [Add Tip WooCommerce] Fixed amountI would locate the checkbox on the checkout-page.
Nice to here there is going to be an update.Thanks.
Forum: Plugins
In reply to: [WooCommerce] woocommerce not showing price with Tax ?Hi, i have the same problem.
Did you figure it out?Forum: Plugins
In reply to: [Woocommerce CSV importer] Product data – Variable productOke, tanks for the info!
Forum: Plugins
In reply to: [Woocommerce CSV importer] Product data – Variable productHi,
Is there a way just to set the product data to variable product?
So we don’t have to change the post data form each product?
I don’t have the information yet for the variations import?Tanks
Forum: Fixing WordPress
In reply to: WP QueryI found it! I’ve used your code and changed the taxonomy to ‘product_cat’. This is the full query:
$args = array( 'post_type' => 'product', 'posts_per_page' => 10, 'tax_query' => array( array( 'taxonomy' => 'product_cat', 'field' => 'id', 'terms' => array(20, 61, 74, 28), 'operator' => 'AND' ) ), 'orderby' => 'date', 'order' => 'ASC' ); $loop = new WP_Query( $args );
Thanks for all the help!
Forum: Fixing WordPress
In reply to: WP QueryI’m using wooCommerce.
I’ve tried:
$args = array( 'post_type' => 'product', 'posts_per_page' => 1, 'product_cat' => 'baby', 'orderby' => 'rand' );
This is working but it shows me items form the first category?
I’ve tried:$args = array( 'post_type' => 'product', 'posts_per_page' => 1, 'product_cat' => 'baby, red', 'orderby' => 'rand' );
But it seems to show only the products from the first category.
Forum: Fixing WordPress
In reply to: WP QueryPrint_r from the loop:
https://pastebin.com/9Huj0kmeMaybe this will help?