Giri

Forum Replies Created

Viewing 15 posts - 1,246 through 1,260 (of 2,661 total)
  • Author
    Posts
  • in reply to: Error in French translation #307527

    Giri
    Expired Member
    Post count: 3155

    Hi Pat, I have updated your translation here.

    https://wpgeodirectory.com/translate/projects/geodirectory/fr/default/?filters%5Bstatus%5D=either&filters%5Boriginal_id%5D=3609&filters%5Btranslation_id%5D=81199

    You can download the file once its approved by stiofan.

    Thanks

    in reply to: Error in French translation #307525

    Giri
    Expired Member
    Post count: 3155

    Hi Pat,

    You do have paid membership. So we are treating you like any other GD member. If you look at our support replies for other translation related threads, 99% of time you can see we link to the doc page.

    This is because we release updates often for our plugins and its not possible to translate our plugins in every update.

    Translating our plugins is a easy process.

    All you have to do is download poedit, open the french translation file in poedit, fix the string, save it and then upload it to your server.

    Sometimes support means assisting and pointing you in the right direction, instead of doing everything by ourselves.

    Let me know where you are having trouble and i’ll help you.

    Thanks

    in reply to: Error in French translation #307502

    Giri
    Expired Member
    Post count: 3155

    Hi Pat,

    As far as i know GD ships only with English language.
    Please refer this page for editing translation files.

    https://wpgeodirectory.com/docs/translate-core/

    Thanks

    in reply to: User Title #307497

    Giri
    Expired Member
    Post count: 3155

    Hi Ernest, can you try by disabling 3rd party seo plugins?

    Thanks

    in reply to: MightyMag Theme #306123

    Giri
    Expired Member
    Post count: 3155

    You are welcome. Let me know if you face any problem.

    Thanks

    in reply to: MightyMag Theme #306063

    Giri
    Expired Member
    Post count: 3155

    Remove my existing code and only add this line.

    remove_action('wp_print_scripts', 'geodir_core_dequeue_script', 100);
    in reply to: MightyMag Theme #306060

    Giri
    Expired Member
    Post count: 3155

    Give me 5 minutes. Let me take a look at your site.

    Thanks

    in reply to: MightyMag Theme #306058

    Giri
    Expired Member
    Post count: 3155

    Yes

    in reply to: Listing Page H1 #306035

    Giri
    Expired Member
    Post count: 3155

    Try this code

    
    
    function kleo_title()
    {
        $output = "";
    
        if ( is_category() )
        {
            $output = __('','kleo_framework')." ".single_cat_title('',false);
        }
        elseif (is_day())
        {
            $output = __('Archive for date:','kleo_framework')." ".get_the_time('F jS, Y');
        }
        elseif (is_month())
        {
            $output = __('Archive for month:','kleo_framework')." ".get_the_time('F, Y');
        }
        elseif (is_year())
        {
            $output = __('Archive for year:','kleo_framework')." ".get_the_time('Y');
        }
        elseif (is_search())
        {
            global $wp_query;
            if(!empty($wp_query->found_posts))
            {
                if($wp_query->found_posts > 1)
                {
                    $output =  $wp_query->found_posts ." ". __('search results for:','kleo_framework')." ".esc_attr( get_search_query() );
                }
                else
                {
                    $output =  $wp_query->found_posts ." ". __('search result for:','kleo_framework')." ".esc_attr( get_search_query() );
                }
            }
            else
            {
                if(!empty($_GET['s']))
                {
                    $output = __('Search results for:','kleo_framework')." ".esc_attr( get_search_query() );
                }
                else
                {
                    $output = __('To search the site please enter a valid term','kleo_framework');
                }
            }
    
        }
        elseif (is_author())
        {
            $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
            $output = __('Author Archive','kleo_framework')." ";
    
            if(isset($curauth->nickname)) $output .= __('for:','kleo_framework')." ".$curauth->nickname;
    
        }
        elseif (is_tag())
        {
            $output = __('Tag Archive for:','kleo_framework')." ".single_tag_title('',false);
        }
        elseif(is_tax())
        {
            $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
            $output = __('','kleo_framework')." ".$term->name;
    
        } elseif ( is_front_page() && !is_home() ) {
            $output = get_the_title(get_option('page_on_front'));
    
        } elseif ( is_home() && !is_front_page() ) {
            $output = get_the_title(get_option('page_for_posts'));
    
        } elseif ( is_404() ) {
            $output = __('Error 404 - Page not found','kleo_framework');
        }
        else {
            if (geodir_is_page('listing')) {
                ob_start(); // Start buffering;
                geodir_action_listings_title();
                $title = ob_get_contents();
                ob_end_clean();
                $output = $title;
            } elseif (geodir_is_page('author')) {
                ob_start(); // Start buffering;
                geodir_action_author_page_title();
                $title = ob_get_contents();
                ob_end_clean();
                $output = $title;
            } else {
                $output = get_the_title();
            }
        }
    
        if (isset($_GET['paged']) && !empty($_GET['paged']))
        {
            $output .= " (".__('Page','kleo_framework')." ".$_GET['paged'].")";
        }
    
        return $output;
    }
    in reply to: gd-login with buddypress #305976

    Giri
    Expired Member
    Post count: 3155

    Paolo I have added that action in our GD core too. So no need to move the file.

    Thanks

    in reply to: Cannot save event from admin it goes to http error 500 #305975

    Giri
    Expired Member
    Post count: 3155

    You are welcome 🙂

    in reply to: MightyMag Theme #305974

    Giri
    Expired Member
    Post count: 3155

    Hi I believe GD flexslider interfering with your theme flexslider.

    Please try by removing GD flexslider js using this code.

    
    
    add_action('wp_print_scripts','dequeue_gd_flexslider');
    function dequeue_gd_flexslider() {
        wp_dequeue_script( 'geodirectory-jquery-flexslider-js' );
    }

    Let me know.

    Thanks

    in reply to: gd-login with buddypress #305428

    Giri
    Expired Member
    Post count: 3155

    Hi Diane.

    Add this code to your child theme functions.php file.

    
    
    
    function gd_login_bp_error_message() {
        if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'bpnoaccess') {
            echo "<p class="error_msg"> You must log in to access the page you requested. </p>";
        }
    }
    add_action('geodir_login_error_messages', 'gd_login_bp_error_message');

    After that make sure to add this line

    
    
    
    <?php do_action('geodir_login_error_messages'); ?>

    In this file: wp-content/plugins/geodirectory/geodirectory-templates/login_frm.php

    Place that in between line no: 60 and 61

    https://github.com/mistergiri/geodirectory/blob/master/geodirectory-templates/login_frm.php#L60

    Let me know how that goes.

    in reply to: Cannot save event from admin it goes to http error 500 #304853

    Giri
    Expired Member
    Post count: 3155

    Hi I have applied the fix in your website. Now drop down displaying properly.

    Thanks

    in reply to: Listing Page H1 #304789

    Giri
    Expired Member
    Post count: 3155

    Your first listing title is displayed in the main title. We had this problem earlier. But we fixed that one.

    Can you make sure you have updated everything including the GD templates you copied in your theme.?

    Thanks

Viewing 15 posts - 1,246 through 1,260 (of 2,661 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount