Oleg Goltsev
Forum Replies Created
-
The person stopped to respond.
Forum: Reviews
In reply to: [AMO Team Showcase] Easy to use & Awesome to watch!Thank you very much! Nice to hear such feedback.
Forum: Plugins
In reply to: [AMO Team Showcase] Why is the circle outline for Style 2 off center?I’ll also add this fix in the next plugin version (when it will be ready).
Forum: Plugins
In reply to: [AMO Team Showcase] Why is the circle outline for Style 2 off center?Hi Nadbuchanan,
Your theme overrides plugin’s CSS on figure HTML element.
You need to add this block to your CSS:.amoteam-tiles__item figure {
margin: 0;
padding: 0;
}or this one:
.amoteam-tiles__item figure {
margin: 0;
padding: 0 !important;
}You can add custom CSS in this WordPress’ admin section Customize -> Additional CSS.
Forum: Reviews
In reply to: [AMO Team Showcase] what a great pluginThank you very much, it is really nice hear such feedback!
Forum: Plugins
In reply to: [AMO Team Showcase] Different coloured team membersHi,
The answers:
1. Colors are set in plugin options for all the members.2. Since the colors are dynamic (can be changed in the options) they are not located in CSS files. They are added right to the page (as CSS <style> block).
3. You can easily locate colors and classes to which they are applied to by using, for example, Chrome’s Developer Tools. And then override them in your CSS file.
Forum: Plugins
In reply to: [AMO Team Showcase] Pop-up overflow on mobileWhich pop-up do you mean? In the front-end or back-end of WordPress?
If it’s frontend please provide a link to the page. So I could see the issue live.
But most probably the issue is not related to the plugin itself. Because there is no resizing after a second (which seems like JavaScript), plugin uses CSS for pop-up width and positioning (in both front-end and back-end).
Forum: Plugins
In reply to: [AMO Team Showcase] Social Icon – EmailYou’re welcome.
Forum: Plugins
In reply to: [AMO Team Showcase] Social Icon – EmailHi arroninglis,
No, there is no such icon.
Because:
1. The purpose of the social icon is to be external link to some site, and thus the links open in new browser tab. Thus, mailto link from the email link would open a blank new browser tab (with nothing), and that would look weird.2. If there is no email program associated with such mailto links on the computer, then the link would lead to nothing, just open a blank browser tab.
Because of this, the most appropriate is to add email address in the text of member panel or use contact forms in the panel.
I’m thinking to add Contact Form 7 support in the panel (in terms of the form styling).
Forum: Plugins
In reply to: [AMO Team Showcase] Not able to click a team memberHi jackkemm,
First of all it would be helpful to get the link to your site, to see the problem.
But most probably the problem is in MagnificPopup JS “conflict”. The plugin uses Magnific Popup JS and if some other plugin or your theme uses Magnific Popup too, the magnific popup functionality of either one stops to work. AMO Team plugin uses Magnific Popup to show team member panel.
I saw such problem in many other plugins or themes, not only mine, but wasn’t able to find solution in the internet.
The other problem maybe in z-index property, maybe the panels appears but some parts of your theme have bigger z-index values and the panel became “invisible”.
But again it would be great to see your site, to understand what’s wrong.
Forum: Plugins
In reply to: [AMO Team Showcase] Scroll through thumbnailsHi,
1. Well, the plugin uses Wookmark JS which is specifically for creating a grid. So if you have a several members shown with one shortcode it will be a grid.
But you can use Team Member shortcode to place individual team members (one by one) in any HTML/CSS structure you want and present them not in grid.
For example, this will output just one team member – [amo_member id=”71″ item-width=”220″ align=”center” item-margin=”20″ full-width=”yes” panel=”right”]2. The plugin doesn’t have category or any other filter for members (on frontend).
Thanks.
Forum: Plugins
In reply to: [AMO Team Showcase] Centering + SiteOrigin pagebuilderHi lauramay7,
The plugin uses Woomark jQuery plugin for its grid system, which includes centering/alignment and scaling.
https://github.com/germanysbestkeptsecret/Wookmark-jQuery1. So if it doesn’t work in SiteOrigin Pagebuilder, then something in the page builder’s frontend html/js prevents it from normal work.
2. The same thing could be with the sidebar in your particular theme. But I wasn’t able to find on the site (there are too many pages) sidebar which uses the plugin, or any page which uses it.
It is tested on many themes (plugin widget functionality in sidebars), but it can’t work in every one. Normally if “Full Width” parameter is set to “yes” scaling should work.- This reply was modified 7 years, 10 months ago by Oleg Goltsev.
- This reply was modified 7 years, 10 months ago by Oleg Goltsev.
Forum: Plugins
In reply to: [AMO Team Showcase] Target=”_blank”You’re welcome!
Forum: Plugins
In reply to: [AMO Team Showcase] Target=”_blank”Hi, the link post type is created for external links. At the moment there is no option in the plugin to change that (will add a way to change it in the next update).
But you can edit file with that parameter, so the file is “class-amo-team-showcase-shortcodes.php”, line 154, delete the target=”_blank”, or change _blank to _self.
(Of course your change will be overwritten on next plugin update.)Forum: Plugins
In reply to: [AMO Team Showcase] How to sort by name?Hi, there is no automatic way to sort/order members by name, at the moment. But you can use manual way to do this, please take a look at plugin’s FAQ section, and this question in it – “How to display team members in a certain order?”