attiliok
Forum Replies Created
-
Forum: Plugins
In reply to: [CTC Masonry Gallery ??] Images are not loaded randomlyAt the moment I solved putting a 1 second “setinterval” after the DomContentLoad. So the script wait 1 second after the page is loaded before rearranging images.
It seems to be solved with this workaround.
Forum: Plugins
In reply to: [Polylang] Sharing custom taxonomy (without translating it)I found a workaround, but I think there is something wrong in the logic.
I solved putting this on my functions.php fileadd_filter( 'pll_get_taxonomies', 'add_tax_to_pll', 10, 2 ); function add_tax_to_pll( $taxonomies, $is_settings ) { unset( $taxonomies['<strong>my_tax</strong>'] ); return $taxonomies; }
Please consider that my taxonomy name is DESTINATION, but anyway I had to put exactly “my_tax” inside the UNSET function.
If your taxonomy is not the first one, you will have to use “my_tax2” or “my_tax3”.
This is very strange in my opinion, probably I’m missing something o there is something wrong on the filter.Anyway, as for now, I solved.
Forum: Plugins
In reply to: [Groups] Hierarchical Groups is working reverse orderHi, I have exactly the same problem. Any news about this?
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Add a link to reset user choiseAlla fine ho risolto così… forse non è il metodo più elegante, ma è molto semplice
In un qualsiasi punto del sito
?<a href="?delcookie" id="delcookie">Pe resettare le tue preferenze clicca qui</a>
Nel file functions.php
if (isset($_GET['delcookie'])) { unset($_COOKIE['ginger-cookie']); setcookie('ginger-cookie', null, -1, '/'); }
Rabassa, just put
<code>[simplemap]</code>
wherever you want the application to show, in a post or in a page.
(if i undestand what you mean)