This topic has 10 replies, 4 voices, and was last updated 8 years by lagodny.

  • Author
  • #112337
     lagodny
    Participant

    Hi SweetDate, thanks for the good work!

    Help me.

    incorrect title BuddyPress profile page

    (1) http://site.com/members/user/ –> “| SiteName” (correct “UserName | SiteName”)

    (2) and other links Profile (/profile/ /notifications/ /messages/ ….) displays post title from the blog

    SweetDate 2.9.1 everything worked correctly

    SweetDate 2.9.2-3 (with – Removed wp_title() because of wp 4.4 deprecation) – error

    Yoast SEO 3.1.1

    Help me please

    #112768
     Laura
    Moderator

    Hello, can you share admin credentials so i can check it out? 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #112826
     lagodny
    Participant
    This reply has been set as private.
    #112884
     lagodny
    Participant
    This reply has been set as private.
    #113196
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #113222
     lagodny
    Participant

    thanks, they have advised me to contact the support Yoast
    important: SweetDate 2.9.1 everything worked correctly

    #113266
     Radu
    Moderator

    Hi,

    I’ve tested and with SEO by Yoast plugin activated the username is missing form title tag, try to contact them and let him know about this issue.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #113778
     lagodny
    Participant

    Hi,

    I am using Plugin Organizer – https://wordpress.org/plugins/plugin-organizer/ to disable Yoast on BP Group / BP Members pages.

    !!question!!

    how to change the separator “-” to “|” in title for these pages?

    #113785
     Abe
    Keymaster

    You can add this function to your sweetdate-chil/functions.php file to override our theme default function

    COPY CODE
    
    function sweetdate_wp_title( $title, $sep ) {
        global $paged, $page;
    
        if ( is_feed() )
            return $title;
    
        // Add the site name.
        $title .= get_bloginfo( 'name' );
    
        // Add the site description for the home/front page.
        $site_description = get_bloginfo( 'description', 'display' );
        if ( $site_description && ( is_home() || is_front_page() ) )
            $title = "$title $sep $site_description";
    
        // Add a page number if necessary.
        if ( $paged >= 2 || $page >= 2 )
            $title = "$title $sep " . sprintf( __( 'Page %s', 'kleo_framework' ), max( $paged, $page ) );
    
        return $title;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #113786
     Abe
    Keymaster

    next week we will be adding support for title-tag in Sweetdate. See the link above on how to change the separator now and after:
    http://wordpress.stackexchange.com/questions/203279/how-to-change-the-seperator-in-the-title

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #113787
     lagodny
    Participant

    Дзякуй! (thanks!)

Viewing 11 posts - 1 through 11 (of 11 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?