dlnkprs
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Password strengthThe strenght meter should not be lowered… it should not give me ‘Strong’ when my pass is the same as my e-mail. I think WC in its base install should not give me ‘Strong’. No plugin needed.
Forum: Plugins
In reply to: [WooCommerce] Password lengthYou should not bring it up as an requirement when it’s not. Might want to update your requirement text, since 12 characters is not required. I know there’s plugins or snippets but the base install should be accurate
Forum: Plugins
In reply to: [Maintenance] Your white is not whiteThat will probably work, but my use case is pretty standard so was hoping for a fix in your code. Or am I the only that has this issue? π
Forum: Plugins
In reply to: [Maintenance] Your white is not whiteI copied this css from your plugin, I did not write any code.
Just changed background color to white but it is not white due to that code I think.Hi,
Im using the Meetup theme from Crunchpress. It has its own page builder with integrated event schedule option. I assume they use a php file to display it. They asked me to contact the plugin author since they use it to display it.
Forum: Themes and Templates
In reply to: [Minamaze] Changing theme colors in CSSYou’re welcome!
I noticed a dot before a.more-link which doesn’t belong there (can’t edit my previous post so here is the code without the dot):
a.more-link .themebutton { background: #232D84; } a.more-link .themebutton:hover { background: #3F4AA8; }Forum: Themes and Templates
In reply to: [Minamaze] Changing theme colors in CSSHi,
The best way to achieve a different background color for the ‘read more’ buttons is to add custom CSS. I’ve read that you’ve already tried that but it didn’t work out well. That’s because your custom CSS does not target the ‘read more’ buttons but all the text links in your content.
To achieve a blue background on the buttons, place this code in the custom CSS field under Theme Options:
.themebutton, button, html input[type=\"button\"], input[type=\"reset\"], input[type=\"submit\"] { background: #232D84; } .themebutton:hover, button:hover, html input[type=\"button\"]:hover, input[type=\"reset\"]:hover, input[type=\"submit\"]:hover { background: #3F4AA8; }Notice this changes all buttons used in the theme. If you only want to target the ‘read more’ buttons you can use this code instead:
a.more-link .themebutton { background: #232D84; } .a.more-link .themebutton:hover { background: #3F4AA8; }Good luck with your site!
Greetings,
DylanForum: Plugins
In reply to: [Contact Form 7] Filled-in and sent email with wrong server addressI was typing more detail, when I suddenly found the solution.
At the Mail section, after the ‘From’ input, there only stood ‘[your-name]’. Now I have added ‘<[your-email]>’ and the email problem is solved.One question left: I’ve sent a test message with a Gmail email address. When I open that mail Google says the following error message: https://support.google.com/mail/troubleshooter/2411000?p=sent_warning&rd=1
How to fix THAT problem?
Forum: Plugins
In reply to: [Contact Form 7] Filled-in and sent email with wrong server addressCode from section:
<div class="content one_half diensten-contact"> <p>Uw naam (verplicht)<br /> [text* your-name] </p> </div> <div class="content one_half last diensten-contact"> <p>Uw email (verplicht)<br /> [email* your-email] </p> </div> <div class="content one_half diensten-contact"> <p>Onderwerp<br /> [text your-subject] </p> </div> <div class="content one_half last diensten-contact"> <p>Telefoonnummer<br /> [text your-phone] </p> </div> <div class="content contact"> <p>Uw bericht<br /> [textarea your-message] </p> <p>[submit "Verzenden"]</p> </div>Link: http://www.wouterkleinsman.nl/diensten/social-strategy
Image: http://bit.ly/OXHIIe
Image #2: http://bit.ly/RfpjfTCode on settings plugin: (events page)
(header): <div class=”content-right”>
<div id=”secondary” class=”widget-area target tours” role=”complementary”>
<h1 class=”widget-title”>Upcoming events</h1>
<div class=”su-divider title”></div>(content): #_EVENTIMAGE{100,100} #_EVENTDATES #_EVENTTIMES – #_EVENTLINK
#_EVENTEXCERPT
<div class=”su-divider”></div>(footer): </div>
</div>Code on settings plugin: (single event)
<div class=”content-left”>
#_EVENTIMAGE
#_EVENTNOTES
</div>
<div class=”content-right”>
<div id=”secondary” class=”widget-area target tours” role=”complementary”>
<h1 class=”widget-title”>Upcoming events</h1>
<div class=”su-divider title”></div>
#_EVENTIMAGE{100,100}
#_CATEGORYALLEVENTS
</div>
</div>