Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • in reply to: fonts.gstatic DSGVO Google reCaptcha Google Maps etc. #1369072

    Hi together,
    after deactivating ReCaptcha and even deleting it completely from my google account, the logo is still shown on my site on bottom right.
    Why that?
    Best regards,
    Dieter

    in reply to: Missing blocks after Update to WP 5.3.2 and Enfold 4.7.1 #1175278

    Hi Rikard,

    Thank You! I deactivated the plugin and all seems to work fine. Then I activated again and the pages were broken again. So I checked the settings of the plugin and set the “JS Combine” button to OFF and it seems working. I also checked it with Caching enabled, same results.

    Could You look again for Errors, now the JS Combine button is OFF and site looks ok.

    The caching plugin ist not yet updated for the latest WP Version. I still wait for the notification. Maybe this causes problems.

    Best regards
    Dieter

    in reply to: Missing blocks after Update to WP 5.3.2 and Enfold 4.7.1 #1175098

    Hi Victoria,
    thanks. Caching is disabled. You can login already.
    I really appreciate Your help!
    Cheers
    Dieter

    in reply to: Missing blocks after Update to WP 5.3.2 and Enfold 4.7.1 #1175077

    Hi Victoria,
    Screenshots not necessary, just go to my site: http://www.powerpress.ch
    You will see it right on the first page.
    How is temporary admin access working?
    Best regards
    Dieter

    in reply to: Missing blocks after Update to WP 5.3.2 and Enfold 4.7.1 #1175042

    Hi Victoria,
    Screenshots not necessary, just go to my site: http://www.powerpress.ch
    You will see it right on the first page.
    How is temporary admin access working?
    Best regards
    Dieter

    in reply to: Missing blocks after Update to WP 5.3.2 and Enfold 4.7.1 #1174900

    Anybody there who has an idea?

    in reply to: Missing blocks after Update to WP 5.3.2 and Enfold 4.7.1 #1174828

    Sorry, forgot to write the link to my site in the original post. Now it’s there.

    Hi there,

    for about two years now the recommendation from Orca worked well. After the newest Enfold Update I added “.justified-image-grid a” to the excluded lightboxes, as described. But now I still have double lightboxes.

    See: http://www.powerpress.ch/portfolio/reise/
    What happened or changed?

    Thanks for Your help,
    Dieter

    EDIT: The problem is now solved. I tried a lot but the solution was so simple.

    1) Unchecked the “Lightbox Modal Window” in Theme Options Tab of Child Theme and Save changes.
    2) Do a Cache deletion of Browser
    3) Purge All in Cache Plugin
    4) Check “Lightbox Modal Window” in Theme Options Tab of Child Theme and Save changes.
    5 Now Double Lightboxes should be gone.

    • This reply was modified 5 years, 6 months ago by powerpressdh.

    Hi together,

    Long time since a last answer, but the question is also interresting for me.

    MC4WP has a possibility to add a checkbox to any kind of contact forms here but it won’t take the relevant data out.

    I am just in contact with the support of mc4wp and they meant the problem of not taking the data are the field names ‘Enfold’ is using in their contact form. E.g. ‘avia_1_1’ etc.

    They sent me a possible solution to add to funtions.php of my child theme. But it is still not working. Here the code:

    /**
     * This will send additional Custom-Form fields to MailChimp.
     *
     * To add more fields, change the $field_map variable and use the following format:
     *
     *      Custom-Form field => MailChimp field.
     *
     * Example:
     *
     *      "avia_1_1" => "LNAME"
     *
     * This means that the Custom-Form "avia_1_1" field will be sent to the "LNAME" field in MailChimp.
     *
     * @return array
     */
    add_filter( 'mc4wp_integration_custom_data', function( $data ) {
        // map of Custom-Form field names => MailChimp field names
    	$field_map = array(
    		'avia_1_1' => 'LNAME',
    		'avia_2_1' => 'FNAME',
    		'avia_3_1' => 'EMAIL'
    	);
    	foreach( $field_map as $my_field => $mailchimp_field ) {
    		if( ! empty( $_POST[ $my_field ] ) ) {
    			$data[ $mailchimp_field ] = sanitize_text_field( $_POST[ $my_field ] );
    		}
    	}
    	return $data;
    } );

    Any ideas?

    Cheers
    Dieter

Viewing 9 posts - 1 through 9 (of 9 total)