Eric Wargo
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Mitcho,
I am using
related_posts();in my code but wanted to know how to make a conditional tag to know if there are no related posts?if(?????? != ""): related_posts(); endif;Thanks for the great plugin.
Forum: Plugins
In reply to: [Multiple Featured Images] Remove Image Width and Height Attributesvikkineal, here is what you need
<?php // if plugin exists if(class_exists('kdMultipleFeaturedImages')): // insert entire image kd_mfi_the_featured_image('featured-image-2', 'post'); endif; ?>or alternatively you can call just the image like you wanted
<?php // if plugin exists if(class_exists('kdMultipleFeaturedImages')): // insert entire image ?> <img src="<?php echo kd_mfi_get_featured_image_url( 'featured-image-2', 'post', 'full' ); ?>" /> <?php endif; ?>Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Settings Page comes up blankI am having the same issues where when I click Forms->Salesforce the entire screen is blank. I don’t know of any error logs to pull from so I can’t post those but I can assume it is the same thing as you posted heavymark.
I tried looking into phpinfo(); but I wasn’t sure what I was looking for so I tried this but it echoed false.
if (extension_loaded('soap')) { echo "soapy"; }else{ echo "not soapy"; } phpinfo();Is there any way around installing soap since that seems like such a process?
Using PHP 5.3.5
Viewing 3 replies - 1 through 3 (of 3 total)