Oleg Goltsev
Forum Replies Created
-
Forum: Plugins
In reply to: [AMO Team Showcase] Style 2.1 IssuesSince there is now answer from user I mark this topic as resolved.
Forum: Plugins
In reply to: [AMO Team Showcase] Style 2.1 IssuesHi, thanks for the message and for such nice feedback too ??
Well, such bugs/issues appear when some theme styles (CSS) override plugin ones. I need a live link to investigate and tell you which CSS property is causing this, and what CSS you need to put on your site to fix the issue.
That’s not a generic fix, without a live link to your site I won’t be able to find the issue.Forum: Reviews
In reply to: [AMO Team Showcase] Such an amazing pluginThank you for your feedback/review!
Forum: Reviews
In reply to: [AMO Team Showcase] AMAZING Plugin!Thank you for this great and also thorough review/feedback!
Yes, I agree that current way to sort/order members is not very convenient. There are plans to make it differently, but it won’t be soon, to be honest.
Forum: Plugins
In reply to: [AMO Team Showcase] Team Members Not VisibleOkay, thank you for this update.
Forum: Plugins
In reply to: [AMO Team Showcase] SortingYou’re welcome.
Yes, I agree for your situation it’s not very convenient, to add id every time just to have certain order of members. But that’s the only solution at the moment.
Dear moderators please delete this post, because I’m back from vacation and can support the plugin now.
Forum: Plugins
In reply to: [AMO Team Showcase] Widget Title H1 instead of h2Hi,
The plugin doesn’t set h tags (h1, h2, etc) for widget title, theme (your theme) does this.
Forum: Plugins
In reply to: [AMO Team Showcase] Team Members Not VisibleHi, on my end I don’t see any issues, I tried in 2 browsers (Firefox and Chrome), I see the members without any actions.
The only issue I see, is that page needs about 20-30 seconds to load (that’s super slow), and until it loads fully I don’t see any images including header image and team members too (of course). But that’s not related to the plugin.
So I would suggest to try to log out from the site to see the page as I see it and wait for page to load, because it loads really slow.
Forum: Plugins
In reply to: [AMO Team Showcase] SortingHi Uinavas, thanks.
Well, at the moment there is only one way to show team members in certain order (excluding date thing of courses).
Please see this question – “How to display team members in a certain order?” in the FAQ section – https://www.ads-software.com/plugins/amo-team-showcase/#faq
I’m not planning to use order field in posts/members. There are plans for more sophisticated solution, but that won’t be soon.
Forum: Plugins
In reply to: [AMO Team Showcase] Different accent colors and colors for each categoryHi again,
Well, first of all your CSS is wrong there is no
<ul>
element on the page with id=”16086″ and of course it doesn’t have “amoteam-member-hover-icon” CSS class, because this class applied to <div> tag. I don’t teach people CSS here. I support the plugin. But I can give you a few tips.1. Read documentation and add a class to your shortcode.
For example –[amo_member id="17" item-width="250" align="left" item-margin="20" full-width="yes" panel="right" class="my-red-team"]
I’ve added –my-red-team
CSS class to my shortcode here.2. Next the code for the class and hover icon would look like this:
.amoteam-sc-team.test-class .amoteam-member-hover-icon { background: red !important; }
This way it will work.
- This reply was modified 7 years, 8 months ago by Oleg Goltsev.
Forum: Plugins
In reply to: [AMO Team Showcase] Suggestions and IdeasHi Lennard,
Sorry, I’ve just noticed your message. In new plugin version I’ll add ability to use custom/user’s images as social media icons.
Thanks!
Forum: Plugins
In reply to: [AMO Team Showcase] Different accent colors and colors for each category1. It is possible with custom CSS, but in plugin settings there is no such ability.
2. First of all, you can add custom CSS classes to any team or team member shortcode.
https://amothemo.com/docs/amo-team-showcase-documentation/en/#sc-amoteam3. The accent color CSS as well as all plugin Options’ CSS is a dynamic CSS by definition. So it is added to the page code at the end of it using <style> HTML element.
You can find it right after this comment (in page HTML code) – /* AMO TEAM DYNAMIC CSS */4. It is plain CSS code and can be easily overridden, if you know how to override CSS code added to the page in style element (so almost the same specificity/hierarchy as inline CSS).
If you are still having troubles try to also add your CSS in <style> in tag, using wp_footer action (after plugin’s CSS code).Forum: Plugins
In reply to: [AMO Team Showcase] max members per categoryПожалуйста ??
Forum: Plugins
In reply to: [AMO Team Showcase] max members per categoryЗдравствуйте, никогда не думал что может потребоваться больше 50…
На данный момент ограничение можно снять подправив код, я объясню как.
1. Найдите в папке плагина файл – “class-amo-team-showcase-shortcodes.php”
2. Найдите в файле строкуif ( $a['max'] > 50) { $a['max'] = 50; }
. У меня это строка № 257.
3. Закоментируйте строку поставив перед if // , получится –//if ( $a['max'] > 50) { $a['max'] = 50; }
ИЛИ поменяйте оба числа 50 в строке на 200 например. Получится –
if ( $a['max'] > 200) { $a['max'] = 200; }
.
Ну и не забудьте изменить max=”50″ в шорткоде на 200 тоже.(В следующей версии плагина подниму ограничение до 100.)
- This reply was modified 7 years, 9 months ago by Oleg Goltsev.