bluesky10
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Plugin could not be activated because it triggered a fatal error.@maybellyne Marked this topic as resolved when the plugin is updated to the latest version which is 19.12 right after this was posted.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backup schedule stopped workingThe error message was gone the moment I modified /etc/hosts to include my server’s public IP hostname. I got the idea when another plugin displayed an error regarding curl 7 connection refused…
Forum: Plugins
In reply to: [Contact Form 7] 5.2 update broke recaptcha validation“Protected by recaptcha” now displayed on all pages unlike before that it’s showing only on the page that has forms.
functions.php
function oiw_load_recaptcha_badge_page() {
if ( !is_page( array( ‘contact’ ) ) ) {
wp_dequeue_script(‘google-recaptcha’);
}
}
add_action( ‘wp_enqueue_scripts’, ‘oiw_load_recaptcha_badge_page’ );// Deregister Contact Form 7 JavaScript files on all pages without a form
add_action( ‘wp_print_scripts’, ‘aa_deregister_javascript’, 100 );
function aa_deregister_javascript() {
if ( ! is_page( ‘contact’ ) ) {
wp_deregister_script( ‘contact-form-7’ );
}
}[17-May-2020 00:15:38 UTC] PHP Fatal error: require_once(): Failed opening required ‘/home/user/public_html/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php’ (include_path=’.:/opt/cpanel/ea-php73/root/usr/share/pear’) in /home/user/public_html/wp-content/plugins/wordfence/wordfence.php on line 66
Forum: Themes and Templates
In reply to: [OceanWP] Facebook Video Embeds not workingOn what browser? I experience that on Mozilla Firefox.
Forum: Themes and Templates
In reply to: [OceanWP] Accessibility Improvements RequestYou are my hero thank you very much!!! I am marking this as resolved as I can confirm the accessibility improvements in the latest update.
Forum: Themes and Templates
In reply to: [OceanWP] Wrapping the logo in a heading level 1 tagApparently I gave up too fast. The simple solution is to wrap only the the_custom_logo() and not bother to anything else. I don’t know if this is still the case if I change the header or the logo style.
Forum: Fixing WordPress
In reply to: Post navigation skipping some postThank you but that is not the latest post. I suspect the function get_the_modified_date() I added in the meta.php but I don’t know how it is the case. In Google I saw one similar question, but the suggestion is to change the timestamp which I did but the issue persists. I don’t know, I may have to let it be as it’s not that significant, but a user may miss the post and that’s not good.
Forum: Fixing WordPress
In reply to: Post navigation skipping some post@sterndata For example this post
https://www.blindstreet.com/binaural-podcast-headphones-required-first-episode/Hello let me try again as I really want to help…Check out this plugin I use called User Registration & User Profile – Profile Builder
https://www.ads-software.com/plugins/profile-builder/It is free and I remember there is an add-on available which extends the functionality a bit more.
Forum: Themes and Templates
In reply to: [Responsive] How do we change copyright text?The last time I did this – I edited the code manually as I didn’t see anything related in the customizer.
if ( ! empty( $responsive_options['copyright_textbox'] ) ) { esc_attr_e( 'Copyright © ', 'responsive' ); echo esc_attr( gmdate( ' Y' ) ); echo ' sample.com All rights reserved.'; echo esc_html( ' ' . $responsive_options['copyright_textbox'] ); } else { esc_attr_e( '© ', 'responsive' ); echo esc_attr( gmdate( 'Y' ) ); }
Try the plugin Learndash
https://wpengine.com/solution-center/learndash/I don’t have that plugin installed, but suggesting it thinking that that’s what you need.
Forum: Themes and Templates
In reply to: [OceanWP] Accessibility Improvements RequestJust to add and related to item number 2: Like in the single post navigation, I hope there is also a heading tag for the page navigation.
Forum: Themes and Templates
In reply to: [OceanWP] Mobile menu still appears on desktopHello. I marked this as resolved because when I changed the mobile menu style to dropdown from sidebar, the issue disappeared all of a sudden.
Never mind the item number 1 about the readmore tag. I now know the fix is in the excerpt option in the customizer.