Paolo
Forum Replies Created
-
AuthorPosts
-
November 10, 2014 at 8:16 pm in reply to: Shifting Featured Logo to Right in Listings Results #21115
Hi,
.geodir_category_list_view li .geodir-post-img { float:right !important;}this should do it, than you’ll need to re-adjust margins.
Thx
Hi,
you have this css rule that forces it to 1100px
#header-sticky .avada-row, #header .avada-row, #main .avada-row, .footer-area .avada-row, #slidingbar-area .avada-row, #footer .avada-row, .page-title, .header-social .avada-row, #small-nav .avada-row, .tfs-slider .slide-content-container .slide-content { max-width: 1100px; }Nothing to do with GD though.
Thx
hi,
removing the 1st widget in your home content section (which was calling Places that you are not using and had no categories) solved the problem.
Thx
Hi,
you should try
function geodir_get_post_info($post_id = '')The function is in post_functions.php line 414
Let us know,
Thx
Yes, in most servers GZIP will definitely help with page loading speed.
However in some server with very low resources, it will take more time to compress it, that the time saved because of smaller files download.
My answer is, 99% of the time yes, but with low end server it could even slow it down.
thx
Hi,
Guust suggestion is correct, but not knowing which image you were talking about, he gave you hte wrong css selector.
It should be:
.geodir_flexslider .geodir-slides img {image-rendering:optimizequality;}Thx
Yes it is possible and it was exaplained how to here: https://wpgeodirectory.com/support/topic/exclude-selected-tabs-from-detail-page-if-empty/#post-7305
Thx
p.s. to find that post you just needed to search for : “reorder tabs”
here in the forum.
🙂
November 10, 2014 at 5:11 pm in reply to: Multisite installation, will it break things right now #21101Hi,
other than being fundamental for many of our customers, it is something that is really urgent for GeoDirectory too.
Until the plugin isn’t multisite, we are unable to provide a sandbox demo for all addons to test the plugin before buying it, which could be a deal breaker for some and we definitely don’t want that.
Thx
p.s. at 1st I misunderstood your question.
My bad…
ThxHi Steve,
in the website where it doesn’t work you are using the wrong map.
That’s the home map, you should be using the listings map.
Thx
Hi,
that is not a current option and would require a customization.
Thanks
Hi, Definitely you can’t install in a directory using the same name of 1 of the virtual pages.
Thx
Hi,
listing description will be the default wordpress API for post description.
<?php the_content(); ?>While for the post thumbs will be:
<?php $post_images = geodir_get_images($post->ID,'thumbnail'); $thumb_image = ''; if(!empty($post_images)){ foreach($post_images as $image){ $thumb_image .= '<a href="'.$image->src.'">'; $thumb_image .= geodir_show_image($image,'thumbnail',true,false); $thumb_image .= '</a>'; } } echo $thumb_image;?>For reference, these can be found in “function geodir_show_detail_page_tabs()” in “custom_functions.php” file starting from line 842.
Thx
November 10, 2014 at 4:41 pm in reply to: Multisite installation, will it break things right now #21089Hi,
the problem is due to some database tables not having the wp_ prefix.
I’m not 100% sure, but I don’t think it matters if it is activated on the main site or on any subsite. I’m almost positive it will not work proerly.
Thx
Hi Krischin,
GeoDirectory without googlemaps isn’t really usable at the moment.
Remove that call wouldn’t be so hard, but making all the rest work without it, would require rewriting several part of the plugin.
It’s not only the detail page that will not work properly.
Also search and add listing form will result broken.
How do you want to use the plugin, without the maps?
What is an laternative to googlemaps in China? Do they have API?
Let us know,
-
AuthorPosts