Jaroslav Svetlik
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Agama] Theme Agama, mobile navigationSo what’s your website url ?
Regards
Forum: Themes and Templates
In reply to: [Agama] Remove header image from all other pagesEdit next file:
wp-content/themes/agama/framework/slider.phpfind on line 45 next code:
<?php if( ! get_header_image() ): // Do not output slider if header image is active ?>replace it with:
<?php if( ! get_header_image() && is_home() || ! get_header_image() && is_front_page() ): // Do not output slider if header image is active ?>Regards
Forum: Themes and Templates
In reply to: [Agama] Breadcrumbs depthWell i hope soon for about 7 days from today.
Regards
Forum: Themes and Templates
In reply to: [Agama] Theme Agama, mobile navigationIf you are using caching plugin please delete your cache first and after that everything should be ok.
Regards
Forum: Themes and Templates
In reply to: [Agama] Upgrade to Agama ProHello dynamicrei,
This forum is related to Agama Free theme so please login on theme-vision.com and start new thread there.
Regards
Forum: Themes and Templates
In reply to: [Agama] page loading icon in frontendNot right now, but will implement it in near future.
Anyway if you are using Agama Pro theme please next time login to theme-vision.com and start new threads on support forum.
This forum is related to Agama free theme.
Regards
Forum: Themes and Templates
In reply to: [Agama] page loading icon in frontendHmm, i dont really understand what actually you want to do ?
Show screen 🙂
Regards
Forum: Themes and Templates
In reply to: [Agama] Changing menu text color on initial page loadIm glad you resolved it on your own.
Regards
Forum: Themes and Templates
In reply to: [Agama] Breadcrumbs depthHello chroix,
You can expect breadcrum issues resolved in next theme update 😉
Best Regards
Forum: Plugins
In reply to: [JPro Cars] upgrade to premium versionHello wilhelmkien,
This support forum is related only to JPro Cars free plugin but not premium.
Please go to theme-vision.com & login into your account and you will be able to download JPro Cars from there.
Best Regards
Forum: Themes and Templates
In reply to: [Agama] Slideshow vs Featured ImageIt is possible, just remove slider images (slider will turn off) & upload header image/s from:
Customize->Header->Header ImageSorry if i miss-understand your question.
Best Regards
Forum: Themes and Templates
In reply to: [Agama] Header Background ColorTry with next:
#masthead { background-color: #desired color !important; }or
#masthead { background-color: rgba(255, 255, 255, .7) !important; }Forum: Themes and Templates
In reply to: [Agama] Header Background ColorHello mprythero,
You can try adding next code to:
Appearance -> Customize -> Styling -> Custom CSS
#masthead { background-color: #desired color; }Best Regards
Forum: Themes and Templates
In reply to: [Agama] Slideshow vs Featured ImageHello mprythero,
Right now there is no way to show the slider only on homepage.
Im preparing update for this but until that you can edit manually next file:
wp-content/themes/agama/framework/slider.phpSearch for:
<?php if( ! get_header_image() ): // Do not output slider if header image is active ?>and replace it with:
<?php if( ! get_header_image() && is_home() || ! get_header_image() && is_front_page() ): // Do not output slider if header image is active ?>This will show slider only on homepage or front page and nowhere else.
As i said update is upcoming so you will be able to enable / disable slider on desired pages.
Best Regards
Forum: Themes and Templates
In reply to: [Agama] Shine-Effect on Small Thumbs LayoutHello nohuman,
You can change zoom to shine effect by editing next file:
wp-content/themes/agama/framework/blog/small_thumbs/loop.phpAdd after (line 10):
<div class="entry-image">next code:
<figure class="hover1">Add before (line 22):
</div><!--.entry-image-->next code:
</figure>and last thing, replace (line 16):
<img class="image_fade img-responsive image-grow" src="<?php echo agama_return_image_src('agama-blog-small'); ?>" alt="<?php the_title(); ?>">with next code:
<img class="image_fade img-responsive" src="<?php echo agama_return_image_src('agama-blog-small'); ?>" alt="<?php the_title(); ?>">I hope this helps you.
Regards