Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PageTitleSeoAdjustment.cs

namespace Nop.Core.Domain.Seo;

/// <summary>
/// Represents a page title SEO adjustment
/// </summary>
public enum PageTitleSeoAdjustment
{
    /// <summary>
    /// Pagename comes after storename
    /// </summary>
    PagenameAfterStorename = 0,

    /// <summary>
    /// Storename comes after pagename
    /// </summary>
    StorenameAfterPagename = 10
}