- This topic has 2 replies, 2 voices, and was last updated 8 years, 8 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Home › Forums › Free Themes › Photo Perfect › How to chage the title of the Category menu
I want to change the title CATEGORY of the drop down menu at the top right side of the page. How?
Hello, @mileva_lukic
I want to change the title CATEGORY of the drop down menu at the top right side of the page. How?
To change title CATEGOTRY of the dropdown menu at the top right side of the page you need to do customization by creating child theme.
To create child theme reference here https://codex.wordpress.org/Child_Themes and don’t forget to activate child theme.
Now in functions.php of your child theme you need to add the following code:
function photo_perfect_add_category_navigation(){
$show_category_dropdown = photo_perfect_get_option( 'show_category_dropdown' );
if ( true !== $show_category_dropdown ) {
return;
}
?>
<div id="category-menu" class="clear-fix header-navigation">
<div class="container">
<button class="nav-list-btn"><i class="fa fa-list"></i><span><?php _e( 'Your text', 'photo-perfect' ); ?></span></button>
<div class="category-list-wrapper">
<ul>
<?php wp_list_categories( 'title_li=&depth=1' ); ?>
</ul>
</div><!-- .category-list-wrapper -->
</div><!-- .container -->
</div><!-- #category-menu -->
<?php
}
Hope this will help to resolve your issue.
Regards!!!
Thanks for the answer.
Best wishes!
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |