classikd
Forum Replies Created
-
Forum: Reviews
In reply to: [Deposits & Partial Payments for WooCommerce] Does not work with PaypalI’ve found the problem.
The plugin doesn’t work with the default checkout page with blocks, when arriving on the Paypal page the entire price is displayed.
But it does work with the old checkout page with the shortcode and a non-block theme.It occurs only in e-mails, since I added this plugin.
Before, with Contact form 7 alone I didn’t have this problem.
My language is french.Forum: Plugins
In reply to: [Modal Guten Block] Showonce not workingThere is no such a cookie, I’ve tested in all browsers.
I saw that the cookie is created if “loadOnce” is true, but I don’t have that “data-once” attribute as you can see, so “loadOnce” is always false (modal.js line 105):Forum: Plugins
In reply to: [Modal Guten Block] Showonce not workingHello,
Again I encounter the issue on an other website.
Cookies are not disabled.
Here is my modal config:<!-- wp:bod/modal-block {"title":"Promotion","showOn":"load","showOnce":"yes","noShowDays":"7","showCloseBtn":"yes","btnCloseLabel":"Fermer","btnCloseAlign":"right"} -->
What is the name of the cookie ? I can’t see a cookie related to the plugin.
Thank youForum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Dropdown Place Holder@mhsohag11 Thank you. Didn’t work for me i had to change – with & #8212;
Forum: Plugins
In reply to: [Filter Everything — Product Filter & WordPress Filter] Select placeholderOops I find the answer on this page ?? :
https://www.ads-software.com/support/topic/remove-the-prefix-select-on-label/Sorry for disturbing, thank you again for this plugin
Same here… did you find any solution ?
Forum: Plugins
In reply to: [Custom Blocks Constructor - Lazy Blocks] Inner blocks in repeaterOk what a shame ??
Thank you for your answerGood job ????
Hello,
You could force the caption to be underneath with this CSS:.wp-block-getwid-images-slider .wp-block-getwid-images-slider__item figure { flex-direction: column !important; } .wp-block-getwid-images-slider .wp-block-getwid-images-slider__item figcaption { position: static !important; }
For you background problem try:
background: transparent !important
Instead of:
background-color: transparent !important
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Any known issues with recent WP 6 Update?Getwid is still not working well with Full Site Editing by the way…
Reported many times but nobody caresForum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Custom field as link on cpt queryThat’s not a solution because by doing like that you have to put the same html for every member, and if you want to change the markup in the future you have to change it everywhere…
What would be great is to allow to put PHP code in a file that would be loaded as getwid template in order to put such a code:
<ul><li><a href="<?php echo get_field( "facebook" ); ?>">Facebook</a>...</li></ul>
Currently I do that with the plugin “Lazy blocks”, I create blocks with PHP code and then I create getwid templates which use those blocks…
In my case the problem was only present on backend but not on frontend, due to wordpress 5.9.3 + Getwid. (that’s not the only bug which appeared since this wp version).
I don’t know Generatepress but if you also have that problem on frontend so indeed the theme should embed that css.Hey,
The issue is that your columns misse the css propertybox-sizing: border-box
.
Let’s say you choose 3 columns the column width will be 33.33% + padding left and right, so the column width is wrong and only 2 columns can be displayed in a row.
To solve that you must load a css file for the editor in your functions.php :
add_editor_style( array('css/css-file-for-editor.css') );
With the following css:
*, ::after, ::before { box-sizing: border-box }
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Any updates? or ending?Great, thank you eugene ????