now
Forum Replies Created
-
Forum: Plugins
In reply to: Event Calendar 3 – square on calendar not showingHello,
I’m not an expert but if you disable the css, you willl have no classes defined so nothing fancy and special will show.Try to add this to the css of your theme.
.ec3_eventday a {border-width: 1px; border-style: solid; border-color: #33dd44; padding:4px;}hope it will help.
Forum: Plugins
In reply to: Autonav order descYou rule!
Works perfectly!
Thanks a lot.
I mark this thread as resolved.Thanks again for your help and for the plugin!
Forum: Plugins
In reply to: [Plugin: DG Random Image] link from image to page of galleryOk,
I solved my problem using another plugin Gallery Widget
I needed to change the link instead of<a href="' . $this->getImageLink($_post->ID, $linktype, $_post->post_parent) . '"' . $_addcss . $_addrel . '><img src="' . wp_get_attachment_thumb_url($_post->ID) . '" alt="' . $_imgtitle . '" title="' . $_imgtitle . '" /></a>
This is on line 221 and I changed the $_post->ID…
so it is now:<a href="' . $this->getImageLink($_post->post_parent, $linktype, $_post->post_parent) . '"' . $_addcss . $_addrel . '><img src="' . wp_get_attachment_thumb_url($_post->ID) . '" alt="' . $_imgtitle . '" title="' . $_imgtitle . '" /></a>
OK, it’s not such a great deal but i confess, php is something i don’t know enough to realize this is a very minor change…
I guess i’m not the only one. It might help other people in my situation.
Hasta la vista!Forum: Plugins
In reply to: [Plugin: DG Random Image] link from image to page of galleryno one?
Forum: Plugins
In reply to: [Wordpress Forms] [Plugin: WordPress Forms] This plugin ROCKS!Hi, ok no problem,
just let me know and i’ll translate it in french as good as i can.Forum: Plugins
In reply to: [Wordpress Forms] [Plugin: WordPress Forms] This plugin ROCKS!Hey!
In case you need help for the french translation, let me know.Hello there,
I had the same problem and I found the solution on the qtranslate forum.
https://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=1630
After having changed
define(‘QT_SUPPORTED_WP_VERSION’, ‘3.0’);
to
define(‘QT_SUPPORTED_WP_VERSION’, ‘3.0.1’);
on line 78 in qtranslate.php everything works just fine.enjoy!
sandro
Forum: Plugins
In reply to: drag and drop pictures in pageok,
for people who are interested here is the answer i found by trying to find a way to do it.to organise the pictures, i used layers (with tiny mce advanced)
Then I used https://www.walterzorn.com/dragdrop/dragdrop_e.htm#demolyr to make images draggable…In order to make all the pictures be draggable, i tried to change the id in
<script type=”text/javascript”>
<!–SET_DHTML(“1”, “2”, “3”, “4”, “5”, “6”, “7”, “8”, “9”);
//–>
</script>I just wrote all the numbers.
I must be lucky. It works and i even don’t really know why. That’s what makes me feel dumb.
take care.
sandro