Xevo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Deprecated notice on PHP 8Hi @wpfleek,
I’m currently running PHP version 8.0.19 locally and on my staging.
Forum: Themes and Templates
In reply to: [OceanWP] Deprecated notice on PHP 8Also just noticed that if you don’t update the theme in the normal way, in my case I updated it through composer, the “Update and get the new Theme Panel” notice doesn’t disappear and cannot be dismissed.
For anyone else running into this issue, you can just disable the notices.
remove_action('admin_notices', 'ocean_oe_is_outdated_admin_notice'); remove_action('admin_notices', 'ocean_theme_is_outdated_admin_notice');
- This reply was modified 2 years, 6 months ago by Xevo.
Although you have now added a button to disable extendify, it does not remove the inline css. Since it is being added anonymously, it is almost impossible to remove too.
Forum: Hacks
In reply to: Remove Toolbar for all userBecause those remove the toolbar from the frontend, sounds like you want the one removed from the backend (admin)?
Forum: Plugins
In reply to: [WooCommerce] updated woocommerce plugin a my web is blankThe error you’re displaying is a problem caused by what is probably now a deprecated tag (not sure if it is deprecated) used in your theme. If you switch to a different theme the problem should dissapear.
Contact the creator of the theme for support.
Forum: Plugins
In reply to: Checking if a meta key value already existsI found the function metadata_exists, but seeing its new there’s no documentation or examples on it yet. Anyone used it yet?
I didn’t have that in my header, so when I tried this, it worked.
<?php if(is_singular()) wp_deregister_script('comment-reply'); ?>
You put me on the right track though, thanks. ??
Anyone? ??
Forum: Fixing WordPress
In reply to: Text ColorThis should help you on your way. ??
Forum: Fixing WordPress
In reply to: Text ColorYou could do it with some css.
#follow { display: none; }
Although, it’d be better if you just track it down in your theme and remove it there.
Forum: Fixing WordPress
In reply to: Text ColorUsually style.css in your themes folder.
Place it at the very bottom.
Forum: Fixing WordPress
In reply to: Text Color#navbar a { color: #fff }
Try that.
Forum: Fixing WordPress
In reply to: Show thumbnail in excerpt only?If you already know how thumbnails work, just use “the_post_thumbnail” on the index.php/home.php and on single.php don’t use it?
If you don’t know how the thumbnails work yet, read this.
https://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/Forum: Fixing WordPress
In reply to: Author First name in page titlePerhaps this will help?
https://www.ads-software.com/extend/plugins/edit-author-slug/
Forum: Fixing WordPress
In reply to: How to change a link in urlCreate a page called tribalfusion in the wp-admin?
If you set up right and the slug is tribalfusion, it should work.