ThemeForest

Freemium SaaS Wordpress CMS + Blog Theme I

  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
mohabed says
Purchased

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 ?

3 months ago
Author
goThemeTeam goThemeTeam replied

Hi,

We can help you out at http://help.gothemeteam.com

See you there!

Best regards, GoThemeTeam

3 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
joaquinp says
Purchased

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

22 days ago
Author
goThemeTeam goThemeTeam replied

Hi,

We can help you out at http://help.gothemeteam.com

See you there!

Best regards, GoThemeTeam

22 days ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
joseph_a_garcia says

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 echo esc_attr($feature['title']) ?>

<?php ++$index; endforeach ?>
    <?php $index = 1; foreach ($this->featuredImages as $feature): ?>
  • <?php echo esc_attr($feature[‘title’]) ?>
  • <?php ++$index; endforeach ?>
<?php endif ?>

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 echo esc_attr($feature['title']) ?>

<?php ++$index; endforeach ?>
    <?php $index = 1; foreach ($this->featuredImages as $feature): ?>
  • <?php echo esc_attr($feature[‘title’]) ?>
  • <?php ++$index; endforeach ?>
<?php endif ?>

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!

17 days ago
Author
goThemeTeam goThemeTeam replied

Thanks for sharing!

Best regards, GoThemeTeam

17 days ago
by
by
by
by
by