Chris Clinton
Forum Replies Created
-
AuthorPosts
-
Thanks. I will get it rolling this weekend and keep you posted.
Guust,
I am interested in the Custom Google Maps addon. However, I didn’t see the overlays listed as a feature. I also didn’t see anything stating that the add-on included all features of the Google map development cycle. If this is the case, I would be happy to purchase that addon.Kor,
The page is http://sunprairiemoves.org/location/
I am going to hold off on the access until I find out more about the Custom Google Map add-on.I looked into the breadcrumb code and decided not to change it fearing a change in the theme might cause a future glitch. Plus, any future updates of the app would require that I go back in and mess with the templates and code again.
Instead, I used the GD>Advertise widget to create a button in the right sidebar that linked back to the primary (home) map page. I put the code in both the detail and the listing page and all is good.
Thanks again and you can definitely call these issues resolved.Well, Issue 1 is resolved. I am still looking into how to modify the breadcrumbs to show the home page instead of the primary listing archive page (Issue 2). I’ll keep plugging away and let you know if you find a solution.
And thanks so much for all your help and suggestions.
I do see that the body does include a class of ‘post-type-archive-gd_place’ and the single listing includes ‘single-gd_place’. So I added some CSS in the child theme to make the title container disappear on those pages:
/* hides Archive title section on GeoDirectory listing pages */ .post-type-archive-gd_place .header-post-title-container { display: none; } .single-gd_place .header-post-title-container { display: none; }
Figured I would load this here in case anyone else has the same issue with their theme.
I was just looking at the demo site for GeoDirectory and noticed the H1 doesn’t even exist on the listing pages. However, it does exist on the one post page Hello World. That looks like you guys did something special with your theme and that I won’t be able to do anything because of the theme I am using.
So, I am digging into your theme same code and mine to see if I can make something change in my child theme header.
I just checked and I only added the category description to the H1 code in the Header.php file.
Here’s the original H1 code from the Spacious theme:<div class="post-title-wrapper"> <?php if( '' != spacious_header_title() ) { ?> <h1 class="header-post-title-class"><?php echo spacious_header_title(); ?></h1> <?php } ?> </div>
And here is the same area in my child theme:
<div class="post-title-wrapper"> <?php if( '' != spacious_header_title() ) { ?> <h1 class="header-post-title-class"><?php echo spacious_header_title(); ?></h1> <?php echo category_description( $category_id ); ?> <?php } ?> </div>
I wouldn’t think adding a line for the description would change the code enough to cause a glitch in the H1 titling of the plugin. Thus, I am assuming it is either something else or the theme is breaking the plugin.
I understand. Thanks for taking a look.
This reply has been marked as private.I’ll work on the plugins and if that doesn’t work, I will send some other details.
Thanks.Oh, as an aside, I am using Spacious as the theme and running a child adaption.
This reply has been marked as private.I added the code in the GD scripts footer section and deactivated the Headers and Footers plugin. No change, the listings pages still show Archives.
On Issue 2, I think I can added the template to my child theme and change out the php to swap the listing home page for the location home page. I saw a hint that pointed to this page which gave me the idea. https://wpgeodirectory.com/docs/customizing-geodirectory-templates/
Issue 1
Thanks. Looks like I missed that when looking at the widgets.As to the Archives title, I am not sure what you mean by DEO plugin. Maybe you are referring to SEO and I don’t have any on my site at the moment. I am using Insert Headers and Footer to place Google analytics in my footer but no SEO.
Issue 2
Is it possible to change the main listings page link in the navigation to the home page? I wasn’t able to find links anywhere in the settings for the listing pages to take the user back to the home page.Thank you. That is working perfectly.
I did solve my problem with smaller size images.
-
AuthorPosts