mariusrudolph
Forum Replies Created
-
Oh, wow! You are totally right. I should have checked the documentation first. Thanks a lot for the advice.
- This reply was modified 5 years, 1 month ago by mariusrudolph.
Hi @maybellyne , thanks for the quick reply.
You are right, the results looks eligible for the rich results but when you open the FAQ section on the Rich Results Tools there are elements in it from the breadcrumb schema markup (breadcrumbList, ListItem). I am not sure if this is correct.Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] No signature in PDFI found a fix from another user:
In this file contact-form-7-signature-addon\public\js\scripts.js
Before line 57, add this code:// Custom Event Listener to populate signature data before submit. $(form).find('input.wpcf7-submit').on('mouseover', function() { sigObj.beforeSubmit(); });Worked for me – give it a try.
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] CF7 5.4 Update, Missing Validation MessageAdded the code and it works like a charme. Thanks a lot!
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] CF7 5.4 Update, Missing Validation Messagehi @chloemccarty , thanks for your post? Do you also use the “Send PDF for Contact Form 7” plugin to add the signature to a pdf document? In my case the pdf always shows a broken image (little red cross-document-icon). Do you have any idea how to fix that?
any help is appreciated!
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Signature Add On no ImageHi @candyfort , unfortunately no news. I think it has something to do with the permissions. If you find a solution, please let me know.
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] No signature in PDF@simonemessina : any luck on your side?
Forum: Plugins
In reply to: [a3 Lazy Load] ACF SupportHi Steven,
I installed the current version of the plugin but it seems that lazy loading is not working properly. I load images with the following code:$image2 = get_field('2_bild'); // vars $url = $image2['url']; $title = $image2['title']; $alt = $image2['alt']; $caption = $image2['caption']; // thumbnail $size = 'berufe-thumb-big'; $thumb2 = $image2['sizes'][ $size ]; $width = $image2['sizes'][ $size . '-width' ]; $height = $image2['sizes'][ $size . '-height' ];<img width="<? echo $width; ?>" height="<? echo $height; ?>" class="img-responsive" src="<? echo $thumb2; ?>" alt="<?php get_the_title(); ?>?">Is there anything wrong with that?