HI,
how to custom the tab, category and 404 page on the dashboard?
Thanks.
Rochelle
Hey zqmaqma,
To customize the dashboard, please try a plugin such as: Client Dash
Best regards,
Mike
Dear Mike,
Actually, I want to cusomize the help page like controlling the posts.
I want to customise the 404 page, Category Page and Tab page to good for SEO and users.
Thanks
Rochelle
Hi,
That is not supported yet from our theme. You would need to create a child theme and start modifying the pages from there.
Best regards,
Basilis
is there any possible way to change the post catagory link to one page url, which displayed on the breadbrumb navigation?
Hi,
To change the third link in the breadcrumbs to one of your choice,on all pages, no matter the category, Try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_breadcrumb_link(){
?>
<script>
jQuery(window).load(function(){
jQuery(".breadcrumb-trail").find("span:nth-child(6) a").attr("href", "http://www.google.com/");
});
</script>
<?php
}
add_action('wp_footer', 'custom_breadcrumb_link');
Please adjust the url to suit.
Best regards,
Mike