Kor
Forum Replies Created
-
AuthorPosts
-
Hi Akshay,
If you’re not familiar with SEO, I suggest that you leave it as it is. Or, if you’re thinking to improve your Website in terms of SEO, this plugin https://wordpress.org/plugins/wordpress-seo/ should help. Well, give it a try and let us know how it goes.
Thanks!
This reply has been marked as private.Hi Beatrice,
If you did not apply any customizations to the theme using custom code, you’ll be fine. Just update the theme by replacing the theme files directly through FTP or use a plugin to help you with this. https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/
Thanks!
Hi Rachida,
Could you please double check on the credentials? It seems invalid as I’m getting “ERROR: Incorrect username or password.”
Thanks!
Hi Rutvik,
Do you think you can share WP temp admin access to your site so we can take a better look? You can post the details here using the private reply option below.
Hi Fabienne,
I don’t think we can create a Google API key for you as we couldn’t get past the Google Verification http://prntscr.com/cvdz10 . You’ll have to follow the instructions using this link https://wpgeodirectory.com/docs/add-google-api-key/
Thanks!
Hi iwoaw,
Could you tell us a little bit more about what you’ve done there? What code did you use in your attempt? Also, I’d like you to check out this section of the documentation and see if it helps. https://wpgeodirectory.com/docs/redirecting-the-login-page/
Thanks!
Hi vegeta720,
Unfortunately, this requires customization to the SD child theme which falls outside the scope of what we offer for support. Another workaround would be to manually create the pages and use shortcodes to display listing, maps and etc . Check out this doc https://wpgeodirectory.com/docs/core-shortcodes/
Thanks!
Hi there,
To increase the listings, Go to settings >> reading and increase the max number of post per page.
Thanks!
Hi Marco,
Do you mind sharing the URL of the site in question so we can take a look? Also, please share WP temp admin access to your site so we can check the code. You can post the details here using the private reply option below.
Thanks!
Hi iwoaw,
Do you think you can share WP temp admin access to your site so we can take a better look? You can post the details here using the private reply option below.
Thanks!
Hi Dan Keenan,
If you would like to display a 3rd party shortcode in a custom field, you’ll have to apply the script below into your Website. Add this code in via plugin https://wordpress.org/plugins/code-snippets/ OR by adding code in your theme functions.php .
function my_enable_shortcodes_in_cf($html,$location,$cf){ // this line will enable it only for a text input with html var 'textx' if(isset($cf['htmlvar_name']) && $cf['htmlvar_name']=='geodir_textx'){ $html = do_shortcode( $html ); } return $html; } add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3);
Furthermore, if you would like to use shortcodes in a “Textarea”, replace the code as shown below.
Replace
add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3);
With this
add_filter('geodir_custom_field_output_textarea','my_enable_shortcodes_in_cf',15,3);
Thanks!
Hi Terry,
I’ve just checked your Website and I’m able to see the issue there. Could you try changing the background color to white so that the black color font will be more visible? Insert into Gd > Design > Script > Custom Style CSS. Check out this section of the documentation for more info https://wpgeodirectory.com/docs/customizing-your-style/
#page-container { background-color: #fff; }
Thanks!
Hi yeeloon,
Check out this documentation as it explains how to convert from Geotheme to GD. https://wpgeodirectory.com/docs/geotheme-to-geodirectory-conversion-tutorial/ . Well, let us know how it goes or if it helps.
Thanks!
October 17, 2016 at 8:17 am in reply to: Show Author on Listing Archive and Search results pages #285587Hi Roman,
Could you try using the code below and see if it’s what you’re looking for? It should display an author link on the listings page. Add this code in via plugin https://wordpress.org/plugins/code-snippets/ OR by adding code in your theme functions.php .
/***** CODE STARTS HERE *****/ // Display listing author on listing pages. function geodirectory_author_link_on_listings_page( $post ) { if ( !empty( $post ) && !empty( $post->post_author ) && geodir_is_page( 'listing' ) ) { $author_link = get_author_posts_url( $post->post_author ); $author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true', 'stype' => $post->post_type ), false ); echo '<div style="clear:both;" class="geodir_more_info geodir-author-link"><i class="fa fa-user"></i> <span>' . __( 'Author:', 'geodirectory' ) . '</span> <a href="' . $author_link . '">' . get_the_author() . '</a></div>'; } } add_action( 'geodir_before_listing_post_excerpt', 'geodirectory_author_link_on_listings_page', 10, 1 ); /***** CODE ENDS HERE *****/
thanks!
-
AuthorPosts