Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
The bubble minimum size is imposed by Google Maps CSS inline and can’t be overriden.
To unlink the title please try this:
function my_remove_bubble_title($html, $postinfo_obj, $post_preview){ $srcharr = array("'", "/", "-", '"', '\'); $replarr = array("′", "⁄", "–", "“", ''); if (isset($postinfo_obj->post_id)) { $ID = $postinfo_obj->post_id; $plink = get_permalink($ID); $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); $link = '<a href="'.$plink.'">'.$title.'</a>'; $html = str_replace($link,"",$html); } return $html; } add_filter('geodir_custom_infowindow_html','my_remove_bubble_title',10,3);Let us know if it helped.
Thanks
Hi,
there is no central point for all CPT. You’ll find new listings in Draft status (so you can filter them too), in each CPT index.
A notfication about new listing submitted is sent to admin by default.
Thanks
Hi,
I’ve just re-tested this on 2 different websites and it works perfectly:
add_filter( 'login_url', 'my_login_page', 10, 2 ); function my_login_page( $login_url, $redirect ) { return geodir_login_url(); }I’ve added it to your website, cleared GD-Booster cache (given that we are testing as logged out users) and it is working on your website too.
Thank you
Hi,
is everything up to date? Please provide admin credentials.
Thanks
Hi,
at the moment there is no such counter…
You’ll have to create a custom widget or shortcode.
It shouldn’t be that difficult.
an generic example of the required code would be:
https://wordpress.org/support/topic/display-custom-post-type-post-count#post-2666625Hope this helps,
Thanks
I’ve tested on your live website (this one no longer works) and i can see the error. I’ve flagged this for the developers.
Thanks for your patience,
Hi,
there are still listings with wrong coordinates:
http://www.infolex.se/advokatbyra/stockholm/carat-advokatbyra-stockholm/ (midwest USA instead of Sweden)
http://www.infolex.se/advokatbyra/sundsvall/lindberg-advokatbyra/ (Netherlands instead of Sweden)
http://www.infolex.se/advokatbyra/vastervik/advokat-erik-jarnestrom/ (Finland instead of Sweden)
http://www.infolex.se/advokatbyra/norrkoping/advokatfirman-lennart-swahn/ (Norway instead of Sweden)
In home page at 1st page load, you can show either your default location (currently Norrköping, Östergötlands län, Sverige) or the everywhere location.
The only way to show only sweden listings in the home page, would be to only have listings in Sweden and use the everywhere location as default.
wp-super-cache and the other optimizing plugin are not compatible, only GD Booster is.
Please correct the listings and let us know how you went.
Thanks
and the link to test this is? 🙂
Hi,
this isn’t possible without custom code.
If you want I can move this in the jobs section of the forum.
Let us know,
Thanks
Hi,
there is no screenshot.
Thanks
Hi,
commas in descriptions are not problem at all.
If you need to do that, your are doing something else wrong.
If you use openoffice and set the right data separators and delimiters, it will not consider commas in a cell as a delimiter.
Thank you
Thanks for letting us know 🙂
Hi,
no it hides subcategories only. Those are parent categories, there is no option to hide the map category menu, the only way is via CSS. If you search in the forum you’ll find more than one topic about that.
Thanks
pls see: https://wpgeodirectory.com/support/topic/couple-of-issues-2/#post-67897
and please avoid opening multiple topics about the same question…
Thanks
1) require custom code and it should be adapted to what you already did. How did you add the listing details on the left? Difficult to tell if there is any easy way without checking your current settings/functions, but this is really beyond support, it is a customization.
What you could do is add it back below the title:
add_action( 'geodir_details_main_content','my_geodir_action_details_slider',30); function my_geodir_action_details_slider() { if ( has_post_thumbnail() ) { the_post_thumbnail(array(150, 150)); } }Then style it with css.
2 & 4) Add this in your custom css:
.geodir_lingue > ul {width: 80%;} ul.geodir-tabs-content li .geodir-company_info .geodir_lingue ul li {display: inline !important;float: left;margin: 0 0 0 4px;padding: 0;width: auto;} .geodir-tabs-content h2 {display: none;}Thanks
-
AuthorPosts