tonton_mtl
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Possible to add custom field with ACF ?Thank you Nico ! The guide is perfect!
j.Hi,
No the table isn’t so large : 15k lines / 2MB.
So I’ll just empty the table and try again…
Yo,
Here is the instapress plugin with this bug fixed (fatal error with recent PHP version) : https://bitbucket.org/julien_tonton/instapress/
Peace,
j.Forum: Plugins
In reply to: [Instapress] IIS Internal Server ErrorYo,
Here is the instapress plugin with this bug fixed (fatal error with recent PHP version) : https://bitbucket.org/julien_tonton/instapress/
Peace,
j.Forum: Plugins
In reply to: [Instapress] Instapress ErrorYo,
Here is the instapress plugin with this bug fixed (fatal error with recent PHP version) : https://bitbucket.org/julien_tonton/instapress/
Peace,
j.Forum: Plugins
In reply to: [Instapress] "Fatal Error"Yo,
Here is the instapress plugin with this bug fixed (fatal error with recent PHP version) : https://bitbucket.org/julien_tonton/instapress/
Peace,
j.Forum: Plugins
In reply to: [WP Job Manager] Force resize window when job list loadedNow it works!
Here is the working code :
<script>// <![CDATA[ jQuery( document ).ajaxComplete(function() { jQuery(window).trigger("resize");}); // ]]></script>
I write this, just after the [jobs] shortcode in the page text tab.
It didn’t work with the code on different lines but now it works with everything on the same line…
Also, notice that I had to usejQuery( document )
because$( document )
was not working…Hope it could help other people have the same problem in the future and thanks a lot Mike for you patience!!!
J.
Forum: Plugins
In reply to: [WP Job Manager] Force resize window when job list loadedThe [jobs] shortcode is working so I presume filters is enabled on my theme, right ?
Here is the page where I do a resize after 2.5 seconds to shows the jobs properly : https://staging.grandtoronto.ca/offres-demploi/
Forum: Plugins
In reply to: [WP Job Manager] Force resize window when job list loadedThank you Mike!
My previous working JS code was :
<script>// <![CDATA[ setTimeout(function(){ jQuery(window).trigger("resize");}, 2500); // ]]></script>
I tried :
<script>// <![CDATA[ jQuery(document).ajaxComplete(function() {alert('Ajax')} // ]]></script>
I also tried to put this function in a
jQuery(document).ready(function() {…}
But the ajaxComplete never trigger the Alert…
Are you sure you load the events with Ajax ?
When I comment the
ob_start();
in the output_jobs function I don’t have the page layout problem…
So I’m not sure if the content is Ajax loaded or output buffered ?
Forum: Plugins
In reply to: [WP Job Manager] Job category template uses my blog templateAh yes thanks for the get_job_manager_template_part tricks, I was using the blog entry template, it’s much better now!
Congrats for the great plugin and the great support too!
I’ll use this plugins for other projects for sure ??
Forum: Plugins
In reply to: [WP Job Manager] Job category template uses my blog templateThanks for the fast answer!
I already use a page with the shortcode [jobs] but I hide the category filters and I’ve created a custom taxonomy widget on the sidebar to allow users to filter by job type.
So, I understand that I should use your Ajax filters instead of my widget because I’ve to build an archives template creating a taxonomy-job_listing_category.php template right?
Forum: Plugins
In reply to: [WP Job Manager] Change Sidebar in Job singleIt worked perfectly thank you!
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] og:description not insertedI think so the problem has been reported since a while and still not fixed by the author ??
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] og:description not insertedSame problem here, i’ve a blog with thousands of posts without any custom Meta description.
I would like to use the generated description based on the model of variables I choosed in the “Title and Meta” configuration setting of the plugin.
I tried to add it on the header.php but I don’t know the name of the variable to use… Here is the code i tried :
<meta property="og:description" content="<?php echo esc_attr( strip_tags( stripslashes( $metadesc ) ) ); ?>"/>
or
<meta property="og:description" content="<?php echo wpseo_get_value('metadesc'); ?>"/>
Also, it could be good to display my og:desc only if the plugin doesn’t displays one (in case of the description explicitly entered in a the post).
I don’t understand why the plugin works properly with twitter:description and not og:description but if anybody has an idea to help me to patch this in the header.php it would be great !
Thanks.Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] backup stay 0%Thank you Daniel.
It’s weird because I think I can run BackWPUp on server with less than 384MB of memory…
I don’t understand why the MySQL dump doesn’t start at all.