Simone
Forum Replies Created
-
AuthorPosts
-
Hello, yes it changed in the latest release.
Hello, add the attached file to your child theme folder, under the folder geodirectory (create it)
rename the file to .php
Hello,
you can use the following code inside your functions.phpadd_action( 'geodir_add_listing_page_title', 'geodir_add_listing_page_title_custom',10 ); function geodir_add_listing_page_title_custom() { global $wp, $term, $post, $current_term, $wp_query; $gd_post_type = geodir_get_current_posttype(); $post_type_info = get_post_type_object( $gd_post_type ); echo "List ".$post_type_info->labels->name; }
note the
echo "List ".$post_type_info->labels->name;
after the echo you can insert your own text, e.g.
echo "This is my custom text";
If you want to use the name of the current post type you can use
$post_type_info->labels->name
About your other questions, you can translate/rephrase the strings, using the .po file inside the language folder, more info here
http://docs.wpgeodirectory.com/translate-core/Hello, GD is using the email as username field..
you can however use a third part plugin for the registration / loginIn this case, you can use the following code in your functions.php to change the default login page to the new one
add_action('init' , 'geodir_redirect_to_default_login') ; function geodir_redirect_to_default_login() { if(isset( $_REQUEST['geodir_signup'])) { wp_redirect(home_url().'/login/'); exit(); } }
in this code, the default gd login page will be redirected to the new one in yourdomain.com/login
Hello, your csv is not correct, the column post_status is missing. use the attached, I used three of your listings (and it works)
Ahah.. I was kinda scratching my head since then 🙂
In this way I see it working, as the default ../images/featured.png is not longer active
I’m still seeing this path in your website
background: url(//domain.com/wp-content/themes/domain-child/images/featured.png) no-repeat !important;
and the image is taken from there, not from the default, i see “Destacada”
you can set the path to /images/featured.png
(just saw your css and you’re using the “long” path)
Hello, could you attach the csv?
Url and login details would be useful too, thanksApril 29, 2015 at 11:08 pm in reply to: Increase advance Search Width on Web Browser and Make Near me button bigger #38284This reply has been marked as private.Hi, I said Genesis Settings, the one you see in the left hand side of the backend, not the compatibility settings in GD.
Many themes (such avada) have their settings for the layout.
I don’t have a Genesis copy to test so I can’t really tell. You could leave your URL and login details in a private reply so we will check it out.Hello, frankly I don’t know Genesis, but please check in the Genesis settings, maybe there is some option for the layout that is overriding GD
April 29, 2015 at 10:32 pm in reply to: Increase advance Search Width on Web Browser and Make Near me button bigger #38279add
.geodir-search input[type="button"] { float: none !important; margin-left:auto !important; margin-right: auto !important; }
April 29, 2015 at 9:39 pm in reply to: Increase advance Search Width on Web Browser and Make Near me button bigger #38262add
select.search_by_post { width:100%; }
-
AuthorPosts