Is it possible to grey out publish button until video is uploaded?

Discussion in 'VideoCraft WordPress Theme' started by boorian, Oct 10, 2014.

  1. boorian

    boorian Member

    Joined:
    Oct 9, 2014
    Messages:
    35
    Likes Received:
    1
    Is it possible to grey out the publish button until the video is completely uploaded to prevent users clicking submit when the green bar is 100% across but the video upload is not complete yet?

    Also, is it possible to change the text of the 'publish' button to 'submit'?
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Which button's text do you want to change provide us screenshot of that button.

    Thanks & Regards
    Yogesh Bhade
     
  3. boorian

    boorian Member

    Joined:
    Oct 9, 2014
    Messages:
    35
    Likes Received:
    1
    Hi,

    Here is a screenshot:
    [​IMG]

    Thanks
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    You can change that button text as shown below in screenshot.

    10oct2.png

    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  5. boorian

    boorian Member

    Joined:
    Oct 9, 2014
    Messages:
    35
    Likes Received:
    1

    Thankyou. Is it also possible to grey out the submit button until the video is completely uploaded to prevent users prematurely clicking submit before the video has finished uploading?
     
  6. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.

    If this isn't something you're able to do then you would need to hire a freelancer.

    Thanks & Regards
    Yogesh Bhade
     
  7. boorian

    boorian Member

    Joined:
    Oct 9, 2014
    Messages:
    35
    Likes Received:
    1
    If it's not possible to grey the button out, is it possible to add some text above the publish button which says:
    "Please click publish button when 'upload complete' message is received."
     
  8. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    1. Write following code in inkthemes-functions.php file as shown below in screenshot.
    Code:
    <p class='note'>Please click publish button when 'upload complete' message is received.</p>
    13oct5.png

    2. Then paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    p.note {
    color: green;
    margin-bottom: 0;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  9. boorian

    boorian Member

    Joined:
    Oct 9, 2014
    Messages:
    35
    Likes Received:
    1

    Thanks, is it possible to get the "Please click publish button when 'upload complete' message is received." message just below the "Server upload size limit is 20 GB" message?
    [​IMG]
     
  10. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Edit in inkthemes-functions.php file as shown below in screenshot.

    16oct1.png

    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  11. boorian

    boorian Member

    Joined:
    Oct 9, 2014
    Messages:
    35
    Likes Received:
    1

    Is it possible to make this message "Please click publish button when 'upload complete' message is received." a static message just like "Server Upload Size Limit is 20GB" and just underneath the message "Server Upload Size Limit is 20GB"
     
  12. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    1. Write your message in inkthemes-functions.php file as shown below in screenshot.

    16oct2.png

    2. Then paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    p.note {
    color: #3d638d;
    margin: 0;
    float: right;
    margin-top: -30px;
    margin-right: 21px;
    font-size: 14px;
    }
    3. Your message will look like as shown below in screenshot.

    16oct3.png

    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page