feedgeorge
Forum Replies Created
-
Forum: Plugins
In reply to: [Feedgeorge Augmented Reality Plugin] What is that EXPORT POI Button?Hi,
We have updated the plugin with some fixes 3 days ago. Please download the latest version from the plugin directory and let us know if your problem is fixed.
Thank you.
Forum: Plugins
In reply to: [Feedgeorge Wordpress Plugin] How add image to marker on the mapHi
Sorry for delay.
You should use “get_the_post_thumbnail($post->ID, ‘thumbnail’)” instead of “the_post_thumbnail(‘thumbnail’)“
Please try again 🙂
Thank you for your support.
In custom page template, Please try the way as example below:-
<?php query_posts(array( ‘post_type’ => ‘post’ )); ?>
<?php show_fgeorge_map(180); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1><?php the_title(); ?></h1>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
<?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
<?php edit_post_link(‘Edit this entry’, ‘<p>’, ‘</p>’); ?>
</div><?php endwhile; endif; wp_reset_query(); ?>
Hi.
Sorry for delay.
Currently our plugin not support for custom post type yet. But will add it
in next version of plugin.Do you include the looping post code like index page in your custom page template?
Example:
<?php while ( have_posts() ) : the_post(); ?>
<h2><?php the_title() ?></h2>
…….
<?php endwhile; ?>Hi
Sorry for late reply. Thank you for our plugin.
For work at custom pages, you have to modify some coding in our plugin because of map show only at home or index page. Please try to following steps below:
– Go to the plugin directory ( wp-content/plugins/feedgeorge_wordpress_plugin)
– go to “includes” directory and look for the file called classes.php
– Edit the classes.php, search the function the_title() and the function load_script()
– Remove code is_home() (in line 148 )
– and remove code “if (is_home())” ( in line 433)
– copy the code <?php show_fgeorge_map([height]); ?> to custom page template.Please try.
Thanks for supporting the plugin. Please notice that Layar has revised its pricing in August 2012, check it out here.
Forum: Plugins
In reply to: FeedGeorge API not updatingI have checked already. The key actually had stored in database. There was bug in the option form template. Just made the key cannot display in option page.
The fixing will be in next version, but may take time.
If you’re developer, for quick fix, please go and edit the file as below
feedgeorge-wordpress-plugin/themes/config_form.phpPlease go to line 11 and line 24, and look for variable below:
$fgeo_options[‘Feedgeorge_key’]
then please change to
$fgeo_options[‘feedgeorge_key’]
Save the file. The key should display.Please try out. 🙂
Did you sign up and get api key at feedgeorge site?