Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author SolaPlugins

    (@solaplugins)

    Hi there.

    The plugin takes the default registration page for that link. This can be changed in the code by going to ‘sola-support-tickets’ -> ‘sola-support-tickets.php’ and scrolling down to line 1995.

    Does this help?

    Thread Starter kfarrant

    (@kfarrant)

    Not really. Sorry I am new to this.

    Line 1995:

    ” . __(“Log in”, “sola_st”) . “ ” . __(“or”, “sola_st”) . ” ” . __(“register”, “sola_st”) . “ ” . __(“to submit a support ticket.”, “sola_st”) . “

    “;

    How do I add my URL to my log in / register page?

    Plugin Author SolaPlugins

    (@solaplugins)

    Hi there.

    When going to line 1995 and 1996, you’ll find the following code:

    $content = "
                    <a href=\"" . wp_login_url(get_permalink()) . "\">" . __("Log in", "sola_st") . "</a> " . __("or", "sola_st") . " <a href=\"" . wp_registration_url() . "\">" . __("register", "sola_st") . "</a> " . __("to submit a support ticket.", "sola_st") . "
                    <br /><br />";

    You can replace your login and register URLS where you see ‘https://mywebsite.com/login&#8217; and ‘https://mywebsite.com/register&#8217;

    $content = "
                    <a href=\"https://mywebsite.com/login\">" . __("Log in", "sola_st") . "</a> " . __("or", "sola_st") . " <a href=\"https://mywebsite.com/register\">" . __("register", "sola_st") . "</a> " . __("to submit a support ticket.", "sola_st") . "
                    <br /><br />";
    Thread Starter kfarrant

    (@kfarrant)

    That worked.

    Thank you.

    Plugin Author SolaPlugins

    (@solaplugins)

    So glad to hear! Only a pleasure.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Login / register’ is closed to new replies.