Title: shieldfire's Replies | WordPress.org

---

# shieldfire

  [  ](https://wordpress.org/support/users/shieldfire/)

 *   [Profile](https://wordpress.org/support/users/shieldfire/)
 *   [Topics Started](https://wordpress.org/support/users/shieldfire/topics/)
 *   [Replies Created](https://wordpress.org/support/users/shieldfire/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/shieldfire/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/shieldfire/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/shieldfire/engagements/)
 *   [Favorites](https://wordpress.org/support/users/shieldfire/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 36 total)

1 [2](https://wordpress.org/support/users/shieldfire/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/shieldfire/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/shieldfire/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Memphis Documents Library] file menu shown expanded](https://wordpress.org/support/topic/file-menu-shown-expanded/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/file-menu-shown-expanded/#post-12491345)
 * Had to go, found something that works.
    A pity.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] Value of ACF as variable](https://wordpress.org/support/topic/value-of-acf-as-variable/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/value-of-acf-as-variable/#post-12416699)
 * I’ve tried using PHP getting the field value (get-field) but the variable comes
   up empty every time. Suggestions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dynamic Conditions] AND conditions](https://wordpress.org/support/topic/and-conditions/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/and-conditions/#post-12404543)
 * Thanks for your reply.
 * One can, kind of, get the same effect in Elementor by using inner sections. The
   parent section has one condition, and the inner section(s) have other conditions.
   Just tried it, and it seems to be working.
 * An in-plugin solution would be cleaner though.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Value of ACF as variable](https://wordpress.org/support/topic/value-of-acf-as-variable-2/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/value-of-acf-as-variable-2/#post-12392169)
 * I scaled the entire thing down to just picking up the field value – it comes 
   up empty every time…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Value of ACF as variable](https://wordpress.org/support/topic/value-of-acf-as-variable-2/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/value-of-acf-as-variable-2/#post-12391834)
 * Hmm, I tried
 *     ```
        <?php
   
       function my_acf_iframe_shortcode( $atts, $content ) {
   
       if ( $ressida = get_field( 'resultatsida' ) ) {
   
       $str = '<iframe src="$ressida . width="100%" height="500"></iframe>';
   
       return $str;
   
       } else {
   
       return '';
   
       }
   
       }
   
       add_shortcode( 'iframe', 'my_acf_iframe_shortcode' );
   
       echo "DEBUG: ressida = " . $ressida;
       ```
   
 * But $ressida is empty. Despite it having a value in the ACF field.
    Am I missing
   something?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Value of ACF as variable](https://wordpress.org/support/topic/value-of-acf-as-variable-2/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/value-of-acf-as-variable-2/#post-12388315)
 * So I added
 *     ```
       <script>$resSida = get_field( "resultatsida" );
       </script>
       ```
   
 * To the header of the page, then call it using
    `[iframe src=$resSida]`
 * And I get a “page can not be found” error. (I also tried with `[iframe src="$
   resSida"]`)
    Linking a std youtube page works.
 * So, question is what am I doing wrong? The field is a ACF-field if that matters,
   and I’ve double checked that the fieldname is correct.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Value of ACF as variable](https://wordpress.org/support/topic/value-of-acf-as-variable-2/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/value-of-acf-as-variable-2/#post-12385017)
 * I’ve been playing around with this and failing miserably.
    The only thing that
   happens is that I get the literal text, not the output of the code.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Value of ACF as variable](https://wordpress.org/support/topic/value-of-acf-as-variable-2/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/value-of-acf-as-variable-2/#post-12383863)
 * Oh great! Where do I put
    `$value = get_field( "your_url_field" );` ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Memphis Documents Library] file menu shown expanded](https://wordpress.org/support/topic/file-menu-shown-expanded/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/file-menu-shown-expanded/#post-12383828)
 * OK, after two weeks without any reply – and the first test period coming up, 
   we need to get this resolved. I’ve tried the plugin with two themes, OceanWP 
   and Blocksy. Same problem. If it can’t be resolved, then we’ll have to let this
   plugin go and try use something else.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [iFrame](https://wordpress.org/support/topic/iframe-34/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/iframe-34/#post-12335026)
 * Thank you for your time.
    [Insert deity] forbid someone knows the answer to both
   questions.
    -  This reply was modified 6 years, 4 months ago by [shieldfire](https://wordpress.org/support/users/shieldfire/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding media files to menu](https://wordpress.org/support/topic/adding-media-files-to-menu/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/adding-media-files-to-menu/#post-12276751)
 * Valid point, thanks. I will consider that – haven’t really found something that
   does it in a meaningful manner yet, I want to minimize user involvement in setting
   up the page in that case.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Need plugin: Document management](https://wordpress.org/support/topic/need-plugin-document-management/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/need-plugin-document-management/#post-12274302)
 * That’s the fugly one. It didn’t seem to have any obvious ways to adding them 
   to a menu.
    -  This reply was modified 6 years, 4 months ago by [shieldfire](https://wordpress.org/support/users/shieldfire/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Corrupt images](https://wordpress.org/support/topic/corrupt-images-2/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/corrupt-images-2/#post-12191079)
 * I do have that, I’ll disable it and see if that helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problem with images](https://wordpress.org/support/topic/prolem-with-images/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/prolem-with-images/#post-12146380)
 * I tried changing format, from jpg to png. See if that helps any.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [https breaking site?](https://wordpress.org/support/topic/https-breaking-site/)
 *  Thread Starter [shieldfire](https://wordpress.org/support/users/shieldfire/)
 * (@shieldfire)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/https-breaking-site/#post-12125410)
 * Problem solved:
 * OK, I found the solution on my own. After mailing with support for days and in
   the process managing to over-right my installation (I do have a backup). So I
   lost about 1½ week and need to manually restore the site (backup is on multi-
   site server, can’t afford pro-restore tool atm).
 * Solution: You need to use the Elementor tool to replace the URL… (not only in
   WP settings).
    Important!: Adding an SSL Certificate to your website (HTTP to
   HTTPS) also requires you to replace the URL. [https://docs.elementor.com/…/218-i-changed-the-url-of&#8230](https://docs.elementor.com/…/218-i-changed-the-url-of&#8230);

Viewing 15 replies - 1 through 15 (of 36 total)

1 [2](https://wordpress.org/support/users/shieldfire/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/shieldfire/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/shieldfire/replies/page/2/?output_format=md)