xmmassage
Forum Replies Created
-
Forum: Plugins
In reply to: [Gallery Custom Links] Doesn’t work with the last wp updatesHere is screenshot of 3 type of blocks inserted in to the new wp editor:
1. “Classic” block with the gallery inside
2. “Gallery” block
3. “Tiled gallery” block from Jetpack blocks sectionthe plugin works as usual with the 1 gallery, but doesn’t work with second and third.
Thank you.
Forum: Plugins
In reply to: [Gallery Custom Links] Doesn’t work with the last wp updatesJordy,
I found the problem. It only works if you put a gallery in to the “CLassic” block of new editor.
But if you will use the new blocks like “Gallery” or “Tiled gallery” then it doesn’t work.
Thank you.
I was right. There is another mistake in the string 1787 you replace the whole array with the class name given by user and strip your own classes:
So instead:
if ( ! empty( $atts[‘class’] ) ) {
$classes = $atts[‘class’];
}Should be:
if ( ! empty( $atts[‘class’] ) ) {
$classes[] = $atts[‘class’];
}I’m wrong. There is a forgotten </div> in class-register.php line 1789
$html = ‘<div id=”wc-shortcodes-image-links” class=”‘.implode( ‘ ‘, $classes ).'”><div class=”wc-shortcodes-image-links-wrapper-inner”>’.$html.'</div>’;
need one more </div> at the end.
Hello,
Any updates on this issue?
Thank you.
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] Javascript in BUTTON HREF stopped to workChris? please )
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] Javascript in BUTTON HREF stopped to workChris, thank you, Is there any workaround for this? Can I remove this “filter” using custom functions? Or maybe you can point me on your function which does it and tell me what to change (comment) in it?
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] Javascript in BUTTON HREF stopped to workCan you please fix this asap. We used it all around the website (… Thank you.
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] Keep paragraphs in TOGGLE body?Another question about TOGGLE:
Is it possible to keep HTML tags in TOGGLE TITLE attribute?
Simple case: I want to highlight the “Read more…” phrase at the end of title with bold and different color.
Like
[wc_toggle title=”There is a lot of text after this title. <b>Read more…</b>”]Thank you.
- This reply was modified 7 years, 9 months ago by xmmassage.
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] Keep paragraphs in TOGGLE body?My fault. I forgot that I have used the remove filter in my custom functions. Sorry.
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] Keep paragraphs in TOGGLE body?Maybe I’m wrong but all the <p> tags always disappear from TOGGLE after I update the post.
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] CLASS attribute doesn’t work for BUTTONSChris, thank you!
Forum: Plugins
In reply to: [WP Meta SEO] Global custom meta tags?Well, I like your plugin because of bulk editing page. And I was thinking custom meta fields are closer to your plugin idea.
Thank you.
Forum: Plugins
In reply to: [Shortcoder — Create Shortcodes for Anything] Plugin broken with WP 4.4!This workaround doesn’t FIX shortcodes in widgets and shortcodes used inside other shortcodes ((
Forum: Plugins
In reply to: [Shortcoder — Create Shortcodes for Anything] Plugin broken with WP 4.4!