clemence.izm
Forum Replies Created
-
Forum: Plugins
In reply to: [wpMandrill] Only the test is workingCan somebody help me…
There’s no way I can have a direct support from mandrill?
I can’t find form or direct support email in your website.That’s really frustrating..
Google has already helped me with some part of the setting, now I only require your advice (Mandrill Team).Cheers
ClémenceForum: Plugins
In reply to: [Ultimate Coming Soon Page] RSS URL address FeedBurnAlso, don’t forget to change the permalink to this form:
https://yourDomainName/pagina-ejemplo/Without doing so, the advice above won’t work.
Cheers
ClémenceForum: Fixing WordPress
In reply to: How to remove a block from contact page?Hello,
thank′s for your answers, I’ll check the documentation you provided and hope to find the solution.Contacto is the name of the page contact, the one I want to customize by removing the div.
so that the user can see the form without scrolling.
I mean that, as I will remove the div id=”topPanel”, the user will see directly the contact form located in the next div id=”mainPanel”, no matter the screen size.
I saw that the code I shared has been cut, so I will write it again with less details. The idea is to display in the contact page the divid=”mainPanel”, and in the others pages both id=”topPanel” and id=”mainPanel”. I’ve wrote this code in the page.php file and a blank page displays (yes I work on child theme):
<?php
if (is_page( contacto ){
?>
<div id=”mainPanel”> </div>
<?php
}
?>
<?php
else {
?>
<div id=”topPanel”> </div>
<div id=”mainPanel”> </div>
<?php
}
?>Forum: Fixing WordPress
In reply to: How to remove a block from contact page?Yes but as it is a question that can apply to whatever theme I thought I could recieve some help from the wordpress community…
Nevermind.Thank you so much anterys. It works fine for me too.
It’s time for the devpers of the plugin to correct the issue.Forum: Plugins
In reply to: [Sticky Element] Active on all pagesyes, I’ve got the same “prbm”.
Where can we switch off this modal window (popup)?The plugin is great though
thank’s
Forum: Plugins
In reply to: [Slideshow Satellite] [Plugin: Slideshow Satellite] Slideshow not loadingHey,
ok, I already did several tries.
It’s true that without this line, the slider works, but the other function not.
What is blurry to me is that the other function worked perfectly (without the <script jquery-1.8.3.min.js etc… line) before installing the slider plugin. Now, with the activation of the slider, it only works with the presence of the <script jquery-1.8.3.min.js etc… line
That’s why I think there is a conflict between those 2 elements.I hoped that someone could light my lack of knowledge.
Thanks
Forum: Plugins
In reply to: [Slideshow Satellite] [Plugin: Slideshow Satellite] Slideshow not loadingHi,
I have the same probleme of infinite spining login icon.
Seems it’s in conflict with the following code, in fact as I delete this one, the slider works perfectly. Probleme is i’m front end design with small knowledge in javascript.
If someone can help. I use the following code in order to maintain the secondary menu visible, even when user scroll.
Thank’s in advance for answer.
Cheersfunction secondaryMenu_fixe() {?> <script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.min.js"></script> <script type="text/javascript"> $().ready(function() { var $secondary = $("#widget-menudetourage, #widget-menuretouches, #widget-menuvectorise, #widget-menucolorisation, #widget-menu3d"); $(window).scroll(function(){ $secondary .stop() .animate({"marginTop": ($(window).scrollTop() + -50) + "px"}, "slow" ); }); }); </script> <?php } add_filter ('thematic_belowmainasides' , 'secondaryMenu_fixe');
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]