Discussion on Osum - Onepage HTML Theme

Discussion on Osum - Onepage HTML Theme

By
Cart 207 sales
Well Documented

honryou supports this item

Supported

28 comments found.

Hi,

We have purchased Osum one page HTML template, can you please let me know will this template comes with backend admin panel to edit the layout (ex: enable or disable “Testimonials” and change the images and content without involving developers)

I have tried to reach you for making auto slide on your osum theme but havent heard from you.

can you please tell me how to make osum slider as auto-run?

appreciate it.

Manthan manthan108@gmail.com

can you please guide me how to turn on the auto slideshow on the homepage? i am really getting confused in app.js, your documentation is not clear and doesnt say anything about this. please help !

Hello there,

I’m using your theme and it’s very useful. Thanks for your development skills :)

Now I have a problem about formatting data on your page builder. I wanted to split paragraphs in “Introduction Widget” but I couldn’t. I tried to use html script such as
but there was no effect on the output.

Is there any way to split paragraphs in this widget?

Hi,

I’m trying to figure out how I can change the layouts (wrap, tab…) of the articles in the “cover page”. For exemple, in the articles page (where you can see all articles) the first lines are set in sequence without taking care about the layout of the article. I’d like to change that, could you help me?

Thank you.

Hi There,

I can’t seem to get the send.php function to work

I edited ‘send.php’ with my email address and it is not working.

Please advise how to recieve emails

Thanks

Lauren

I only provide customer service for the code I write(which is the thing you’ve paid for), server configuration is not included in the item support, I can’t help you on that.

The server is working for PHP as I tried to send a request a few days ago and it went through – after I did that I must have changed something by accident so not sure why it is not working now. Can you please just take a look and see If I have the files in the right folders on the ftp?

Please send me your site url and admin username/password to honryou@gmail.com to let me take an investigation, and be sure to back up your whole site in case of data loss when debugging, also please append the original post to the mail for convenience.

Hi There,

I still cannot get the mail.php function to work

Can you please give me a step by step guide on how to make it work?

Thanks

Lauren

Please contact server administrator on whether they’ve set up mail() function for sending email for PHP environment.

Dear Honryou, I have bought Osum HTML Template, it works great however i have below issue.

1. auto slider doesn’t working on 15second delay, your reply was here to change on javascript/app.js in line 477 to autodelay : 15000, i did but autoslider not working.

2. for contact us form i have added my email address in below. $to = “manthan108@gmail.com”;

but doesnt getting any form submission.

please let me know resolution.

thank you, Manthan manthan108@gmail.com

Hi,

1. It is “autoPlayDelay: 15000” not “autodelay : 15000”.

2. Please checkout if the PHP mail() function works fine on your server.

Hi There

Can you please assist me with setting up the send.php form?

I have filled it all in but it doesnt seem to send the email

Thanks,

Lauren

Hi, please checkout if the PHP mail() function works fine on your server.

Great theme, i would like to ask if its possible to auto slide homepage by 15sec? also contact form isn’t working on your demo URL? please advice.

i have already tried the same autoPlay: true, & autoPlayDelay: 3000, but it doesnt work even in your demo, please double check and reply asap,

contact us form is not working with downloaded files.

Hi,

1. Sorry, please ignore all the changes in the file app.js, just add data-timeout=’15000’ on line 109 in the file index.html.

2. About the contact form, please checkout if the PHP mail() function works fine on your server.

when i implement this it change the slide to only once.

Hello. I’m working with this template and I hava a question. I need to increase the time in the text slider of the section testimonials, buti I can’t find in which part make the change. Could you help whit this please.

Hi, please edit file javascripts/app.js, around line 939, change “speed: 1500”

Hi, please edit file javascripts/app.js, around line 939, change “speed: 1500”

Hello! I wan’t to use the fancybox Lightbox. It works with jquery. But when the libs.js is loaded, it dosn’t work. Can i include i clean jquery libary, or is there a way to use fancybox with the libs.js Script?

Thank You!

Jürgen

Hi,

Your question is out of the scope of item support, for item support policy, please visit envato website at http://themeforest.net/page/item_support_policy.

The libs.js includes “modernizr.foundation.js”, “jquery-2.1.0”, ‘terrific-1.1.1.js’, ‘jquery.url.js’, ‘jquery.cookie.js’, ‘json2.js’, ‘foundation.js’. I think you should delete the jquery files in libs.js and use your own jquery files.

Hi! Is a lightbox included to highlight picture after click on them?

Hi, sorry, the theme doesn’t have this feature, you should customise it yourself.

