Guust
Forum Replies Created
-
AuthorPosts
-
May 4, 2016 at 7:35 am in reply to: Install the parent theme, genesis, before you can use this child theme. #184655
On the themes page at https://wpgeodirectory.com/downloads/category/themes/ it is explained which themes are included and which ones are child themes for another theme.
For example, your membership includes Whoop, Directory Starter and GDF framework, and the child themes for these.
You can use any of these at no extra cost.Sorry if that is confusing, and discounts for third party software are not included.
We suggest you add the GD login widget to your pages, then all links will be automatically created.
Try the demo at http://wordpressmu-3822-8567-17899.cloudwaysapps.com/try-geodirectory/ or have a look at http://wpgeo.directory/You must follow the correct links, every CPT has its own Add Listing page.
You are looking for /add-listing/?listing_type=gd_eventHave a look at GD > design > navigation. Are you allowing users to add Events?
Normally you have to do nothing else for any of the themes available in the compatibility settings.
There are quite a few users who use Avada with GD, here is at least one example I can think of straight away: http://openmindtrips.com/
You were not allowing Events to be added by users at
GD> design > navigation > Allow post type to add from frontendPlease check now and review your other settings on that page. Events is missing from some other options too.
Thanks Paolo 🙂 !
That might have something to do with your right to left setting.
I’ll get Paolo to have a look.Hi Victor, yes this is something to take up with your web host.
You can target the map with a media only query, see http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
Without seeing the page where you want the map to be deleted on mobile view, that is the best advice we can give.
You cannot have different times for the same event, you can only achieve that by creating another event.
Let’s wait for Paolo for question 7.
Apps for GD are in development for the moment, but no intended date for release has been set yet.
Your site does not allow anything to be navigated without logging in?
Can you post admin details please.I am guessing you made an error with the lat and lng of the listings.
I’ll get Paolo to have a look at point 7 for the CSS.
0. Make sure to update to the latest versions, we only support the current versions because they have all the latest bug fixes, and are guaranteed to work well together.
1. You can change Add Listing in the core language file; look for Add %%pt_single%%
To check your social importer translations we would need FTP details after you updated all plugins.
2. They should be redirected to the page where they choose to register. But that can be changed with some third party redirect login plugin you might find on the wordpress site.
3. Just change the slug of the Add Listing page in WP Pages.
See point 2 of the introduction here: https://wpgeodirectory.com/docs/layout/#intro4. When changing event dates, you will also need to change or confirm the times. That is the only option.
5. That means you must have missed a step when setting up the FB app.
6. You have removed the Reviews tab at GD > design > detail > Exclude selected tabs from detail page
Change that.7. See here for translating the days for the calendar:
https://wpgeodirectory.com/docs/translation-faqs/I am struggling with the CSS to get the 7 days to show without changing the sidebar width.
I added some starting CSS to GD > design > script8. Best to use the GD Login widget for login and logout.
I’ll get Paolo to have a look at point 7 for the CSS.
The CSS looks fine for me.
span[itemprop="addressCountry"], span[itemprop="addressRegion"] {display:none;}To re-organise the address components, add the following to your functions.php file.
add_filter('geodir_show_post_address', 'geodir_change_address_order' , 100 , 2) ; function geodir_change_address_order($html , $vars) { global $post, $preview, $wpdb; $field_icon=''; if (strpos($field_icon,'http') !== false) {$field_icon_af = '';} elseif($field_icon==''){$field_icon_af = '<i class="fa fa-home"></i> Adresse';} else{$field_icon_af = $field_icon; $field_icon='';} if(!$preview) { $html = '<p class="" style="clear:both;" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">'; $html .= '<span class="geodir-i-location" style="'.$field_icon.'">'.$field_icon_af; $html .= ' '; $html .= '</span>'; //print_r($_POST); if($post->post_address){ $html .= '<span itemprop="streetAddress">'.$post->post_address.'</span><br>';} if($post->post_zip){ $html .= '<span itemprop="postalCode">'.$post->post_zip.'</span> ';} if($post->post_city){ $html .= '<span itemprop="addressLocality">'.$post->post_city.'</span><br>';} if($post->post_country){ $html .= '<span itemprop="addressCountry">'.$post->post_country.'</span><br>';} $html .= '</p>'; } return $html ; } -
AuthorPosts