tao7
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] amp errors in google consoleHi @ampforwp,
do you already have any update? Did you receive my mail? Because I did not hear anything until now.
Thanks!Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] amp errors in google consoleHi @ampforwp
I updated to the newest version and the issue was not solved by this. So sent you an email.
Thanks!Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] amp errors in google consoleHello @ampforwp,
no, unfortunately it is still not working. Tag-archives are working, Category-archives are still not working.
Thanks in advance!
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] URL not found in Google Webmastershi,
my problem is, that all the category-archive-pages are suddenly not found anymore (Error 404 is returned). But tag-archives are still working. Is this the same issue for you?Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] amp errors in google consoleFor me this is also happening. Category pages are not working anymore. But tag-archives are still working.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] GDPR compliant?Hi @ahmedkaludi,
did you have time to check if the sharing-buttons you use in the plugin are compliant with new GDPR? Or do you have an update whether this will be implemented?
Thank you!
TaoForum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] GDPR compliant?Hi,
for sharing apparently https://de.ww.wp.xz.cn/plugins/shariff/ – at least in the description they write that they are compliant with data protection policy.
And adding a setting to deactivate the using of the gravatar-user-image is probably a smaller enhancement.
Thank you!
TaoForum: Plugins
In reply to: [SEO Plugin by Squirrly SEO] Publisher in JSON LD missingAh – thanks a lot! I switched from Personal site to Organization and the errors are now gone!
Thank you!Hi,
I try to accomplish the same, but instead of the form fields I just get the shortcode displayed on the account-page:
[ultimatemember form_id=6600]
Do you have any idea where I went wront?The only thing I try to do is add a phone number field to account page, because that is the only field missing in account page, but therefore I don’t want to enable the profile page as this might confuse the user why everything can be edited in account page except for the phone number …
I also tried it the other way (see hook-function below), that looked nice, but didn’t work, as the field was not populated with the actual content and changes were not saved …
function um_account_content_hook_mytab( $output ){ ob_start(); ?> <div> <div class="um-account-heading uimob340-hide uimob500-hide"><i class="um-faicon-pencil"></i>Handynummer ändern</div> <div class="um-field um-field-mobile_number um-field-text" data-key="mobile_number"><div class="um-field-label"><div class="um-field-label-icon"><i class="um-faicon-mobile"></i></div><label for="mobile_number-6560">Mobilnummer</label><div class="um-clear"></div></div><div class="um-field-area"><input class="um-form-field valid " type="text" name="mobile_number-6560" id="mobile_number-6560" value="<?php get_user_meta( $user_id, 'mobile_number', true );?>" placeholder="" data-validate="phone_number" data-key="mobile_number"> </div></div> <div class="um-col-alt um-col-alt-b"> <div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="Handynummer aktualisieren" class="um-button"></div> <div class="um-clear"></div> </div> </div> <?php $output .= ob_get_contents(); ob_end_clean(); return $output; }It seems almost working … do you have an idea what is missing to get the phone number actually saved and displayed?
Thanks a lot!!!! 🙂
Forum: Themes and Templates
In reply to: [Resonar] Use FullScreenFeaturedImage on Blogpage for all postsHi Kathryn,
thanks a lot – I created a child theme for all the php- and css-adaptions.
But I did not find information what to do with functions.js-file … I think the best way would be to copy the file in the child-themes-folder? Do you have any information how this should be handled? I think the new functions.js-file would have to be embedded in functions.php-file?
Thank you!Forum: Themes and Templates
In reply to: [Resonar] Use FullScreenFeaturedImage on Blogpage for all postsActually I figured it out to use the post-load-event. I added this in functions.js and now it works:
$( document ).ready( function( $ ) {
jQuery( document.body ).on( ‘post-load’, function () {
sidebarSize();
fullscreenFeaturedImage();
bodyClasses();
bigImageClass();
toggleButtonTxt();
scroll();
});
});Thank you,
Lucia