Title: davidrivera's Replies | WordPress.org

---

# davidrivera

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

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

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Postman SMTP Mailer/Email Log] Can’t grant google permission](https://wordpress.org/support/topic/cant-grant-google-permission/)
 *  [davidrivera](https://wordpress.org/support/users/davidrivera/)
 * (@davidrivera)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/cant-grant-google-permission/#post-9224946)
 * Google updated it’s usage limits it seems. You have to join the group “Allow 
   Risky Access Permissions By Unreviewed Apps” to certify that you are aware of,
   and allow the risks of approving data access to unknown apps. Make sure you are
   signed in with the account you are connecting to Postman first. [https://groups.google.com/forum/#!forum/risky-access-by-unreviewed-apps](https://groups.google.com/forum/#!forum/risky-access-by-unreviewed-apps)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Postman SMTP Mailer/Email Log] Error: Postman is missing a required PHP library.](https://wordpress.org/support/topic/error-postman-is-missing-a-required-php-library/)
 *  [davidrivera](https://wordpress.org/support/users/davidrivera/)
 * (@davidrivera)
 * [9 years ago](https://wordpress.org/support/topic/error-postman-is-missing-a-required-php-library/#post-9157148)
 * You shouldn’t have to downgrade your PHP version to use this plugin. The missing
   library is called “iconv”. It’s described as “A module for PHP applications that
   need to convert character sets”. You can have your server admin install it, or
   update/install the PHP extension yourself if you have access via WHM. It’s something
   like Home > Software > EasyApache 4 Then go to PHP Extensions and search for 
   iconv.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Job Board] WP Editor File Not Found error with v2.4.3](https://wordpress.org/support/topic/wp-editor-file-not-found-error-with-v2-4-3/)
 *  [davidrivera](https://wordpress.org/support/users/davidrivera/)
 * (@davidrivera)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/wp-editor-file-not-found-error-with-v2-4-3/#post-9039253)
 * Hello,
 * I am experiencing the same issue. Can someone please tell me how to resolve this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tour & Activity Operator Plugin for TourCMS] Tour Location Maps not working after site migration](https://wordpress.org/support/topic/tour-location-maps-not-working-after-site-migration/)
 *  Thread Starter [davidrivera](https://wordpress.org/support/users/davidrivera/)
 * (@davidrivera)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/tour-location-maps-not-working-after-site-migration/#post-7221765)
 * It was a permissions issue for the plugins directory. For some reason that changed
   during migration, but all other plugins kept working. Thanks to Paul from TourCMS
   for helping me to figure it out.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [How can I turn this into a Shortcode?](https://wordpress.org/support/topic/how-can-i-turn-this-into-a-shortcode/)
 *  Thread Starter [davidrivera](https://wordpress.org/support/users/davidrivera/)
 * (@davidrivera)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-can-i-turn-this-into-a-shortcode/#post-7179527)
 * YOU ARE MY HERO! That worked perfectly! Thank you so much. You really are very
   awesome, and it was very kind of you to help me out! 🙂
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [How can I turn this into a Shortcode?](https://wordpress.org/support/topic/how-can-i-turn-this-into-a-shortcode/)
 *  Thread Starter [davidrivera](https://wordpress.org/support/users/davidrivera/)
 * (@davidrivera)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-can-i-turn-this-into-a-shortcode/#post-7179501)
 * Thank you much. You are the only one that has even attempted to help me. 🙂 When
   I implemented the above code, I get the following error:
    Warning: Illegal string
   offset ‘postid’
 * It’s so close. I can feel it! 🙂
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [How can I turn this into a Shortcode?](https://wordpress.org/support/topic/how-can-i-turn-this-into-a-shortcode/)
 *  Thread Starter [davidrivera](https://wordpress.org/support/users/davidrivera/)
 * (@davidrivera)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/how-can-i-turn-this-into-a-shortcode/#post-7179498)
 * Thank you catacaustic! I appreciate the reply and link. I have already looked
   at it, and know how to make a very basic shortcode. I just don’t know how I would
   re-write the above code because the embedded php tag keeps causing errors. I 
   know it’s probably something simple for an actual programmer or web developer.
   I just kinda got stuck with this project. 🙁
 * The last one I tried was putting this in my functions file:
 *     ```
       function prodpic_sc_handler() {
       $content = get_post_meta($post->ID,'productcms_wp_image_url_0', true);
       return $content;
       }
       add_shortcode( 'productmainpic', 'prodpic_sc_handler' );
       ```
   
 * Then I tried putting the shortcode inside an image link on my page. It didn’t
   work, and every other way I try gives me an error. Can you help me format it 
   properly? Or do you know how I can pull an image (that is not “featured”) from
   a custom post type?

Viewing 7 replies - 1 through 7 (of 7 total)