Anastis Sourgoutsidis
Forum Replies Created
-
Forum: Hacks
In reply to: Repurpose Comment Email FieldIf your theme utilizes the html5 comment form, then the input markup is like
<input name="email" type="email" ... />
This instructs the browser to only accept a valid email address.There is a filter
comment_form_field_{$name}
firing for each comment form field, so we can manipulate that markup before outputting it. Adding this into your functions.php will change type=”email” to type=”text” :add_filter('comment_form_field_email', 'my_edit_comment_form_fields'); function my_edit_comment_form_fields( $field ) { return str_replace('type="email"', 'type="text"', $field); }
Forum: Themes and Templates
In reply to: Colour changingHi there,
this is Anastis from CSSIgniter.You can select a different color scheme from Theme Options -> Appearance Options. You can edit/create your own by modifying/creating a .css file inside the theme’s /colors folder.
However, these forums are not the appropriate place to ask questions about premium themes (such as Chords), and therefore you’ll need to direct all future questions to its dedicated page: https://themeforest.net/item/chords-music-artist-radio-wordpress-theme/8980824/support
Forum: Plugins
In reply to: [Widget Importer & Exporter] Problem with array of arraysHi Steven,
thanks for your reply.I’ll investigate more and will let you know in github.
Forum: Plugins
In reply to: [Socials Ignited] Suggestion: use ver= instead of v=Hi there.
I’m not sure what you are talking about…
The plugin doesn’t use any ‘v’ or ‘ver’ query parameters whatsoever.Forum: Plugins
In reply to: [Socials Ignited] Update of widget.php needed for width and heightWhooops, he was faster than me!
Forum: Plugins
In reply to: [Socials Ignited] Update of widget.php needed for width and heightI’m not sure if what you are trying to achieve is even possible.
I’ve just notified my CSS ninja colleague to take a look at your issue too, so it would be best if you could upload the screenshot into a public image hosting site, such as https://imgur.com so that we can all see the problem at hand (don’t forget to provide a link to the image), and being public will also double as a reference to anyone having the same issue as you.Forum: Plugins
In reply to: [Socials Ignited] Update of widget.php needed for width and heightI can really reproduce your issue, or perhaps, I just can’t see the problem.
Are you using the latest plugin version? The widget includes a “Icon Color” option, which is really the foreground color (i.e. the ‘color:’ css property) of the icons.
Setting that to anything you want, and having a clear background, should give good results.As I said before, a screenshot would be really helpful.
Forum: Plugins
In reply to: [Polylang] get_permalink() problemThank you very much for your response.
Big fan of your plugin, by the way.Perhaps you’d want to document this behavior, or even better, filter these native functions, just like like you mentioned in that thread ??
Since I’m a theme-builder, I’m trying to create a wrapper around a couple of translation plugins, so I’ll try to filter these functions myself anyway. Let me know if you’re open to collaboration, and if yes, I’ll try to pitch in some code.
Regards,
AnastisForum: Plugins
In reply to: [Socials Ignited] Update of widget.php needed for width and heightA URL or a few screenshots would really help me see what the exact problem is. Is this possible?
The image icons aren’t going away anytime soon. They will eventually, but not soon. We just won’t be updating them anymore.
Forum: Reviews
In reply to: [CSSIgniter Shortcodes] simple and fastGlad you like it ??
Forum: Plugins
In reply to: [CSSIgniter Shortcodes] CSS styles missing when Compatibility Mode is onIndeed.
Thanks for reporting this.
I’ve now pushed an update, v1.2.1 that fixes it.Forum: Plugins
In reply to: [Socials Ignited] Update plugin to use fontawesomeIt’s done!
Forum: Plugins
In reply to: [Socials Ignited] Update of widget.php needed for width and heightHi there,
since there are responsive issue when including width and height properties, we are not going to be adding them. Furthermore, the image icons are now deprecated, in favor of the new Font Awesome widget.
You might want to update and try that instead.Hope this helps ??
Forum: Plugins
In reply to: [Socials Ignited] Instagram not showing upHey there,
perhaps the instagram icon is not included in the icon set / color scheme / size combination that you’ve selected.I just updated the plugin with a new widget that uses the Font Awesome font. You might want to update and try that instead.
Forum: Plugins
In reply to: [Socials Ignited] optimize iconsHi there,
what exactly do you mean? Could you please elaborate?