Simone
Forum Replies Created
-
AuthorPosts
-
ops sorry, in my code just replace this
if ($claimed=="1")
with
if ($claimed !="1")
Add another } after the last }
…not helpful without knowing what’s the error 🙂
Hi, I’ve just created this function, add it in the functions.php file inside your child theme
add_action( 'geodir_detail_sidebar_inside', 'geodir_before_detail_page_review_rating_claim',1 ); function geodir_before_detail_page_review_rating_claim() { global $wp_query, $post; $postid = $wp_query->post->ID; $claimed= geodir_get_post_meta($postid,'claimed',true); if ($claimed=="1") {$myauthor = get_the_author(); $myauthorlink = get_author_posts_url( get_the_author_meta( 'ID' ) ).'?post_type='.$current_posttype; echo '<p>Author: <a href="' .$myauthorlink . '">' . $myauthor . '</a></p>'; } else { }
Ok, paste this into your functions.php (inside your child theme)
add_action( 'geodir_before_detail_page_review_rating', 'geodir_before_detail_page_review_rating_field',1 ); function geodir_before_detail_page_review_rating_field() { global $wp_query; $postid = $wp_query->post->ID; $custompost= geodir_get_post_meta($postid,'geodir_custompostname',true); echo $custompost; }
replace “custompostname” from “geodir_custompostname” (geodir_ must remain untouched) with the name of your custom field (you can find it in the HTML variable name, when you add/edit custom field from the geodirectory settings).
Hello,
1- this will require some customization and layout will be changed
2- same as above, but I think i can create a function for you
3- do you mean that the search is not searching for other keywords, included in the description or elsewhere in the listing?
Hello, you can set the GD Map with NO auto zoom, and set a zoom level in order to display all world
October 29, 2014 at 11:36 am in reply to: For the Search Bar – Have Drop Down List of Regions and Cities instead of typing #19945Hello Adrian, I don’t know if GD developer are in odesk or elance, this board would be the first place where to find gd developers.
forth other side, i think this is doable for developer good in js / php /mysql who can “read” the code 🙂I’ve alerted Stiofan
With the help of Stiofan, the issue seems to happens only when using Français, if you switch to English, all is working fine.
There is a plugin for the media, provided by WPML (it is called WPML Media) try to install it and see if it fixes the issue.
Ok, checked.
All the cities you add in the multilocation settings will be shown in the dropdown.
some of the Avada Settings are not available on GD, and the title is one of them because the childcare page isn’t a WordPress page (handled by Avada)
I tried to set Georgia as region, and on mobile I see the cities: Alexandria, Alringhton, Baltimore, Barren and Boston rather than LaGrange and S. Simon Island (on desktop). I will notify Stiofan about this.
About the cities in your second question, could you check if these cities are the one you added in the MultiLocation settings ?
Unfortunately no, for example, the “find childcare” button is using the class named “geodir_submit_search” while the Advanced Search button is using “showFilters” class.
Once you create your style, it’s just a matter of copy-paste in your style.css, for each classHello, you install it as a normal WordPress plugin (indeed it is).
-
AuthorPosts