McLibboc
Forum Replies Created
-
That did the trick. Now it works as expected.
Thanks a lot.
- This reply was modified 1 year, 10 months ago by McLibboc. Reason: resolved
@rogierlankhorst thank you for your quick reply.
The issue remains:
- I have a multisite with many subsites already in use. I take it that the
wp_initialize_site
hook will not trigger then? When is the assignment of capabilities to roles triggered in this case? - It seems to me that you addressed the capability
manage_burst_statistics
only, not theview_burst_statistics
which is not implied but also needed.
Best regards,
McL- This reply was modified 1 year, 10 months ago by McLibboc.
In
burst-statistics/burst.php, line 182:
if ( ! function_exists( 'burst_set_activation_time_stamp' ) ) { /** * Set an activation time stamp * * @param $networkwide */ function burst_set_defaults( $networkwide ) { BURST()->admin->setup_defaults(); } register_activation_hook( __FILE__, 'burst_set_defaults' ); }
As far as I can tell, the first
if
-condition will never be true, at least I couldn’t find any definition of a function calledburst_set_activation_time_stamp
.Just changing that to
burst_set_defaults
didn’t help, though, the problem persists.- This reply was modified 1 year, 10 months ago by McLibboc.
Hi @hesseldejong,
your fix in
settings.php
did the trick, thanks a lot!Yes, there are still some untranslated strings, but I can happily wait until those get incorporated in later versions.
I had some basic misunderstanding when translating strings containing placeholder elements with %s. I corrected those errors at https://translate.www.ads-software.com/projects/wp-plugins/burst-statistics/
Best regards,
McL- This reply was modified 1 year, 10 months ago by McLibboc. Reason: resolved
Hi @hesseldejong,
Ok, thanks, now I am beginning to see the translation changes I made to the de_DE locale yesterday, so apparently the repository changes for that are in effect now.
However, that still doesn’t seem to affect the language dependent parts of the javascripts:
I suspect that something might not be OK with script registration, maybe see https://wordpress.stackexchange.com/questions/355472/how-to-load-translation-in-javascript
- This reply was modified 1 year, 10 months ago by McLibboc.
Hi @hesseldejong,
thanks for your quick response.
To clarify: I first completed the German translation, and in particular also the German (Formal), which I am interested in most, at https://translate.www.ads-software.com/projects/wp-plugins/burst-statistics/
I then downloaded the resulting .po files and treated them as described above.
I will wait to see if the addition to the WP repository will make any difference. Could you please also add the locale de_DE_formal to the repositiory?
Thx!
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Media and Text Slider Ordering SlidesForgot to give version info. Here it is:
WordPress: 6.1.1
Getwid: 1.8.2This has been fixed in 5.6.1
Just found a corresponding ticket: https://core.trac.www.ads-software.com/ticket/52135
So it is a known bug.
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Image Slider > Display Image CaptionsDone. Thanks again.
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Image Slider > Display Image CaptionsI recently came back to this (currently using version 1.6.8 of the plugin) and I still cannot seem to find the option to switch on the image captions.Any pointers?Found it, sorry.
- This reply was modified 3 years, 11 months ago by McLibboc.
Forum: Plugins
In reply to: [LaTeX2HTML] How to use templateI was hoping that putting something like this in the LaTeX preamble:
\newtheorem{Axiom}[thm]{Axiom} \newtheorem{Definition}[defn]{Definition}
would show some effect.
But looking at the source code, I realized that all environment variables for
l2h_latex_parse_thm
appear to be hardcoded. So there is no apparent way to extend this for e.g. axioms.Also no apparent way to do what @leiniu wants to do above.
Would it be possible to populate those parameters from a settings page like your LaTeX template page suggests?