I have purchased the theme, and now i want to replace the image with embeded video, i read above that it will be supported, is it supported now ? how can i do it ?
Hi,
We can help you out at http://help.gothemeteam.com
See you there!
Best regards, GoThemeTeam
Hi, I have tried to translate the Content Area of the HomePage of this theme , I was able to do it. /* <?php the_content();?> */ This code calls a function that write the content area on the web page, but I can“t use the language_icl function of php because the text that is into the content is on Wordpress, not into the php file.
In conclusion I need some help please.
Respectfully
Joaquin
Hi,
We can help you out at http://help.gothemeteam.com
See you there!
Best regards, GoThemeTeam
To resolve the issue of not being able to hyperlink the featured images.
1.Locate the file Saas.php (wp-content/themes/SaaS-I/library/Saas.php) 2. Locate the following piece of code:
/*
* Processes the [saas-featured-image] shortcode
*
* @param array $attr
* @return void
*/
public function shortcodeFeaturedImage($atts)
{
$defaults = array
(
'title' => null,
'image' => null
);
3. Replace with the following piece of code: 4. Save that and reload in your FTP .
/*
* Processes the [saas-featured-image] shortcode
*
* @param array $attr
* @return void
/
public function shortcodeFeaturedImage($atts)
{
$defaults = array
(
'title' => null,
'url' => null,
'image' => null
);
- YOU AREN ’T DONE YET **
5. Locate the file shortcode-home.phtml (/wp-content/themes/SaaS-I/views/shortcode-home.phtml)
6. Open the file and locate the following code:
<?php echo do_shortcode($this->featuredImages) ?> <?php if (is_array($this->featuredImages)): ?> <?php $index = 1; foreach ($this->featuredImages as $feature): ?>-
<?php $index = 1; foreach ($this->featuredImages as $feature): ?>
- <?php echo esc_attr($feature[‘title’]) ?> <?php ++$index; endforeach ?>
7. Replace with this code:
<?php echo do_shortcode($this->featuredImages) ?> <?php if (is_array($this->featuredImages)): ?> <?php $index = 1; foreach ($this->featuredImages as $feature): ?> <?php ++$index; endforeach ?>-
<?php $index = 1; foreach ($this->featuredImages as $feature): ?>
- <?php echo esc_attr($feature[‘title’]) ?> <?php ++$index; endforeach ?>
8. Upload that back into the same place you found it.
9. Then go back to SaaS I Theme Homepage Options in Word Press admin and add the following into your per-existing featured image shortcode:
url=”http://www.nourl.com”
Example: [saas-featured-image title=”Dashboard” url=”http://www.nourl.com” image=”http://www.nourl.com/wp-content/themes/SaaS-I/images/screenshot.png”]
10. Save the new settings and you are done!


412 Purchases
83 Comments