Forum Replies Created

Viewing 15 replies - 1 through 15 (of 39 total)
  • Thread Starter wjweb

    (@wjweb)

    updated url The problem seems to be going away randomly at times, for me the calendar on the link above doesn’t work now.

    Thread Starter wjweb

    (@wjweb)

    I 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"]
    Thread Starter wjweb

    (@wjweb)

    Do you mean replacing the values like [text text-201] to a random other number? That doesnt work for me for some reason.

    Thread Starter wjweb

    (@wjweb)

    Defaulting to standard theme without any plugins except cf7 doesnt work either, the email stays empty..

    Thread Starter wjweb

    (@wjweb)

    No, 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…

    Thread Starter wjweb

    (@wjweb)

    No it doesnt matter what i enter. It stays empty in the email

    Thread Starter wjweb

    (@wjweb)

    hi 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 ??

    Thread Starter wjweb

    (@wjweb)

    I 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.

    stl99 how did you revert? I deleted all files and uploaded a ‘new’ old version. That didnt work..

    I 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?

    Same here. Admin screen turns white immediately

    I am not running a funny theme (Avada) and it worked fine until 2 days ago. If I buy it you can make it work?

    Thread Starter wjweb

    (@wjweb)

    Okay, ashamed right now. I somehow duplicated the whole code. Thanks for your sharp vision ??

    Thread Starter wjweb

    (@wjweb)

    Thread Starter wjweb

    (@wjweb)

    Here 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>
Viewing 15 replies - 1 through 15 (of 39 total)