mcqTia
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Attempt to read property “display_name” on boolfor now I wrapped it in an if statement and the error went away, until the patch fixes it:
if ($user_data) { return \trim( $this->helpers->schema->html->smart_strip_tags( $user_data->display_name ) ); }
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Pinterest error message broken imageI had the same error and the issue was happening when the pin button was using the featured image. Maybe it is something to go with the way the WP thumbnail function works that prevents pinterest from recognizing the photo.
What I was able to to was to add a custom code to my theme JS file and pull the image on the post that is after the featured image. This seemed to fix the problem.
You can add this to your theme javascript file and see if it helps:
var pinterest_Share = 'https://www.pinterest.com/pin/create/button/?url=' + encodeURIComponent(document.URL) + '&media=' + encodeURIComponent(document.images[4].src) + '&description=' + encodeURIComponent(document.title); $('.pinterest-social-share').each(function () { this.href = pinterest_Share; });
That being said you will need to create an HTML button on the post with the name linking to the code above. The button should look like:
<a class="pinterest-social-share" target="_blank" rel="noopener" aria-describedby="new-window-0"> <img class="socialshare" src="**put a link to your pinterest icon here**" alt="Share this post on Pinterest"/> </a>
Forum: Plugins
In reply to: [PDF Builder for WPForms] Link to Paid Version of PDF Importer?Thank you!
Using the free version, the form is created with Adobe Acrobat Pro and filled with user submitted data but when users download their emailed certificate they can edit the information which isn’t what we want.
Does the paid version, where I can create fields within the plugin prevent this?
can I go into the code and change it for myself now? what file is it in?
This is a question I also had, I am just having trouble figuring out when to put the media query and what class/ID to use a selector. @mike Smith what did you use?
figured out it was just preview not working. Actual form works fine
Hey Daniel, I’ve tried deleting and reinstalling the plug in with no avail. Still showing form not found (for both the forms I created and the contact form your provide).
Any help on this is greatly appreciated as I am excited to use the pop up asap!