kenoby
Forum Replies Created
-
Forum: Reviews
In reply to: [Rife Free] Incredible designSome of the header features and second menu placements for example.
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Category in Theme metaI find right combination to show bgmp-category under title, replacing get_the_category_list(‘, ‘, ”) with get_the_term_list(get_the_ID(), ‘bgmp-category’, ”, ‘, ‘, ”) in my meta box function…
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] Add KMLLayerProblem is when put map in any Tab shortcode. But without tabs work nice. If there not have any conflict as described in your FAQ section.
With code above need to add:$.bgmp.map = undefined; $.bgmp.ctaLayer = undefined;in // Initialize variables. Both in functions.js
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] custom icon size?Yes, there are same question with different solutions. Here is what works for me – https://ww.wp.xz.cn/support/topic/icon-sizes
My line 2517 is little long from example, but after replacing work perfect…Forum: Themes and Templates
In reply to: [Catch Everest] Add logo next to titleI’m sorry that I missed details …
The table code I added to header.phpForum: Themes and Templates
In reply to: [Catch Everest] Add logo next to titleI also try to modify css, but without success…
Finally, i use a old school method with table 🙂 and add this code:<?php do_action( 'catcheverest_before_hgroup_wrap' ); ?> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td><div align="center"> <img src="http://yourdomain.com/your-logo.jpg" border="0" /> </div></td> <td><div id="hgroup-wrap" class="container" align="center"> <?php do_action( 'catcheverest_hgroup_wrap' ); ?> </div></td> </tr> </table> <!-- #hgroup-wrap -->Now have a logo in left, my site name in center and search and social links in right