ankomm
Forum Replies Created
-
Wow, the problem was the missing wp_footer() …
Thanks a lot for spending a morning supporting a newbie’s issue !Have a nice day,
Ankomm
The debug code in the wp-config is in the right place and all setted as true.
Yes I use a child theme, creating my own templates and pages. When I said earlier that with another theme the plugin work (without editing my slideshow) it was with the parent theme.EDIT : I have access to my files on the server, and there’s no debug.log in wp-content …
- This reply was modified 6 years, 4 months ago by ankomm.
Ho, I thought it was displaying in the script console with SCRIPT_DEBUG enabled, my bad.
Yep the debugging is enabled.
Where can I find the logs ?Thanks, done.
The result :
– JQMIGRATE: jQuery is not compatible with Quirks Mode
– console.trace : migrateWarn- This reply was modified 6 years, 4 months ago by ankomm.
I don’t have a lot of plugins, and I checked they are all disabled.
I tried on a WP theme, it’s working fine.Hi,
Thanks for the answer, Print CSS and Print JS are on.
All other plugins are disabled.I use a customized child theme, can I include (via include or require) manually your plugin scripts and styles in my function.php ?
- This reply was modified 6 years, 4 months ago by ankomm.
I’ll try when the website will be online, and give a feedback.
Hi,
I’m working in local, I tried “Use window.onload event”, and “Allow Shortcodes” is not checked. I have not other pulgins using Owl Carousel.
Is working in local can be the problem ?
Thanks
Forum: Plugins
In reply to: [Loco Translate] Can translate only templates nameHi,
Don’t undestand, my POT file and my previous translation were deleted (don’t know why and how), then I tried again the process exactly like the first time and … it works !
Thanks for your help (and for the plugin) !
Have a nice day,
Ankomm
Forum: Plugins
In reply to: [Loco Translate] Can translate only templates nameI used the WPLANG and editing the POT file after I did the process (cf my last post) and saw it didn’t work. My language settings are on French since the creation of my theme.
I used English words<?php echo __('Keywords', 'pulsdesign'); ?>
and tried to translate in French but the problem is still there.Thank you for your patience !
Forum: Plugins
In reply to: [Loco Translate] Can translate only templates nameYep I created
pulsdesign.pot
, tried to add manually a translation :msgid "Mots-cles" msgstr "Keywords"
Then added
<?php echo __('Mots-cles', 'pulsdesign'); ?>
in my PHP template,define('WPLANG', 'en_US');
in the header template, sync the plugin.
The raw ‘Mots-cles’ appears in the string list under templates names with the traduction ‘Keywords’, saved and … nothing. My string still display ‘Mots-cles’._____________________________________________________________________________________
For the process : downloaded and installed the plugin in local and in the server (local for testing), configured my theme (helped by seing the Omega configuration), created the template, created a new translation in English (US) and that’s all. The list was filled with only templates names.
Forum: Plugins
In reply to: [Loco Translate] Can translate only templates nameWhat do you mean by ‘extract these strings’ ?
DOn’t know is it will be usefull but here’s my style.php header :
/* Theme Name: PulsDesign Theme URI: Description: Child 01 theme for the Twenty Seventeen theme Author: Alix Hemery Text Domain: pulsdesign Author URI: Template: twentyseventeen Version: 0.1.0 */
My load_theme_textdomain in functions.php :
function my_theme_load_theme_textdomain() { load_theme_textdomain( 'pulsdesign', get_template_directory() . '/languages' ); } add_action( 'after_setup_theme', 'my_theme_load_theme_textdomain' );