Volkmar Kantor
Forum Replies Created
-
Forum: Plugins
In reply to: [Crop-Thumbnails] Crop doesn’t get saved@kevinbrands ,
sorry for letting you wait.Have you tried to do the Quick-Test from the settings page? Go to Settings > Crop-Thumbnails, then scroll down to “Plugin Test” and click on “Do plugin quick-test”.
There should multiple messages. The last one should call “Tests complete”.
Can you paste the result?I run into the same problem:
– error log with the error you posted
– backend setting page was not visible caused by an errorFixed it, by delete all the entries of the plugin inside the options-table:
This is how to view the entries (change the table name if you have a prefix):
SELECT * FROM wp_options WHERE option_name LIKE 'limit_login_%'
To delete all that entries (change the table name if you have a prefix):
DELETE FROM wp_options WHERE option_name LIKE 'limit_login_%'
The code that causes the error assume a certain structure in one of the option fields (limit_login_lockouts). I think its best to start with complete fresh options – so deleting all the options of that plugin is advisable.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Link to Privacy Policy in the bannerI am only on a single language page, but the links are also lost.
By the way it would be great to have “cookie-policy”, “impress” AND “privacy-policy” in the complianz-dialog.As it is needed in some countries, like germany, to always have these 3 pages available. As the complianz-dialog may overlap the footer-menu all 3 pages should be directly linked in the dialog (maybe customizable in the backend?).
- This reply was modified 3 years, 2 months ago by Volkmar Kantor.
Forum: Plugins
In reply to: [Crop-Thumbnails] Crop-Thumbnails working in theme customizeDo you see the apply_filters function below your code. You can add the functionality by your self in your theme without overriding any file from the plugin.
Have a look at the code: https://github.com/vollyimnetz/crop-thumbnails#filter-crop_thumbnails_activat_on_adminpages
Opened an Issue on github: https://github.com/Yoast/wordpress-seo/issues/17827
Opened an Issue on github: https://github.com/Yoast/wordpress-seo/issues/17827
I had a quick look at the line that is mentioned in the error log. The line uses your function “get_metabox_post” which might return null. So a check for null is necessary to make the code work.
You may change the line 154 in seo/src/integrations/third-party/elementor.php
from:
if ( ! $this->display_metabox( $this->get_metabox_post()->post_type ) ) {
to
if ( empty( $this->get_metabox_post() ) || ! $this->display_metabox( $this->get_metabox_post()->post_type ) ) {
But i do not know why the function returns null in the first place
@suascat_wp thanks for the reply,
1. Yes
2. Yes
3. Yes (running on v8.0)@mikes41720 @maybellyne so you wont handle the problem? I will create another entry. ??
@dreamermates nobody mentioned a bug report on github.
Forum: Plugins
In reply to: [Yoast SEO] Trying to get property ‘post_type’ of non-objectI added a new ticket trying to get the attention of the plugin author: https://www.ads-software.com/support/topic/php-notice-wordpress-seo-src-integrations-third-party-elementor-php-on-line-154/
Forum: Plugins
In reply to: [Crop-Thumbnails] Cropped Images not using standard srcsetHi @tokkilee ,
thats standard behaviour of wordpress. You may change that via a filter or action hook. Just google for “wordpress change srcset sizes”.The plugin do not change any of that behavior. In fact every time i uses custom image sizes i request the specific sizes directly.
Forum: Plugins
In reply to: [Crop-Thumbnails] Support on user edit screenHi @cantuaria,
you are completely right – the script is only added on the pages it is needed.But you may on what pages it is enqueued via action hook. Have a look here:
https://github.com/vollyimnetz/crop-thumbnails#filter-crop_thumbnails_activat_on_adminpagesForum: Plugins
In reply to: [Crop-Thumbnails] Cropping possible for one user but not another?!@marknjones its ok, will test the plugin with edge browser and call it a day.
Forum: Plugins
In reply to: [Crop-Thumbnails] Cropping possible for one user but not another?!Any updates on that topic?