Becki Beckmann
Forum Replies Created
-
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] absolute path issueif it’s urgent use this workaround -> in the database wp_options there’s an entry called ‘backwpup_jobs’.
it’s a serialized php string. unserialize this string. modify value ‘backupdir’ with the path to your backup folder. then serialize the string again and update the database.
best keep a backup of the ‘backwpup_jobs’
https://onlinephp.io/unserializeuse at your own risk and don’t update the job backup dir option via the web interface as it will revert back to relative path
greetings
BeckmannHey @srafiz
thanks for pointing me to the proper hook.
wasn’t aware of the filter ‘register_post_type_args’thanks
& greetings
BeckiForum: Plugins
In reply to: [WordPress Filter Gallery Plugin] Filter as Select Dropdownthanks Faraz,
will have a look at the plugin you suggested.
all the best
BeckiForum: Plugins
In reply to: [Passwords Evolved] Action hook to disable feature Have I been pwned? API.Hello Carl,
thanks for your reply. Yes, your plugin works fine.
I just would have liked a hook to disable the 3rd party pwned feature.Like I said earlier: only because of security concerns as my client doesn’t want to use this feature.
But I have already switched to another 2-factor auth plugin so there is actually no more need.
thanks again
& keep up the good work.Greetings
BeckiThanks again! That one did the trick.
Badges showing up again.
Best regards
BeckiHell there again,
was the recent 2.0.1 supposed to fix this problem?
Just asking because I updated the plugin but the problem still exists.
Badges don’t show up
thanks again
& wishing a merry christmasbest regards
BeckiThanks ??
ups … sorry … wanted to submit a support ticket and ended up in the review section.
please delete this post.
thank you
Becki- This reply was modified 2 years, 11 months ago by Becki Beckmann.
Hello again,
I had a look in your code a while back looking how to hide ‘Verification Status’ column in the WP admin user listing. The columns were added via filters but while trying to un-hook those filters another problem with anonymous class / object came into focus.
So with a bit of google the following code does the job.
But it would be better to change your code to not initiate an anonymous object. Perhaps you can look into this when working on a future update?
thanks again
& best regards
Becki/** * here we want to remove the columns in the user listing wordpress admin * plugin user verification adds those columns 'Verification Status' Verified | Unverified * * The problem * With WordPress API, you can't remove the filter my_action because MyClassA and MyClassB don't have a variable! * The right way to load class is : $my_class_b = new MyClassB(); * * also see /inc/wp-filters-extra.php * * @link https://github.com/herewithme/wp-filters-extras */ remove_filters_for_anonymous_class( 'manage_users_custom_column', 'class_user_verification_users_columns', '_users_columns_display', 10 ); remove_filters_for_anonymous_class( 'manage_users_columns', 'class_user_verification_users_columns', '_users_columns', 10 ); //remove_filters_with_method_name( 'manage_users_custom_column', '_users_columns_display', 10 ); //remove_filters_with_method_name( 'manage_users_columns', '_users_columns', 10 );
Forum: Plugins
In reply to: [Shariff Wrapper] Filter to add class to svg element to track button clickHello again,
GTM has the option to do click tracking via click elements and matching CSS selectors. this way there’s no need to add an additional class to svg element.
please consider this topic as resolved ??
thanks again for such a great plugin!
greetings
BeckiHi @alexius08,
thanks again for your reply & help guding me to the proper information.
your help is much appreciated!I will look into it later but consider this topic resolved.
thanks, greetings
& keep up the good work you’re doing
BeckiHello @alexius08,
thanks a lot for your reply ??
I will have a look into the hook you provided. Does this hook only load the CSS or also the javascript needed?
For example, I use the content toggle block and also the progress bar block. when using these blocks some additional javascript is loaded:
/wp-content/plugins/ultimate-blocks/src/blocks/content-toggle/front.build.js
/wp-content/plugins/ultimate-blocks/src/blocks/progress-bar/front.build.jshow can I load the necessary javascript?
As a workaround I just copied the content of the page used in the one-pager section into the content of the one-pager page.
this one-pager page uses a special frontpage template to render the one-pager with all its sections.
the content of the one-pager page itself never gets displayed. But this way ultimate blocks will inspect the content and load the CSS and JS.
But it’s not a nice solution as I always need to copy between pages when updating content.
there must be a more elegant solution?
anyone?
thanks & greetings
BeckiHello @gabyimagely,
thanks for the quick fix! Applied, tested and it is working ??
perhaps the dev team will be able to also fix the attach-to-post popup in a future release? that would be awesome!thanks again & greetings to you & dev team for your time, help & service
BeckiHello @gabyimagely ,
thanks for getting back on that issue.
looking forward to some feedback from the dev team.greetings
BeckiHello again ??
just to make things sure I reproduced this behaviour on another server. It’s also an OpenSuse 15.1 Box with PHP 7.2.5
Running the latest wordpress 5.3.2 with standard theme twenty sixteen and latest nextgen gallery 3.2.23 which is the only plugin being activated.
then I went into theme twentysixteen functions.php and modified function code to force an error function_exists(…) -> function_exists123(…)
refresh the page and voila … php error displays right in the web browser.
Error thrown Call to undefined function function_exists123()
even though php.ini states display_errors = off. Also apache does not report a 500 fatal error. just a 200 OK
79.242.28.21 - guest [02/Feb/2020:10:01:25 +0100] "GET / HTTP/2.0" 200 75 "https://wpdev.beckspaced.com/"
once i de-activate nextgen gallery plugin all is back to normal.
no php error messages in the browser.
apache gives a 500 error
79.242.28.21 - guest [02/Feb/2020:10:19:57 +0100] "GET / HTTP/2.0" 500 2850 "https://wpdev.beckspaced.com/"
and the php error shows up in the logs
[02-Feb-2020 09:20:45 UTC] PHP Fatal error: Uncaught Error: Call to undefined function function_exists123() in /.../.../functions.php:35
As nextgen gallery states php 7.3 in the requirements I also installed php 7.3.14 on the server with the exact same results.
perhaps someone can look into this? I would be more than grateful ??
thanks a lot for your help
greetings
Becki