manOmedia
Forum Replies Created
-
Forum: Plugins
In reply to: [File Away] Figuring out PDF thumbnailsAdding base 2 to your shortcode would only be relevant if you had multiple “Base Directory” configurations (set on the FileAway Basic Config page). Without a specific entry, any shortcode defaults to the first base directory where you obviously have some PDFs.
My immediate thought was something with that theme, another plugin or Page Builder but if you look at your pdf files with a ftp application. My guess is the permissions are set to 0644 instead of 0755.
You can probably just delete the current pdfs and upload some new ones and it will all work.Forum: Plugins
In reply to: [File Away] Figuring out PDF thumbnailsYes, Fileaway makes jpg thumbnails automatically and your short code worked fine for me however I did need to point the shortcode to one of my directories which had pdfs, in this case base=2.
I used:
[fileaway type=”table” base=”2″ makedir=”true” boxtheme=”yang” theme=”minimalist” fadein=”opacity” fadetime=”500″ bulkdownload=”on” flightbox=”pdfs” manager=”on” thumbnails=”permanent” thumbsize=”large”]To show larger thumbnails I imagine you would need to figure out where in the theme the display size is set and also replace the Fileaway generated thumbnails with your own larger ones.
AFIK the lists do not support thumbnails but I have done nothing with them.
Hi sunclouddesign,
Not sure if you ever got this solved but if not, this may help.
I have been using a modified version of a hack originally given to me by Cristián which suddenly was no longer working. I had to do some searching and refresh myself as to what I had done and in the process I came across your post. As a side comment, “suddenly” is relative as I have not been keeping up with plugin and wordpress updates.
Anyway, this works for me on two different sites though I did just make a change so I have two functions; one is handling membership upgrades and PayPal while the one below only deals with new registrations:This simply puts today’s date into the EOT for a new registration:
<?php add_action ('ws_plugin__s2member_during_configure_user_registration', 's2_set_default_eot_time'); function s2_set_default_eot_time($vars = array()) { if (!is_admin() && $vars['processed'] === 'yes') { update_user_option($vars['user_id'], 's2member_auto_eot_time', strtotime(date('Y-m-d'))); } } ?>================================================
Hope this helps or that you already came up with a solution.
DP
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Change font size in form??Actually, it was quite some time ago and for a while I couldn’t remember why I wanted it but I now believe it is because on one of my sites I am using a mail form in a widget in a side-bar which by necessity makes the form quite small.
Anyway, I will squirrel away that info for future use as I suspect it will come up again 🙂
Thanks Zab
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Change font size in form??Hi mrmcq…
If I understand correctly, you are adjusting the size of the font inside the text box and doing so from within the Contact 7 form editor, yes?
For us idiots, how exactly did you put that line in.For example, this is one of the fields from a mail form:
<p>Your Message
[textarea your-message 30×5] </p>It is a fairly small text box, hence my desire for a smaller font but no matter how I try, the text box font size does not change.
Thanks, DP