Giri
Forum Replies Created
-
AuthorPosts
-
Hi Pat, I have updated your translation here.
You can download the file once its approved by stiofan.
Thanks
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
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
Hi Ernest, can you try by disabling 3rd party seo plugins?
Thanks
You are welcome. Let me know if you face any problem.
Thanks
Remove my existing code and only add this line.
remove_action('wp_print_scripts', 'geodir_core_dequeue_script', 100);
Give me 5 minutes. Let me take a look at your site.
Thanks
Yes
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; }
Paolo I have added that action in our GD core too. So no need to move the file.
Thanks
November 18, 2016 at 11:13 am in reply to: Cannot save event from admin it goes to http error 500 #305975You are welcome 🙂
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
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.
November 16, 2016 at 4:15 pm in reply to: Cannot save event from admin it goes to http error 500 #304853Hi I have applied the fix in your website. Now drop down displaying properly.
Thanks
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
-
AuthorPosts