altimac
Forum Replies Created
-
Forum: Plugins
In reply to: [MaxGalleria] Proportional thumbnails?Hey, Alan, just FYI, I noticed that “maxgalleria-hooks.php” has a bunch of typos for the PORTRAIT thumbnail filters, they are in there as
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_ONE_COLUMN’, ‘maxgalleria_thumb_size_portait_one_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_TWO_COLUMN’, ‘maxgalleria_thumb_size_portait_two_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_THREE_COLUMN’, ‘maxgalleria_thumb_size_portait_three_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_FOUR_COLUMN’, ‘maxgalleria_thumb_size_portait_four_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_FIVE_COLUMN’, ‘maxgalleria_thumb_size_portait_five_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_SIX_COLUMN’, ‘maxgalleria_thumb_size_portait_six_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_SEVEN_COLUMN’, ‘maxgalleria_thumb_size_portait_seven_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_EIGHT_COLUMN’, ‘maxgalleria_thumb_size_portait_eight_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_NINE_COLUMN’, ‘maxgalleria_thumb_size_portait_nine_column’);
define(‘MAXGALLERIA_FILTER_THUMB_SIZE_PORTRAIT_TEN_COLUMN’, ‘maxgalleria_thumb_size_portait_ten_column’);So the “thumb_size_portait” should be “thumb_size_portrait” I assume…
Forum: Plugins
In reply to: [MaxGalleria] Proportional thumbnails?This is great, Alan. Thank you so much for your help with this and I will give that a shot. Again, thanks!
Forum: Plugins
In reply to: [MaxGalleria] Proportional thumbnails?Hi, Alan and thanks fro your response. What I am trying to achieve is to have the gallery display the images with their width and height intact and all set to the same width, so that nothing is “chopped off” from the left and right of the images. That would mean that the thumbnails are all shown at the same width but at varying heights, which would be fine if that is possible. Here is an example on my site, I have five columns but would like to not have the left and right edges of the images sliced off:
https://erbachcom.com/wordpress/#our-work
Images #2 and #3 have their left and right edges sliced off, whereas image #10 has the bottom of the image sliced off. Again not sure if there is a way around this but just figured I would inquire.
Forum: Plugins
In reply to: [AdRotater Email Ad Reports] Anyone still developing/supporting this plugin?Oh, sorry, I thought since there had been no activity for so long it was not being developed. My bad. My question was, it would be great to have the actual ad appear in the email, perhaps in the table area where it shows the clicks and impressions. Many of our advertisers have different ads in different online publications so it would be very helpful to show them their actual ad as confirmation of what they are paying for. Thanks and this is a really great plugin that should already be a feature in AdRotate Pro, so it’s great that you folks put this together!
Ah, sorry I misinterpreted that and thanks for the clarification. But the more I read on this the more it seems that it’s not possible to do given that if the site’s homepage is served via SSL, then the entire site HAS to be served the same way as far as the browser is concerned? This is my .htaccess file now:
# Enable Strict Transport Security
Header set Strict-Transport-Security “max-age=31536000” env=HTTPS# BEGIN rlrssslReallySimpleSSL rsssl_version[2.5.11]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTP_HOST} ^sng.news [OR]
RewriteCond %{HTTP_HOST} ^www.sng.news
RewriteCond %{REQUEST_URI} !/feed/SNG-Top-Alexa
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressAddHandler application/x-httpd-php70 .php .php5 .php4 .php3
and it still refuses to serve the non-SSL version of /feed/SNG-Top-Alexa. I am getting the feeling I am going to have to either upgrade my SSL cert, or complain to Amazon about this ;-(
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] New credit card fieldsThanks, Josh. I did not realize there were docs already on those fields, so my bad. That answers my questions completely, other than when I try to use those fields, I consistently have issues being able to submit the form, even with a demo form that I did not create. The summit button does not respond, not even to highlight required fields that are not filled out. There is typically an error when I inspect the page along the lines of “h.payment is not a function,” although I am not sure if that is the issue or not. When I remove the e-commmerce fields and revert to single line text fields, no errors occur in the inspector and I am able to submit the form successfully.