iframe works for one C-Panel folder but not another

Thanks Jacob, I didn’t realize that iframe could only reach an address that included a domain, not just a file path. I solved the problem by creating a subdirectory, games.zafflower.com, and installing a new WordPress site in that subdomain. Now this iframe code will correctly display my Unity3D game. Thanks! Zaffer <iframe src=”https://games.zafflower.com/SummersDay/index.html” width=”1200″ height=”900″ … Read more

WordPress framework [closed]

As far as I am aware and based on interpretation of your heavily indecipherable question (no disrespect intended) you are asking for a plugin or framework that you can install in WordPress that will allow you to visually convert a PSD into a WordPress theme. As far as I know there isn’t such a thing … Read more

Prevent other sites from showing my site via iframe

WordPress has a built-in function to send the X-Frame-Options header: send_frame_options_header(). It is used by default on the login and admin pages. If you want to enable it always, just add it for front end views: add_action( ‘template_redirect’, ‘send_frame_options_header’ ); But … it doesn’t send Content-Security-Policy headers. If you want to have a more complete … Read more

Iframe is not working for www.example.com/my-account

I think that your web page is https (like: https://www.example.com/my-account) and the iframe was loaded via http. Try loading your web page in this way: http://www.example.com/my-account If the page is http, the iframe content must be http. That’s why, you have to remove “s” from “https.”

How to change src to data-src for iframe inside WP content?

The code snippet in your question is a filter, but it isn’t built properly: A filter needs a function that takes in the thing to be filtered as the first parameter, and returns the new version Your function ignores the first parameter, breaking any changes that have already been made Your function doesn’t always return … Read more

iFrames when using custom shortcode, ACF and Elementor only renders alternate ones

The iframes not showing is probably caused by the shortcode parser freaking out by how you pass the parameter to it. I tested your code example / shortcode (added 4 times to the post content) and here’s what I got as a result, <div><iframe class=”airtable-embed” &#8217;src<=”” iframe=””></div> <div class = “airtable-view”><iframe class=”airtable-embed”&#8217;src</iframe> It might be … Read more