Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save imran-khan1/7ec86972e178e67576caaa872c57b74c to your computer and use it in GitHub Desktop.
Save imran-khan1/7ec86972e178e67576caaa872c57b74c to your computer and use it in GitHub Desktop.
<?php
//flatsome theme customize accounts area
function add_flatsome_account_links() {
$label = "My Test Link";
$endpoint = "test-endpoint";
?>
<li class="<?php echo wc_get_account_menu_item_classes( $endpoint ); ?>">
<a style="color: red" href="<?php echo esc_url( wc_get_account_endpoint_url( $endpoint ) ); ?>"><?php echo esc_html( $label ); ?></a>
</li>
<?php
}
add_filter('flatsome_account_links','add_flatsome_account_links');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment