soullighter
Forum Replies Created
-
Forum: Plugins
In reply to: [SrbTransLatin - Serbian Latinisation] Klik na “tools” daje greskuTakodje imam isti problem. Cisto da naglasim ??
Forum: Fixing WordPress
In reply to: Disable Image CompressionThere is no way that WordPress will reduce size of image on upload by himself, defensively there is some function or plugin to do that. Did you check function.php file for custom function or maybe check plugins for that?
Forum: Plugins
In reply to: [Exit Popup] Add a Close Icon (X)Following this question, because it’s unusual to not have Close button on modal ??
Same problem here, also with Loco Translate
Forum: Plugins
In reply to: [Minimal Coming Soon – Coming Soon Page] Where i can translate this text?Thank you ??
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] parse linkYou have documentation here
https://docs.simplecalendar.io/event-template-tags/autolink=”yes” to convert plaintext URLs into anchor links
So you need to do this:
[description autolink="yes"]
Forum: Plugins
In reply to: [SrbTransLatin - Serbian Latinisation] Detektovanje promene pisma sa css-omJa sam trenutno ovako sredio problem:
if (window.location.href.indexOf('?script=cir') !== -1) { $('body').addClass('cyrillic-styles') }
Ali opet sam naleteo na bug. Kad se klikne na bilo koji jezik, da li je /?script=cir ili /?script=lat, ako je stranica obelezena kao home page, ta stranica izgubi klasu home i generalno izgubi da ima template na sebi.
Kad je sve normalno:
https://ibb.co/bt6uHy
Kad se klikne na cyr i url dobije /?script=cir
https://ibb.co/dwn1xyDa budem precizniji, ode mi na index.php, sto generalno ne mogu da uradim nista posto imam ACF field-ova koji su vezani za template
- This reply was modified 6 years, 5 months ago by soullighter.
- This reply was modified 6 years, 5 months ago by soullighter.
- This reply was modified 6 years, 5 months ago by soullighter.
Forum: Themes and Templates
In reply to: Missing "Editor" Tab under the "Appearance" menuChanging
define('DISALLOW_FILE_EDIT', true);
tofalse
fixed my problem.Forum: Plugins
In reply to: [Easy Video Player] How to hide progress bar?Easiest way to hide things is with CSS.
Acording to documentation that they have on website they don’t have that option in shortcodeForum: Plugins
In reply to: [Simple Lightbox] slb_activate() & ACFHere is solution
https://support.advancedcustomfields.com/forums/topic/acf-gallery-simple-lightbox-problem/
mediawerk gave correct answerMy problem was Flexslider and here is solution for it:
<div id="mini_slider" class="flexslider fsdfs"> <ul class="slides"> <?php foreach( $images as $image ): $size = $image['sizes']['gallery-large']; $alt = $image['alt']; $content = '<li><a href="' . $size . '"><img src="' . $size . '" alt="' . $alt . '" /></a></li>'; if ( function_exists('slb_activate') ) { $content = slb_activate($content); } ?> <?php echo $content; ?> <?php endforeach; ?> </ul> </div> <div id="carousel" class="flexslider"> <ul class="slides"> <?php foreach( $images as $image ): ?> <li> <img src="<?php echo $image['sizes']['gallery-small']; ?>" alt="<?php echo $image['alt']; ?>" /> </li> <?php endforeach; ?> </ul> </div>
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Language changeForum: Plugins
In reply to: [Quick Page/Post Redirect Plugin] Redirect everything after "/"@wedesignla
Hey man,No, i think it was not posible, but i found this and he is doing exacly that.
Setup for that plugin is like this:
Request:
/everything-What-Is-After-This/*
Destination:
/some-pageThank you, you too ??
Thank you so much Bojan for your time,
I think i will go with that solution (Not from internal link).
Again great plugin and I’m looking forward to use it on every project.
CheersThank you for reply Bojan,
I need something similar with that function, and that is: when user come back tomorrow, for example, to see that popup again, but just once.
Is there any solution for that?