Kor

Forum Replies Created

Viewing 15 posts - 14,161 through 14,175 (of 15,414 total)
  • Author
    Posts
  • in reply to: Titles and Metas #286437

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Request denied #286434

    Kor
    Moderator
    Post count: 16516
    This reply has been marked as private.
    in reply to: Buddypress Integration add-on #286433

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Maps or default location not working #285847

    Kor
    Moderator
    Post count: 16516

    Hi Rachida,

    Could you please double check on the credentials? It seems invalid as I’m getting “ERROR: Incorrect username or password.”

    Thanks!

    in reply to: Cannot Set my default location #285844

    Kor
    Moderator
    Post count: 16516

    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.

    in reply to: Request denied #285799

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Login redirect issues with BP #285795

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Supreme Header Background #285794

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Listing page Default entries #285710

    Kor
    Moderator
    Post count: 16516

    Hi there,

    To increase the listings, Go to settings >> reading and increase the max number of post per page.

    Thanks!

    in reply to: geodir_show_listing_info function changed #285699

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Latest Post Widget, WPML, GD not playing nice #285698

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Using other shortcodes inside Place Custom Fields #285658

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Change Page Background Color #285651

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: A copy of Geotheme 3.7.1 #285645

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Show Author on Listing Archive and Search results pages #285587

    Kor
    Moderator
    Post count: 16516

    Hi 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!

Viewing 15 posts - 14,161 through 14,175 (of 15,414 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount