itshall
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Calendar Page is Partially TranslatedVery strange, it looks like the string is staying in English now but the List view button doesn’t work and adds the month slug code to the URL.
Forum: Plugins
In reply to: [The Events Calendar] Calendar Page is Partially Translatedhttps://staging-marylandphysicianscaremain.kinsta.cloud/wow-events/
Please check it out soon as we’re currently working on it and will be adding events and hiding the list view soon (if we can’t figure out a fix).
Forum: Plugins
In reply to: [The Events Calendar] Fix for WPMLThank you for sharing this here @asadabbas88 , its partially helped my issue here.
Forum: Plugins
In reply to: [The Events Calendar] Calendar Page is Partially TranslatedUsing the fix here has fixed the meta title and other bits that were hit or miss on page reload, but it has not fixed the ‘no upcoming events’ string.
It is still Spanish on
/events/but is English on/events/(/?:month)/which I get sent to when trying to load the List view of the calendar.Forum: Plugins
In reply to: [The Events Calendar] Calendar Page Doesn’t LoadHey @geoffbel
Thanks for helping me figure this out. Your comment got me thinking about Timber’s role in this chaos and I found this Github issue: https://github.com/timber/timber/issues/1151
The fix for me was removing the header.php and footer.php files and the templates load fine!
Thanks again,
Tyler- This reply was modified 5 years, 1 month ago by itshall.
Forum: Plugins
In reply to: [The Events Calendar] Calendar Page Doesn’t LoadHello @geoffbel
As said in my original post, switching to a default theme does make it work. The /events/ slug is not being used by anything else and I’ve even tried changing it to /calendar/ but no luck. I also just tried creating a Calendar page with the /calendar/ slug to see what would happen and got this notice:
https://pasteboard.co/JXi8WfS.png
However, the page is blank just the same. If it helps to know, no HTML loads on this blank page. The body and head tags are completely empty. I’ve been saving permalinks often to make sure thats not the issue. What level of access would you need to my staging site to hopefully determine the issue?
Forum: Plugins
In reply to: [The Events Calendar] Calendar Page Doesn’t LoadHello @geoffbel
I’ve tried changing the Events Template to my own templates and they appear just fine but there is no calendar. That’s why it seems like it can’t find the default events template at all, or something is stopping it.
The theme is custom, main plugins include Timber, ACF Pro, Yoast SEO, Gravity Forms, and some others that I don’t suspect are the culprits.
Would it help to see the staging site or do you need access to the code?
Let me know, thanks,
TylerForum: Plugins
In reply to: [Unlist Posts & Pages] Still Maintained?Great! Thanks Suman 👍🏻
Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] Will it ever work with ACF’s content editor?Forum: Plugins
In reply to: [HTML Editor Syntax Highlighter] ACF Support?Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Issue with ACF + Modify Schema OutputGreat! Thank you!
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Issue with ACF + Modify Schema OutputAwesome! Glad to know it’s not an isolated incident.
Thanks for your help, Sanjeev!
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Issue with ACF + Modify Schema OutputYes I have
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Issue with ACF + Modify Schema OutputThe modify button is there but when I click on it I get an infinite loading spinner. My console returns an error:
Uncaught TypeError: $ is not a functionI load my jquery in functions.php like this:
add_filter( 'wp_enqueue_scripts', 'replace_default_jquery_with_fallback'); function replace_default_jquery_with_fallback() { $ver = '1.12.4'; $migrateVer = '1.4.1'; // Dequeue first then deregister wp_dequeue_script( 'jquery' ); wp_dequeue_script( 'jquery-migrate' ); wp_deregister_script( 'jquery' ); wp_deregister_script( 'jquery-migrate' ); // Set last parameter to 'true' if you want to load it in footer wp_register_script( 'jquery', "//ajax.googleapis.com/ajax/libs/jquery/$ver/jquery.min.js", '', $ver, false ); wp_register_script( 'jquery-migrate', "//cdnjs.cloudflare.com/ajax/libs/jquery-migrate/$migrateVer/jquery-migrate.min.js", '', $migrateVer, false ); // Fallback wp_add_inline_script( 'jquery', 'window.jQuery||document.write(\'<script src="'.includes_url( '/js/jquery/jquery.js' ).'"><\/script>\')' ); wp_add_inline_script( 'jquery', 'window.jQuery||document.write(\'<script src="'.includes_url( '/js/jquery/jquery-migrate.min.js' ).'"><\/script>\')' ); wp_enqueue_script ( 'jquery' ); wp_enqueue_script ( 'jquery-migrate' ); }