bayu-angora
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: About Query String On WordPress Search ResultFor SEO purpose, maybe there’s no advantage. But how about speed performance and server resource?
Now fixed with newest update. Thanks.
Updated but still not fixed. Still same as screenshot I posted above.
On desktop, it’s fixed without problem. But on mobile menu, I still can’t find it. I only find database menu (to clean up table) without submenu (to table detail).
Another plugin that I use along WP-Optimize is such Autoptimize, SEO Press, etc. I use those plugin for years without any problem. And I don’t know if it caused by plugin conflict or not.
- This reply was modified 5 years, 4 months ago by bayu-angora.
Forum: Fixing WordPress
In reply to: Default Unnecessary Code Still Appear On HeadersThough I moved the code to below, the unnecessary code still appear.
Forum: Fixing WordPress
In reply to: Default Unnecessary Code Still Appear On HeadersHere is my current code ->
<?php
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'wp_generator');
remove_action('wp_head', 'feed_links', 2);
remove_action('wp_head', 'feed_links_extra', 3);
remove_action('wp_head', 'wlwmanifest_link');
remove_action('wp_head', 'wp_shortlink_wp_head');
remove_action('wp_head', 'rest_output_link_wp_head', 10);
remove_action('wp_head', 'wp_oembed_add_discovery_links', 10);function jl_remove_post_dates() {
add_filter('the_date', '__return_false');
add_filter('the_time', '__return_false');
add_filter('the_modified_date', '__return_false');
add_filter('get_the_date', '__return_false');
add_filter('get_the_time', '__return_false');
add_filter('get_the_modified_date', '__return_false');
} add_action('loop_start', 'jl_remove_post_dates');function remove_prefix_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>';
}
return $title;
}
add_filter('get_the_archive_title', 'remove_prefix_title');function no_wp_logo_admin_bar_remove() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}
add_action('wp_before_admin_bar_render', 'no_wp_logo_admin_bar_remove', 0);function remove_howdy( $wp_admin_bar ) {
$my_account=$wp_admin_bar->get_node('my-account');
$newtitle = str_replace('Howdy,', '', $my_account->title);
$wp_admin_bar->add_node( array(
'id' => 'my-account',
'title' => $newtitle,
) );
}
add_filter('admin_bar_menu', 'remove_howdy', 25);function wpb_login_logo_url() {
return home_url();}
add_filter('login_headerurl', 'wpb_login_logo_url');
function wpb_login_logo_url_title() {
return 'Bayu Angora';}
add_filter('login_headertitle', 'wpb_login_logo_url_title');function wpb_login_logo() { ?>
<?php }
add_action('login_enqueue_scripts', 'wpb_login_logo');Can you help how’s the right code?
Just take a look here ->
https://pasteboard.co/IpiOhB9a.jpgForum: Plugins
In reply to: [SEOPress - On-site SEO] Advanced Options Seems Not WorkingI think it’s weird. Even after I disable dates on my website, Google still find it and appear on search engine result. By the way, thanks for support.
Forum: Fixing WordPress
In reply to: Disable Translation UpdateI removed all of language folder on wp uploads and now fixed. Thanks.
Forum: Fixing WordPress
In reply to: Disable Translation UpdateNo, I don’t use any translator plugin or feature from my theme. I think it’s a core feature, because everytime I visit update tab on admin dahsboard, there’s alaways translation update notification. And everytime I click update, the updated translation is almost from every language, not only in english.
Here is the path I mean:
public_html > wp-content > languagesCheck screenshot here:
https://i.stack.imgur.com/TpMm8.jpgNote:
My sql size is about 3 mb. And my database size is about 10 mb.- This reply was modified 5 years, 4 months ago by bayu-angora.
- This reply was modified 5 years, 4 months ago by bayu-angora.
- This reply was modified 5 years, 4 months ago by bayu-angora.
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Remove Dates From Search Engine ResultNoted. Thanks for great support. Keep your plugin fast and lightweight.
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Remove Dates From Search Engine ResultSorry. One more question about sitemaps.
On my sitemaps url here ->
https://angora.me/sitemaps.xmlThe sitemaps url for post and page changed from default to /sitemaps/post-sitemap1.xml and /sitemaps/page-sitemap1.xml
How to change back the url to default /sitemaps/post.xml and /sitemaps/page.xml?
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Remove Dates From Search Engine ResultApplied. Thanks for support.
Forum: Plugins
In reply to: [Autoptimize] Add Expires Headers To Autoptimize JSIt works. Thanks.
Forum: Themes and Templates
In reply to: [Boxstyle] Custom CSS Code For Boxstyle1. It works.
2. Opera Mini.
3. It only works for scroll up button. I mean, I want full bottom footer (that still light grey) become full white. Not only for scroll up button.Forum: Plugins
In reply to: [LiteSpeed Cache] Activate LiteSpeed And Cloudflare Without PluginDear @qtwrk
LiteSpeed cache on my homepage is active with hit status. But on another page, the status is not there. Is that mean installing LiteSpeed cache through htaccess limited for homepage only?