Ferry
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Error when trying to add imagesHi
Tried it on another machine and it worked ok. Might be down to a cached file somewhere.
Thanks.
Ferry
Forum: Plugins
In reply to: [Image Photo Gallery Final Tiles Grid] Galleries cannot be deletedHi
The plugin was a clean install – no migration – as was doing testing on my local machine. Not on a server as yet.
Forum: Plugins
In reply to: [Maintenance Switch] Error when installing the plugin v.1.3.0An upgrade was issued to 1.3.1, which seems to have resolved the issue. Will close the ticket. Thanks
Forum: Plugins
In reply to: [Maintenance Switch] Error when installing the plugin v.1.3.0Hello,
Thanks for the update. I am currently using it locally with WAMP server 2.5, containing PHP: 5.5.12 (for offline dev purposes), so that can’t be the issue.
Regards
Forum: Plugins
In reply to: [Contact Form 7] Change "required" to asterisk?The word (Required) is just written text. It is possible to type the asterisk manually. However, you can style this also. For instance using CSS:
.required:after{ content:'*'; color:#f00; }or SASS:
.required { &:after{ content:'*'; color:#f00; } }For the guidance, you can for instance put the following in the Contact Form editor:
<p>Please note that fields with an asterisk (<label class="required"></label>) are required fields.</p>And to use it in the form itself, you could use for instance:
<label class="required">Your Name</label>for required field labels and<label class="anything_but_required">Your Name</label>for the optional fields.This makes it consistent throughout.