did you checked this https://codex.ww.wp.xz.cn/Using_Permalinks
do you want a category to replace home page at luckyredinc.com?
No, originally when you scroll over the Categories tab you will see different categories underneath it.
But that # next to the URL seems to have completely stopped that function…
The permalinks doesn’t seem to be fixing the issue, thanks for helping out though 🙂
Here is part of the code from theme’s function.php
<?php if (ot_get_option('defmenu', 'on') == 'on') { ?>
<ul class='nav'>
<li><a href="<?php echo esc_url(home_url()) ?>"><?php _e('Home', 'arcade-puls') ?></a></li>
<li><a href="#"><?php _e('Categories', 'arcade-puls') ?></a>
<ul class="sub-menu">
<?php wp_list_categories('orderby=name&title_li='); ?>
</ul>
</li>
<?php $sharelink = ot_get_option('sharelink', 'on');
if ($sharelink == 'on') {
?>
<li><a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=300"><?php _e('Share', 'arcade-puls') ?></a>
<script type="text/javascript">var addthis_config = {"data_track_addressbar": false, ui_offset_top: -9999};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js"></script>
</li>
<?php } ?>
</ul>
<?php } else { ?>
<?php wp_nav_menu(array('theme_location' => 'primary','items_wrap' => '<ul id="%1$s" class="%2$s nav">%3$s</ul>', 'fallback_cb' => FALSE )) ?>
<?php } ?>
So the text string is there, but it’s wrapped in if else condition, so we don’t need to edit the string, we can just configure it in theme option page to not use default menu, then set up our own menu using WP menu setting page.