Tom
Forum Replies Created
-
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] How to format text inside tabs?@ovidiu
You can always use custom CSS styling but I can see you are using another plugin for tabs now.Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Hide post excerpt?The best way is to hide them by adding custom code to your style.css
.su-post-meta { display: none; }.su-post-excerpt { display: none; }a.su-post-comments-link { display: none; }Unfortunately it looks like there is no way to assign custom class to this shortcode so adding above code affects all your site.
It works!
Thank you very much eventualo.
My functions.php only contains the code you supplied so line 6 is
</script> <?php }I tried to debug it and even when I reduce first 6 lines of code to
function my_easymail_check_lists() { ?> <?php }it still returns an error
Parse error: syntax error, unexpected '}' in /home/xxx/wp-content/themes/child/functions.php on line 1it should be legitimate empty function shouldn’t it?
Thank you eventualo for your solution but it doesn’t work for me. Maybe I did sth wrong?
I created functions.php in my child-theme directory and put your code inside.
As a result I received and error message:
Parse error: syntax error, unexpected '}' in /home/teedee/domains/wpoznaniu.cf/public_html/domdzwieku/wp-content/themes/megalith-child/functions.php on line 6How to fix it?
Forum: Themes and Templates
In reply to: [Customizr] Responsive slider does not fit images into widthSure 🙂
Forum: Themes and Templates
In reply to: [Customizr] Responsive slider does not fit images into width@d4z_c0nf
Thanks a lot!
I would never imagine, that to change slider behavior, I have to change image settings!
It works the way I wanted!Forum: Themes and Templates
In reply to: [Customizr] Responsive slider does not fit images into width@mrtom414
Thank you, but to what class should I apply it?Sounds interesting 🙂
I understand, but still, will it be possible to choose from a number of available accounts while using this newsletter, without any modification? Or do you want to serve emails on-the-fly, on the base of their sender’s addresses?
wow!!! I’m little bit lost Postman SMTP..
First I thought I wrote on the wrong forum 🙂 because I use your plugin to send emails via SMTP
I don’t think what I need is solvable by Postman SMTP Mailer. I need to set one account there to bypass WP phpmailer. I cannot use it with different sender email because my provider requires authentication. This is what you explain under your link.
What I need here is to be able to use another SMTP mail account for newsletter only. Can you provide such functionality with your plugin?
What about this idea? Is it still alive?
I have another issue, not only different email address I wanted to dedicate to newsletters.
I am on shared hosting and recently Google reports my hosting company as sending spam so most of my newsletters end up as spam for this simple reason.
It is because when using phpmailer you send as your original hosting server domain, not as the one you have WP installed on.
Unfortunately, when using 3rd party SMTP plugin, I cannot send emails with different addresses so I am forced to use one address for all WP site.
Waiting forward to have separate SMTP option embedded into this great plugin.
Forum: Plugins
In reply to: [Aeolus - Creative Portfolio] Featured Image has line on it.Have a look at my solution. It works for me 🙂 link
Forum: Plugins
In reply to: [Aeolus - Creative Portfolio] Residual 1px line in the middle of thumbnailI was able to remove this line with the help of two modifications.
First, adding to CSS
.rx_hoverui { height: 0px; }and modifying aeolus_portfolio.js line 313 from
TweenMax.to(jQuery(this).find('.rx_hoverui'), .2, {css:{'height':1}, ease:Power4.EaseIn});to
TweenMax.to(jQuery(this).find('.rx_hoverui'), .2, {css:{'height':0}, ease:Power4.EaseIn});I am still not sure it is good enough so please confirm or correct me.
Forum: Plugins
In reply to: [Aeolus - Creative Portfolio] Menu conflict with Customizr themeI’ve pinned it out.
The problem is with duplicating “collapse” class in both theme and plugin.
You can fix it using CSS by narrowing selectors like.nav-collapse.collapse { display: block; }With this you have nav menu back.