BijouLePou
Forum Replies Created
-
Hi,
After uploading the plugin via WordPress, it is now working! Both post notifications messages are sent.
Thanks and have a nice day,
- This reply was modified 2 years, 10 months ago by BijouLePou.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Don't esc_attr the titleHi,
I see in function.php that is as been fixed, but there’s another problem.
We are writing title with tags
<sup>2</sup>
and the tags are showing, as you can see in the right column https://www.poleuniversitaire.ca/categorie/programmes-d-etudes/.Is there a way to or ignore the tags or treat it like it should be?
Wow! I just saw the problem, it was the apostrophe at after the category name!
You can mark this as resolved!
Forum: Themes and Templates
In reply to: [AccessPress Lite] More button in the menuHi,
In the file js/custom.js, put comment code or erase from line 30 to 41:
/*if(jQuery(window).width() > 940 ){ var totalWidth = 0; var wrapperWidth = jQuery('#site-navigation .menu').width()-100; jQuery('#site-navigation .menu > li').each(function(){ totalWidth = jQuery(this).outerWidth(true) + totalWidth; if(totalWidth > wrapperWidth){ jQuery(this).addClass('more-item'); } }); jQuery('#site-navigation .menu .more-item').wrapAll('<li class="menu-item-has-children more-menu-item"><ul></ul></li>'); jQuery('.more-menu-item').prepend('<a href=#>More</a>'); }*/
Thanks Joe.
By the way, the problem is on IE11, not 10.
Hi,
I have registered members with S2members and I want them to answer some question (survey) after they used some of our pedagogical tools. So I want their opinion only once.
This is the answer Ninja Form team sent me.
This isn’t something that Ninja Forms does out of the box, but it would be fairly easy to implement using our WordPress action hooks and filters.
If you are requiring your user to be logged-in at the time of submission, you could use the ninja_forms_pre_process https://wpninjas.com/ninja-forms/docs/developer-api/actions/ninja_forms_pre_process/ action and check the submission database for an existing submission using the user’s id and the ninja_forms_get_subs https://wpninjas.com/ninja-forms/docs/developer-api/functions/ninja_forms_get_subs/ function.
If the submission exists, you would simply add an error using $ninja_forms_processing https://wpninjas.com/ninja-forms/docs/developer-api/ninja_forms_processing/, and it would prevent the submission from being completed and display whatever error you wanted.I didn’t developed it, but if any one does, I’d like to see the code. ??
@nikeo : Thanks!
Hi,
Does the latest version 3.0.10 add those modifications?
If not @acub can you post an update, if it’s needed?
Thanks
Hi,
I tested it in every way possible (with, without plugins, on an other site, with without notes, etc.) and the bug come from … the
<blockquote>text</blockquote>
!My article was displaying just fine without blockquotes. I added them again and now it works fine…
https://memoire.mile-end.qc.ca/?p=1169&lang=fr
https://memoire.mile-end.qc.ca/?p=1169&lang=fr&page=2I tried to figure out what the bug was about, but I have no clue!
By the way, the plugins I’m using are qtranslate, Annie (footnotes) and Tippy (footnotes tooltips).
Hi,
Thanks for your respond. I changed the “if” but it doesn’t change the result.
https://memoire.mile-end.qc.ca/?p=1169&lang=fr&page=2
Any other ideas?
Forum: Themes and Templates
In reply to: [Customizr] Link Slider to Categories?Hi,
There’s this post that helped me https://www.ads-software.com/support/topic/allow-front-page-page-link-to-allow-category-posts-to-be-displayed?replies=5
And this is what did:
In class-content-page.php :After
<div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>' , 'customizr' ) ); ?>
I added:
<?php $postid = get_the_ID(); if ($postid == 787) $la_cat = 13; if ($postid == 1098) $la_cat = 5; if ($postid == 72) $la_cat = 1; ?> <?php query_posts('cat='.$la_cat.'&post_status=publish');?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php endwhile; else: endif; ?>
$postid numbers are the 3 posts that are on my front page (the circles)
and $la_cat is the category I want to show on each page.Hope it helps!
Hi,
I’m using qtranslate too and I would like so much to have this implemented in the next theme version!
Thanks to all!
Forum: Reviews
In reply to: [MJLK Link Tracker] Good plugin, needs a small fix though to version1.2Hi,
I had the same problem and know it works!
Thanks for the fix.