Honryou,

Great template, I’m really enjoying it. Is there a way to attach the easing scrollto behavior to other links? In digging through the code, it looks like the smooth scrolling is limited to the top navigation buttons. I’d like to use the button in the main slideshow as a call to action to one of the sections lower down on the page, and have it scroll smoothly just like clicking one of the main navigation buttons.

Thanks in advance.

Hi, your question is out of the scope of item support. But if you know code, you can customize it yourself, refer to file javascripts/app.js, around line 134, and file html/index.html, the navigation section.

Hi Honryou,

I purchased this theme a couple of days ago and I realise now that the theme I downloaded behaves differently than the online preview on themeforest.

The navigation bar on top does not stay fixed when I scroll the page. This is not the behavior in the preview.

Moreover, I have to add: “gems: [jekyll-paginate]” to the _config.yml file to make it work. It’s better to have it included already.

Regards,

Hi Honryou,

Disregard my previous comment. The navigation bar seems to be fixed now. I can’t explain why it was not working. I may have changed something without realising.

Hi, It is a nice theme, I am not having any luck getting the slider autoplay to go to the next slide automatically, there are options I found in the app.js but they dont have any effect. Help! :)

OK, I got it to advance by one slide, but cannot get it to go through all the slides automatically.

Please replace the FullscreenSlider module code in app.js with the following code

(function($) {
  Tc.Module.FullscreenSlider = Tc.Module.extend({
    init: function($ctx, sandbox, modId) {
      this._super($ctx, sandbox, modId);
    },
    dependencies: function() {
      // this.require('jquery.ui.core.js', 'plugin', 'onBinding');
    },
    onBinding: function() {
      var $ctx = this.$ctx;

      var fullscreen_slide = function() {
        $('.fullscreen_slideshow', $ctx).width($(window).width());
        if( $ctx.hasClass('force')) {
          $('.fullscreen_slideshow', $ctx).height($(window).height());
        } else {
          $('.fullscreen_slideshow', $ctx).height($(window).height() - $('.top-bar').height());
        }
      }

      fullscreen_slide();

      $(window).on('resize', fullscreen_slide);

      var options = {
        nextButton: true,
        prevButton: true,
        autoPlay: false,
        autoStop: false,
        autoPlayDelay: 3000,
        pauseButton: true,
        cycle: true,
        // preloader: true,
        animateStartingFrameIn: true,
        pagination: true,
        reverseAnimationsWhenNavigatingBackwards: true,
        preventDelayWhenReversingAnimations: true,
        fadeFrameWhenSkipped: false,
        swipeEvents: {
          left: "next",
          right: "prev" 
        },
        pauseOnHover: false
      }

      var autostop = jQuery('.fullscreen_slideshow', $ctx).data('autostop') == 'on' ? true : false;
      var timeout = jQuery('.fullscreen_slideshow', $ctx).data('timeout');

      // if ( timeout == '0' || !timeout ) {
      //   options.autoPlay = false;
      // } else {
      //   options.autoPlay = true;
      //   options.autoPlayDelay = parseInt(timeout);
      // }

      // if ( autostop ) {
      //   options.autoStop = true;
      // } else {
      //   options.autoStop = false;
      // }

      var fullscreen = jQuery(".fullscreen_slideshow", $ctx).sequence(options).data("sequence");

      fullscreen.beforeCurrentFrameAnimatesOut = function() {
        var sequence = this;

        var removeStatic = function() {
          jQuery(".frame.static").removeClass('static');
          if ( sequence.settings.autoPlay ) {
            sequence.startAutoPlay(sequence.settings.autoPlayDelay);
            // window.fullSequenceAutoStarted = true;
          }
        }
        setTimeout(removeStatic, 1000);
        // when the next frame is the last one
        if ( sequence.nextFrameID == sequence.frames.length && options.autoStop ) {
          sequence.stopAutoPlay();
        }
      }

    }
  })
})(Tc.$);

The theme will not install. Stating “failed, due to no styles.css file” however I do see it in the folder. Any ideas?

The item you’ve purchased is an HTML template, it can’t be installed into WordPress.

Hi, does this theme come with a working contact form?

Can someone please tell me if this theme comes with a working contact us form? thank you

Yes, the theme has a working contact form.

Hello I have uploaded the EVANTO Wordpress PLUGIN to help me out, but after inserting the API key, I just see one of my purchases. I need to see the OSUM so I can upload the theme. Please help me out

The item you purchased is an HTML template, not a WordPress theme.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey