wjweb
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache] caching and lazy loading of woocommerce bookings calendarupdated url The problem seems to be going away randomly at times, for me the calendar on the link above doesn’t work now.
Forum: Plugins
In reply to: [Contact Form 7] values empty in emailI wrapped it in a table. Is that the problem maybe?
<table cellpadding="10"> <tr> <td colspan="2"> [text text-100 placeholder "Naam"]</td> </tr> <tr> <td><label>[text text-101 placeholder "Adres"] </label></td> <td><label>[text text-102 placeholder "Postcode"] </label></td> </tr> <tr> <td colspan="2"> <label>[text text-103 placeholder "Woonplaats"] </label></td> </tr> <tr> <td colspan="2"><label>[text text-104 placeholder "Geboortedatum"] </label></td> </tr> <tr> <td><label>[email email-513 placeholder "E-mailadres"] </label></td> <td><label>[text text-105 placeholder "Telefoonnummer"] </label></td> </tr> <tr> <td><label>[text text-106 placeholder "Bedrijfsnaam"] </label></td> <td><label>[text text-107 placeholder "Certificaat naam"] </label></label></td> </tr> <tr> <td>Schrijft zich in voor de training te:</td> <td><label>[text text-108 placeholder "Plaatsnaam"] </label></td> </tr> <tr> <td>Deze training start op:</td> <td>[text text-109 placeholder "Datum"] </label></td> <tr> <td>Is bij IEMT-training terecht gekomen via:</td> <td><label>[text text-110] <td><label> </tr> <tr> <td colspan="2">[checkbox checkbox-112 "Ik verklaar dat er geen sprake is van:"]</br> <ul><li>een oogziekte of oogprobleem</li> <li>een neurologische stoornis</li> <li>psychotisch verleden of heden</li> <li>nog moet getuigen in een strafrechtelijk proces</li></ul> </td> </tr> <tr> <td colspan="2">[checkbox checkbox-113 "Ik ga akkoord met de"] <a href="https://www.iemt-training.nl/algemene-voorwaarden/" target="_blank">Algemene voorwaarden</a> </td> </tr> </table> </br> [submit "Verzenden"]
Forum: Plugins
In reply to: [Contact Form 7] values empty in emailDo you mean replacing the values like [text text-201] to a random other number? That doesnt work for me for some reason.
Forum: Plugins
In reply to: [Contact Form 7] values empty in emailDefaulting to standard theme without any plugins except cf7 doesnt work either, the email stays empty..
Forum: Plugins
In reply to: [Contact Form 7] values empty in emailNo, thats the strange thing. No errors and i triple checked all the fields. No errors in the console as well. I am out of clues…
Forum: Plugins
In reply to: [Contact Form 7] values empty in emailNo it doesnt matter what i enter. It stays empty in the email
Forum: Plugins
In reply to: [Multi Step Form] Something wrong with alignment and widthhi Mondula,
thanks for the quick reply. This works to keep the form inside the container, but that would have to apply to screens with a min width of 760px. I know how to do that, but it doesn’t solve the problem of the form defaulting to the top of the page. Please have a look at that as well.
Also, the styling (background and border-left) seem to have disappeared.
Right now this plugin doesn’t work well for me so I won’t use it just yet. I will definitely buy it when these issues are addressed though, as it’s exactly what I’ve been looking for. Please do so ??
Forum: Plugins
In reply to: [Yoast SEO] Yoast 3.2.4 breaks wp-adminI got it back to work by reverting to Yoast 3.0.7 in the end. Before that, increasing memory in wp-config.php from 256mb to 512 mb did the trick for some reason.
Forum: Plugins
In reply to: [Yoast SEO] Yoast 3.2.4 & WP 4.5.1 breaks Adminstl99 how did you revert? I deleted all files and uploaded a ‘new’ old version. That didnt work..
Forum: Plugins
In reply to: [Yoast SEO] Yoast 3.2.4 & WP 4.5.1 breaks AdminI reverted to 3.1 but still have the same problem but that didn’t solve anything. Running WP 4.4.2 with 3.1 now, used to be 3.2.4. Yoast can you please fix this?
Forum: Plugins
In reply to: [Yoast SEO] Yoast 3.2.4 & WP 4.5.1 breaks AdminSame here. Admin screen turns white immediately
Forum: Plugins
In reply to: [BEMO A-Z Index] Filter doesnt work on my siteI am not running a funny theme (Avada) and it worked fine until 2 days ago. If I buy it you can make it work?
Forum: Plugins
In reply to: [WooCommerce] Displaying SKU under title on category pageOkay, ashamed right now. I somehow duplicated the whole code. Thanks for your sharp vision ??
Forum: Plugins
In reply to: [WooCommerce] Displaying SKU under title on category pageThe website in question:
https://www.inspectietechniek.com/producten/diktemeters-wanddiktemeters/
Forum: Plugins
In reply to: [WooCommerce] Displaying SKU under title on category pageHere is the content of the file:
<?php /** * The template for displaying product content within loops * * This template can be overridden by copying it to yourtheme/woocommerce/content-product.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer). * will need to copy the new files to your theme to maintain compatibility. We try to do this. * as little as possible, but it does happen. When this occurs the version of the template file will. * be bumped and the readme will list any important changes. * * @see https://docs.woothemes.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 2.5.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product, $woocommerce_loop; // Store loop count we're currently on if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; } // Store column count for displaying the grid if ( empty( $woocommerce_loop['columns'] ) ) { $woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 ); } // Ensure visibility if ( ! $product || ! $product->is_visible() ) { return; } // Increase loop count $woocommerce_loop['loop']++; // Extra post classes $classes = array(); if ( 0 === ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 === $woocommerce_loop['columns'] ) { $classes[] = 'first'; } if ( 0 === $woocommerce_loop['loop'] % $woocommerce_loop['columns'] ) { $classes[] = 'last'; } ?> <li <?php post_class( $classes ); ?>> <?php /** * woocommerce_before_shop_loop_item hook. * * @hooked woocommerce_template_loop_product_link_open - 10 */ do_action( 'woocommerce_before_shop_loop_item' ); ?> <?php if ( 'clean' != Avada()->settings->get( 'woocommerce_product_box_design' ) ) : ?> <a href="<?php the_permalink(); ?>" class="product-images"> <?php endif;?> <?php /** * woocommerce_before_shop_loop_item_title hook. * * @hooked woocommerce_show_product_loop_sale_flash - 10 * @hooked woocommerce_template_loop_product_thumbnail - 10 */ do_action( 'woocommerce_before_shop_loop_item_title' ); ?> <?php if ( 'clean' != Avada()->settings->get( 'woocommerce_product_box_design' ) ) : ?> </a> <?php endif; ?> <div class="product-details"> <div class="product-details-container"> <?php /** * woocommerce_shop_loop_item_title hook. * * @hooked woocommerce_template_loop_product_title - 10 */ do_action( 'woocommerce_shop_loop_item_title' ); if ( $product->get_sku() ) { echo '<div class="product-meta">SKU: ' . $product->get_sku() . '</div>'; } ?> <div class="clearfix"> <?php /** * woocommerce_after_shop_loop_item_title hook. * * @hooked woocommerce_template_loop_rating - 5 * @hooked woocommerce_template_loop_price - 10 */ do_action( 'woocommerce_after_shop_loop_item_title' ); ?> </div> </div> </div> <?php /** * woocommerce_after_shop_loop_item hook. * * @hooked woocommerce_template_loop_product_link_close - 5 * @hooked woocommerce_template_loop_add_to_cart - 10 */ do_action( 'woocommerce_after_shop_loop_item' ); ?> </li> <?php /** * The template for displaying product content within loops * * This template can be overridden by copying it to yourtheme/woocommerce/content-product.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer). * will need to copy the new files to your theme to maintain compatibility. We try to do this. * as little as possible, but it does happen. When this occurs the version of the template file will. * be bumped and the readme will list any important changes. * * @see https://docs.woothemes.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 2.5.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product, $woocommerce_loop; // Store loop count we're currently on if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; } // Store column count for displaying the grid if ( empty( $woocommerce_loop['columns'] ) ) { $woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 ); } // Ensure visibility if ( ! $product || ! $product->is_visible() ) { return; } // Increase loop count $woocommerce_loop['loop']++; // Extra post classes $classes = array(); if ( 0 === ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 === $woocommerce_loop['columns'] ) { $classes[] = 'first'; } if ( 0 === $woocommerce_loop['loop'] % $woocommerce_loop['columns'] ) { $classes[] = 'last'; } ?> <li <?php post_class( $classes ); ?>> <?php /** * woocommerce_before_shop_loop_item hook. * * @hooked woocommerce_template_loop_product_link_open - 10 */ do_action( 'woocommerce_before_shop_loop_item' ); /** * woocommerce_before_shop_loop_item_title hook. * * @hooked woocommerce_show_product_loop_sale_flash - 10 * @hooked woocommerce_template_loop_product_thumbnail - 10 */ do_action( 'woocommerce_before_shop_loop_item_title' ); /** * woocommerce_shop_loop_item_title hook. * * @hooked woocommerce_template_loop_product_title - 10 */ do_action( 'woocommerce_shop_loop_item_title' ); /** * woocommerce_after_shop_loop_item_title hook. * * @hooked woocommerce_template_loop_rating - 5 * @hooked woocommerce_template_loop_price - 10 */ do_action( 'woocommerce_after_shop_loop_item_title' ); /** * woocommerce_after_shop_loop_item hook. * * @hooked woocommerce_template_loop_product_link_close - 5 * @hooked woocommerce_template_loop_add_to_cart - 10 */ do_action( 'woocommerce_after_shop_loop_item' ); ?> </li>