davidrivera
Forum Replies Created
-
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Can’t grant google permissionGoogle 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
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
In reply to: [Simple Job Board] WP Editor File Not Found error with v2.4.3Hello,
I am experiencing the same issue. Can someone please tell me how to resolve this?
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
In reply to: How can I turn this into a Shortcode?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
In reply to: How can I turn this into a Shortcode?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
In reply to: How can I turn this into a Shortcode?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?