Dademaru
Forum Replies Created
-
Hello @aqibkhan9,
I’ve tried Beta Version 3.0.2-beta.1 but I still get the same notice, with
WP_DEBUG
enabled.Even if
WP_DEBUG_DISPLAY
is disabled, PHP notices are filling debug.log, AJAX requests, and throwing elsewhere. You can see using plugin such as Query Monitor (I’m getting errors attaching the screenshot).I’m using WP 6.7.1 on PHP 8.2.27.
Thanks
- This reply was modified 1 month, 3 weeks ago by Dademaru.
Forum: Plugins
In reply to: [Giftable for WooCommerce] Template overrideHi @decomteam,
let’s forget the problem of adding CSS classes:
I just wondered if it was feasible for you to allow template override or at least add some hooks (apply_filters) for buttons or titles classes.
If there is no interest in this, no problem, I will add further CSS to format your plugin templates.As for removing actions with different priorities or other custom actions added, I didn’t get any response so I suppose it’s a NO.
Anyway thanks,
Best,
Davide- This reply was modified 6 years, 5 months ago by Dademaru.
Forum: Plugins
In reply to: [Giftable for WooCommerce] Template overrideHi @decomteam,
thanks for your reply.
The need to style buttons or titles was an example.
It would be great to override templates to customize the layout further.And for custom actions (or WC actions with different priority) I must override your plugin files (which is not update friendly).
Isn’t it possible to allow template override as for WC (or several other plugins)?
Or to add hooks (actions or filters) to customize templates without template override?Thanks,
DavideHi George,
sorry but it doesn’t work:
the form action URL is the page URL, in this case the home URL, which is ‘protected’ by WPMM and gives a 503 error for non admin / not logged in users.
If I add the home URL to the “Exclude list”, the maintenance mode plugin is useless…
Anyway I try to figure out another solution.
Thanks.It seems to have been fixed in version 3.1.4.
Just updated.
ThanksFor a temporary solution, add this to your
functions.php
:function dm_deregister_styles() { if ( class_exists('WC_Stripe_Apple_Pay') ) { wp_dequeue_style( 'stripe_apple_pay'); } } add_action( 'wp_print_styles', 'dm_deregister_styles', 100 );
Same issue.
This is a big UX issue affecting all websites using quantity buttons, making these websites not usable on iOS since it only displays minus button with width 100%.
I didn’t notice it when I’ve updated Stripe gateway plugin, since the style sheet with these rules isn’t loaded on Google Chrome responsive testing tool, only on Safari / iOS and I was notified by a customer unable to proceed.Please remove it ASAP.
Also, you should enqueue this style (stripe-apple-pay.css) ONLY if you choose to use Apple Pay! I’m not using it, but you load this style anyway.
Thanks
- This reply was modified 7 years, 11 months ago by Dademaru.
Forum: Plugins
In reply to: [qTranslate X] Issue with WPS Hide Login pluginHi John,
I’ve tried on a blank installation.
These are the settings:
WordPress Address (URL):https://mywebsite.com/wp
Site Address (URL):https://mywebsite.com
and permalinks structure with Post name:https://mywebsite.com/%postname%/
This is what I have in .htaccess
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
I’ve installed only WPS Hide Login with twentyfifteen theme.
I’ve sethttps://mywebsite.com/login/
and it works as expected.
I’ve installed qTranslate X, with Pre-Path Mode (also for default language).
If I try to go tohttps://mywebsite.com/login/
it redirects tohttps://mywebsite.com/en/login/
but inspecting the$_SERVER['REQUEST_URI']
I gethttps://mywebsite.com/en/en/login/
.
And it’s always a 404 page, can’t access to login.Hope this helps, you could reproduce the same I suppose since there isn’t any other plugin or custom settings.
Thanks
Forum: Plugins
In reply to: [Integrate Gravity Forms + Polylang] Fatal error class_GF_PLL.php on line 74Hi,
sorry for the late.
I had to switch to qTranslate for other reasons, so I removed all the Polylang plugins.
Hope to be able to test it again and let you know.Thanks
Forum: Plugins
In reply to: [Integrate Gravity Forms + Polylang] Fatal error class_GF_PLL.php on line 74Hi,
1.9.13.21, dev version
Forum: Plugins
In reply to: [Integrate Gravity Forms + Polylang] Fatal error class_GF_PLL.php on line 74Hi,
as reported on the right of this topic, WP 4.3.1.
ThanksForum: Plugins
In reply to: [Woocommerce Multiple Addresses] 2 issues I found on the edit addresses pageConcerning the first issue,
you should change line 480 in class-woocommerce-multiple-addresses.php
from
jQuery(".delete").live("click", function (e) {
to
jQuery(document).on("click", ".delete", function (e) {
as you have done for the other functions ??Thanks
DavideForum: Plugins
In reply to: [Woocommerce Multiple Addresses] 2 issues I found on the edit addresses pageHi,
I found same issues.
ThanksForum: Plugins
In reply to: [Multisite Language Switcher] Use trailing slash in home_url()Hi Dennis,
do you mean a pull request on Github?
I’ve changed home_url() to home_url( ‘/’ ) in MslsOptions.php, line 196 and 213.
The problem is fixed but editing core file it’s not update friendly ??Thanks
DavideForum: Plugins
In reply to: [Multisite Language Switcher] Can't connect / translate custom taxonomy termsHi Dennis,
sorry if insist on this, but your plugin is a crucial resource for managing a multilingual multisite ??
Let me knowThanks
Davide