Hello @sleddogslow,
The piece of code to edit is: $new_file_name = md5($file).'.'.$ext; and it is located into the file: “/wp-content/plugins/sell-downloads/sd-core/sd-functions.php”
Best regards.
Thank you! I’ll try that! I have one other question, is there a way to get the Buy Now button to not be stretched out like it is on this page: http://www.sleddogslow.com/sd_product/wood-stove-cooking/
Thanks for your help!
Hello @sleddogslow,
The issue is caused by the style definition:
input,
textarea {
transition: all 0.18s;
display: inline-block;
font-size: inherit;
letter-spacing: 2px;
width: 100%;
max-width: 100%;
height: 36px;
padding: 8px 12px 6px 15px;
line-height: normal;
background-color: #ebebeb;
background-image: none;
border: none;
}
into the “http://www.sleddogslow.com/wp-content/themes/olsen/style.css” file of the theme active in your WordPress.
Specifically by the css rule: width: 100%;
A possible solution:
Open the “http://www.sleddogslow.com/wp-content/plugins/sell-downloads/sd-styles/sd-public.css” file with the text editor of your choice, and paste the following style definition at the end of the file’s content:
.sell-downloads-product input[ type=image ]{width:auto !important;}
Finally, clear the browser’s cache after edit the online files.
Best regards.
That worked perfectly! Thank you so much! Leaving a 5 star review now 🙂