Options

Customizing site for video only

jayman30usajayman30usa Registered Users Posts: 4 Beginner grinner
edited August 1, 2023 in SmugMug Customization
Hi, Sorry if this is a noob question. I am new to smugmug and am only selling short video clips, not photos.

How to I edit the text on the gallery pages that say "Buy This Photo", "Buy Multiple Photos", and the button with the shopping cart icon that says "Buy Photos" to "Buy Video(s)"?

Site is https://jayhill.smugmug.com/

Thanks for the help!

Comments

  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited August 2, 2023

    I use this for many buttons on my site for changing to a different text.
    Example of a couple of buttons. I mainly change from symbols back to text.

    .sm-button.sm-button-image-comment:after {
     content:" Comment";
     z-index:99!important;
     margin-left:8px
    }
    .sm-button.sm-button-image-info:after {
     content:" Photo Info";
     z-index:99!important
    }
    .sm-button.sm-button-image-like:after {
     content:" Like";
     z-index:99!important
    }
    .sm-button.sm-button-image-map:after {
     content:" Map This";
     z-index:99!important
    }
    .sm-button.sm-button-image-share:after {
     content:" Share";
     z-index:99!important;
     margin-left:8px
    }
    .sm-button.sm-button-image-download:after {
     content:" Download"!important;
     z-index:99!important;
     margin-left:8px
    }
    .sm-button.sm-button-image-info:after {
     content:"Info/Map"!important;
     margin-left:8px;
     display:inline-block
    }
    
    
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    jayman30usajayman30usa Registered Users Posts: 4 Beginner grinner
    Hi, thanks for the response. When I try adding the code you provided I am unable to save it. When I click "done" after entering the code in the custom css field nothing happens and the only way to exit the Theme editor is to click cancel. Is this maybe because I am in the free trial period?

    Thanks for helping!
  • Options
    jayman30usajayman30usa Registered Users Posts: 4 Beginner grinner
    correction, i cannon enter any code, or even a commented out line, and get it to save.
  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited August 2, 2023

    I got this to show on my site. But could NOT get it to remove the current text.
    Where

    .sm-gallery-cover-buy-button .sm-button-label:after {
     content:" Buy Video(s)";
     z-index:99!important;
    }
    
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    jayman30usajayman30usa Registered Users Posts: 4 Beginner grinner
    I'll give that a try - thanks so much!
  • Options
    Hikin' MikeHikin' Mike Registered Users Posts: 5,455 Major grins
    edited August 2, 2023

    Try this instead:

    .sm-user-ui .sm-gallery-cover-buy-button .sm-button-label {
      display: none;
    }
    
    .sm-user-ui .sm-gallery-cover-buy-button:after {
      content:" Buy Video(s)" !important;
    }
    
Sign In or Register to comment.